/*#region General    */
:root {
    --mobileNavWidth: 70%;
}

@font-face {
    font-family: 'Pacifico';
    src: url('Pacifico-Regular.ttf') format('truetype')
}

@font-face {
    font-family: 'Varela Round';
    src: url('VarelaRound-Regular.ttf') format('truetype')
}

.why-choose-seerasap,
.about-seerasap,
.support-service,
.contact-us,
.privacy-policy-page,
.terms-of-service-page,
.project-proposal-page {
    background: #ECF5FF;
}

.mobile {
    display: block;
}

.desktop {
    display: none;
}

a {
    outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*#endregion */

/*#region Footer    */

.footer .footer-top {
    background-size: contain;
    padding: 45px 0px;
}

.footer .copyright {
    text-align: center;
    color: #fff;
    background-color: #DA2228;
    padding: 20px 0px;
    margin: auto;
    display: table;
    width: 100%;
}

.footer .copyright p {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    display: table-cell;
}

.footer li {
    color: #000000;
    line-height: 50px;
}

.footer li span,
.footer li a,
.footer li a:hover,
.footer li a:visited {
    color: #000000;
    text-decoration: none;
}

.footer .home-logo {
    flex-wrap: wrap;
    cursor: pointer;
}

.footer .home-logo-text {
    color: #000000;
}

.font-black {
    color: #000000;
}

.footer .home-logo {
    text-decoration: none !important;
}

.support-link {
    line-height: 50px;
}

.follow-us-links {
    margin: 40px 0px 14px 0px;
    display: block;
}

.social-links {
    width: 60px;
    display: inline-block;
}

.linkedin-img {
    width: 40px;
}

.youtube-link {
    margin-left: 30px;
}

.header-link {
    font-size: 26px;
    font-weight: 700;
}

.footer a {
    outline: none !important;
    color: inherit;
    text-decoration: none;
}

.footer img.tti-logo {
    width: 80px;
}

.footer img.seertax-logo {
    width: 120px;
}

.footer .tti-seertax-logo-link .inner-logo-link a:last-child {
    margin-left: 40px;
}

.footer .tti-seertax-logo-link {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.footer .inner-logo-link {
    display: inline-block;
}

/*#endregion */

/*#region Header    */

.nav-link {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    background: #FFFFFF;
    margin-bottom: 21px;
    padding: 16.5px 19.5px 16.5px 19.5px !important;
    width: fit-content;
    box-sizing: border-box;
    font-weight: 600;
    color: #000000
}

.nav-link:hover {
    background: var(--primary-green, #CBDC4F);
    color: #000000
}

.nav-item.active .nav-link {
    background: var(--primary-green, #CBDC4F);
}

.nav-item {
    margin-right: 15px;
}

.nav-item:last-child {
    margin-right: 0px;
}

.navbar-light .navbar-toggler {
    border-color: transparent;
    outline: none;
}

.navbar-collapse.collapse.show {
    background-color: #FFFFFF;
}

.navbar {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: #FFFFFF;
}

.mobile-nav-overlay {
    width: 100%;
    height: 100%;
    z-index: 10000;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(19, 39, 57, 0.8);
    overflow: hidden;
    display: none;
}

.top-space {
    padding-top: 50px;
    padding-bottom: 50px;
}

.mobile-nav {
    z-index: 10010;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    transition: 0.4s;
}

.mobile-nav ul {
    z-index: 100000;
    list-style: none;
}

.mobile-nav-container {
    background-color: white;
    z-index: 10001;
    width: var(--mobileNavWidth);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    animation: openMenu 2.5s;
}

@keyframes openMenu {
    from {
        left: -470px;
    }

    to {
        left: 0px;
    }
}

@keyframes closeMenu {
    from {
        left: 0px;
    }

    to {
        left: -470px;
    }
}

.navbar-mobile-toggler,
.navbar-mobile-toggler:focus {
    outline: none;
    margin: 25px 0px 30px 13px;
}

@keyframes MobileNav {
    0% {
        left: 0px;
        top: 0px;
    }

    25% {
        background-color: yellow;
        left: 200px;
        top: 0px;
    }

    50% {
        background-color: blue;
        left: 200px;
        top: 200px;
    }

    75% {
        background-color: green;
        left: 0px;
        top: 200px;
    }

    100% {
        background-color: red;
        left: 0px;
        top: 0px;
    }
}

/*#endregion */

/*#region Home Banner   */

.home-banner {
    background-image: url(/assets/images/home-banner-mobile.png);
    color: #FFFFFF;
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: 100% 100%;
}

.home-banner .banner-container .row {
    display: table;
    min-height: 600px;
    width: 100%;
    margin: auto;
}

.home-banner-img-section {
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-banner-img-section img {
    width: 110px;
    vertical-align: bottom;
    display: block;
    margin: 30px auto;
}

.home-banner-text-section {
    display: table-row;
    vertical-align: middle;
}

.home-banner-text-section h1 {
    font-size: 17px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.home-banner-text-section p {
    font-size: 10px;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 100;
}

/*#endregion */

/*#region Why Choose SeerASAP? */

.why-choose-seerasap .custom-container div {
    padding: 2rem 6px 1rem 6px;
}

.why-choose-us-img {
    width: 90px;
    margin-bottom: 2px;
}

.why-choose-seerasap h1 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.why-choose-seerasap h3 {
    font-size: 15px;
    font-weight: 500;
}

.why-choose-seerasap .description-section ul li span {
    font-size: 15px;
    font-weight: 500;
}

.why-choose-seerasap .description-section ul li {
    font-size: 12px;
    font-weight: 400;
    list-style: none;
    margin-bottom: 50px;
}

.why-choose-seerasap .description-section ul li div {
    display: inline-block;
    width: 22px;
    height: 22px;
    padding: 4px;
    background-color: white;
    border-radius: 20px;
    margin-right: 7px;
    margin-left: -30px;
}

.why-choose-seerasap .description-section ul li div:hover {
    background-color: red;
    transition: all ease 0.3s;

}

.why-choose-seerasap .description-section ul li div svg {
    vertical-align: top;
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 90px;
}

.why-choose-seerasap .description-section ul li div:hover svg {
    background-color: red;
}

.why-choose-seerasap .description-section ul li div svg path {
    fill: black;
    stroke: white;
}

.why-choose-seerasap .description-section ul li div:hover svg path {
    fill: #FFFFFF;
    stroke: red;
}

.why-choose-seerasap .description-section ul li p,
.why-choose-seerasap p {
    font-size: 12px;
}

.why-choose-seerasap .seerasap {
    vertical-align: baseline;
    width: 100px;
}

.why-choose-seerasap .img-section {
    text-align: center;
}

.why-choose-seerasap .img-section img {
    width: 180px;
    padding: 1rem 0rem;
}

.why-choose-seerasap .upload-span {
    font-weight: 700;
    font-size: 15px;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.why-choose-seerasap a {
    display: block;
    text-align: center;
}

.why-choose-seerasap .project-proposal-link a {
    display: inline;
}

.why-choose-seerasap .upload-btn {
    width: 100px;
}

/*#endregion */

/*#region How does it Work? */

.how-does-it-work {
    padding: 30px 0px;
}

.how-does-it-work .banner {
    background-image: url(/assets/images/how-does-it-work-mobile.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 31%;
}

.how-does-it-work .step-1,
.how-does-it-work .step-2,
.how-does-it-work .step-3 {
    position: relative;
    width: fit-content;
}

.how-does-it-work .mobile .step-1 {
    top: 50px;
    left: 18%;
    text-align: right;
}

.how-does-it-work .mobile .step-2 {
    top: 172px;
    left: 57%;
}

.how-does-it-work .mobile .step-3 {
    top: 303px;
    left: 18%;
    text-align: right;
}

.how-does-it-work h1 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.how-does-it-work .step-1 p,
.how-does-it-work .step-2 p,
.how-does-it-work .step-3 p {
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 0px;
    font-weight: 500;
}

/*#endregion */

/*#region About SeerASAP */

.about-seerasap {
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-seerasap .seerasap {
    vertical-align: baseline;
    width: 100px;
}

.about-seerasap h1 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2px;
}

.about-seerasap h3 {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.about-seerasap p {
    font-size: 10px;
    text-align: center;
}

.about-seerasap .about-us-img {
    text-align: center;
}

.about-seerasap .about-us-img img {
    max-width: 200px;
}

/*#endregion */

/*#region Features */

.seerasap-features {
    padding: 50px 10px;
}

.why-choose-us-img {
    width: 90px;
    margin-bottom: 2px;
}

.seerasap-features h1 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2px;
}

.seerasap-features h3 {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.seerasap-features .description-section ul {
    margin-top: 30px;
}

.seerasap-features .description-section ul li span {
    font-size: 15px;
    font-weight: 500;
}

.seerasap-features .description-section ul li {
    font-size: 12px;
    font-weight: 400;
    list-style: none;
    margin-bottom: 0px;
}

.seerasap-features .description-section ul li div {
    display: inline-block;
    margin-right: 7px;
    margin-left: -30px;
}

.seerasap-features .description-section ul li div svg {
    width: 26px;
    height: 26px;
}

.seerasap-features .description-section ul li p {
    font-size: 12px;
    margin-left: 8px;
}

.seerasap-features .seerasap {
    vertical-align: baseline;
    width: 100px;
}

.seerasap-features .img-section {
    text-align: center;
}

.seerasap-features .img-section img {
    width: 180px;
    padding: 1rem 0rem;
}

/*#endregion */

/*#region Support & Services   */

.support-service {
    padding: 50px 10px 30px;
}

.support-service h1 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2px;
}

.support-service h3 {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.support-service .img-section {
    text-align: center;
}

.support-service .description-section ul {
    margin-top: 30px;
}

.support-service .description-section ul li span {
    font-size: 15px;
    font-weight: 500;
}

.support-service .description-section ul li {
    font-size: 12px;
    font-weight: 400;
    list-style: none;
    margin-bottom: 0px;
}

.support-service .description-section ul li div {
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 0px;
    background-color: white;
    border-radius: 60px;
    margin-right: 7px;
    margin-left: -30px;
}

.support-service .description-section ul li div:hover {
    background-color: red;
    transition: all ease 0.3s;
}

.support-service .description-section ul li div svg {
    vertical-align: top;
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 90px;
}

.support-service .description-section ul li div:hover svg {
    background-color: red;
}

.support-service .description-section ul li div svg path {
    fill: black;
    stroke: white;
}

.support-service .description-section ul li div:hover svg path {
    fill: #FFFFFF;
    stroke: red;
}

.support-service .description-section ul li p {
    font-size: 12px;
    margin-left: 8px;
}

.support-service .seerasap {
    vertical-align: baseline;
    width: 100px;
}

.support-service .img-section {
    text-align: center;
}

.support-service .img-section img {
    width: 180px;
    padding: 1rem 0rem;
}

/*#endregion */

/*#region Get Started*/

.get-started {
    padding: 50px 0px;
}

.get-started .upload-btn {
    width: 100px;
}

.get-started h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.get-started h3 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.get-started .seerasap {
    vertical-align: baseline;
    width: 100px;
}

.get-started p {
    font-size: 12px;
}

.get-started a {
    display: block;
    text-align: center;
}

.get-started .project-proposal-link a {
    display: inline;
}

.get-started .upload-span {
    font-weight: 700;
    font-size: 15px;
    display: block;
    text-align: center;
    margin-top: 10px;
}

/*#endregion */

/*#region Contact Us*/

.contact-us {
    padding: 50px 0px;
}

.contact-us h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.contact-us .contact-us-form .submit-btn {
    font-size: 26px;
    background-color: #DA2228;
    color: #FFFFFF;
    font-weight: 600;
    height: 50px;
    outline: none !important;
    border: none;
    border-radius: 50px;
    width: 170px;
}

.contact-us .contact-us-form .submit-btn:hover:disabled,
.contact-us .contact-us-form .submit-btn:disabled {
    background-color: #737474;
    color: #FFFFFF;
}

.contact-us .contact-us-form .div-loader {
    display: inline-block;
    vertical-align: bottom;
    margin-left: 20px;
}

.contact-us .contact-us-form .div-loader img {
    width: 60px;
}

.contact-us .contact-us-thank-you {
    color: #000000;
    font-weight: 700;
    font-size: 20px;
}

.contact-us .contact-us-error {
    color: #DA2228;
    font-weight: 700;
    font-size: 20px;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #CBDC4F;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(203, 220, 79, 0.25);
}

.form-check-input:checked {
    background-color: #CBDC4F;
    border-color: #CBDC4F;
}

.form-check-input:focus {
    border-color: #CBDC4F;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(203, 220, 79, .25);
}

/*#endregion*/

/*#region Project Proposal*/

.project-proposal .project-proposal-form .submit-btn {
    font-size: 26px;
    background-color: #DA2228;
    color: #FFFFFF;
    font-weight: 600;
    height: 50px;
    outline: none !important;
    border: none;
    border-radius: 50px;
    width: 170px;
}

.project-proposal .project-proposal-form .submit-btn:hover:disabled,
.project-proposal .project-proposal-form .submit-btn:disabled {
    background-color: #737474;
    color: #FFFFFF;
}

.project-proposal .project-proposal-form .div-loader {
    display: inline-block;
    vertical-align: bottom;
    margin-left: 20px;
}

.project-proposal .project-proposal-form .div-loader img {
    width: 60px;
}

/*#endregion*/

/*#region Project Proposal Page*/

.project-proposal-page h1 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.project-proposal-page .project-proposal .project-proposal-form {
    padding-bottom: 30px;
}

.project-proposal-body embed,
.project-proposal-body embed * {
    width: 100%;
    min-height: 800px;
    overflow: hidden !important;
}

/*#endregion*/

/*#region CSS Media Queries */

@media only screen and (min-width: 200px) {
    .footer .copyright p {
        font-size: 10px;
    }

    .footer .home-logo {
        justify-content: center;
        text-align: center;
    }

    .footer .home-logo img {
        width: 220px;
    }

    .footer .home-logo-text {
        font-size: 0.8em;
        margin-top: 7px;
    }

    .footer-links {
        margin-top: 10px;
        margin-left: 15px;
    }

    .footer-contact-us {
        margin-top: 30px;
    }

    .footer .footer-top {
        padding: 25px 0px 50px 0px;
    }

    .footer-link {
        font-weight: 500;
    }

    .navbar,
    .fixed-header-container {
        height: 80px;
    }

    .website-logo {
        width: 130px;
    }

    .why-choose-seerasap h1 {
        font-size: 20px;
    }

    .why-choose-seerasap h3 {
        font-size: 15px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li span {
        font-size: 15px;
        font-weight: 500;
    }

    .why-choose-seerasap .img-section img {
        width: 180px;
    }

    .how-does-it-work h1 {
        font-size: 20px;
    }

    .how-does-it-work .banner {
        min-height: 385px;
    }

    .how-does-it-work .mobile .step-1 {
        top: 51px;
        right: 3%;
        left: auto;
    }

    .how-does-it-work .mobile .step-2 {
        top: 137px;
        left: 70%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 225px;
        left: 6%;
    }

    .about-seerasap h1 {
        font-size: 20px;
    }

    .seerasap-features h1 {
        font-size: 20px;
    }

    .seerasap-features .description-section ul li span {
        font-size: 15px;
        font-weight: 500;
    }

    .support-service h1 {
        font-size: 20px;
    }

    .support-service .description-section ul li span {
        font-size: 15px;
        font-weight: 500;
    }

    .get-started h1 {
        font-size: 20px;
    }

    .contact-us h1 {
        font-size: 20px;
    }
}

@media only screen and (min-width: 300px) {
    .website-logo {
        width: 220px;
    }

    .home-banner .banner-container .row {
        min-height: 640px;
    }

    .home-banner-img-section img {
        margin: 40px auto;
    }

    .home-banner-text-section h1 {
        font-size: 20px;
    }

    .home-banner-text-section p {
        font-size: 11px;
    }

    .why-choose-seerasap .seerasap {
        width: 100px;
        margin-right: 5px;
    }

    .why-choose-seerasap h1 {
        font-size: 22px;
    }

    .why-choose-seerasap h3 {
        font-size: 18px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li span {
        font-size: 16px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li p,
    .why-choose-seerasap p {
        font-size: 11px;
    }

    .why-choose-seerasap .img-section img {
        width: 220px;
    }

    .how-does-it-work h1 {
        font-size: 22px;
    }

    .how-does-it-work .banner {
        min-height: 385px;
    }

    .how-does-it-work .mobile .step-1 {
        top: 51px;
        right: 4%;
        left: auto;
    }

    .how-does-it-work .mobile .step-2 {
        top: 137px;
        left: 70%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 225px;
        left: 6%;
    }

    .about-seerasap .seerasap {
        width: 100px;
        margin-right: 5px;
    }

    .about-seerasap h1 {
        font-size: 22px;
    }

    .about-seerasap p {
        font-size: 11px;
    }

    .seerasap-features h1 {
        font-size: 22px;
    }

    .seerasap-features .seerasap {
        width: 100px;
        margin-right: 5px;
    }

    .seerasap-features .description-section ul li div svg {
        width: 30px;
        height: 30px;
    }

    .seerasap-features .description-section ul li span {
        font-size: 16px;
        font-weight: 500;
    }

    .seerasap-features .description-section ul li p {
        font-size: 11px;
    }

    .support-service h1 {
        font-size: 22px;
    }

    .support-service .seerasap {
        width: 72px;
        margin-right: 5px;
    }

    .support-service .description-section ul li div svg {
        width: 30px;
        height: 30px;
    }

    .support-service .description-section ul li span {
        font-size: 16px;
        font-weight: 500;
    }

    .support-service .description-section ul li p {
        font-size: 11px;
        margin-top: -10px;
    }

    .get-started h1 {
        font-size: 22px;
    }

    .get-started .seerasap {
        width: 72px;
        margin-right: 5px;
    }

    .get-started p {
        font-size: 11px;
    }

    .contact-us h1 {
        font-size: 22px;
    }
}

@media only screen and (min-width: 360px) {
    .how-does-it-work .banner {
        min-height: 400px;
        background-size: contain;
    }

    .how-does-it-work .mobile .step-1 {
        top: 41px;
        right: auto;
        left: 1%;
    }

    .how-does-it-work .mobile .step-2 {
        top: 144px;
        left: 70%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 250px;
        left: 10%;
    }

    .footer img.tti-logo {
        width: 100px;
    }

    .footer img.seertax-logo {
        width: 150px;
    }

    .footer .tti-seertax-logo-link .inner-logo-link a:last-child {
        margin-left: 50px;
    }
}

@media only screen and (min-width: 400px) {
    .footer .home-logo-text {
        font-size: 0.9em;
        margin-top: 7px;
    }

    .home-banner .banner-container .row {
        min-height: 540px;
    }

    .home-banner-img-section img {
        width: 100px;
        margin: 20px auto;
    }

    .home-banner-text-section h1 {
        font-size: 20px;
        margin-top: 12px;
    }

    .home-banner-text-section p {
        font-size: 12px;
    }

    .why-choose-seerasap h1 {
        font-size: 26px;
    }

    .why-choose-seerasap h3 {
        font-size: 18px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li span {
        font-size: 17px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li p,
    .why-choose-seerasap p {
        font-size: 12px;
    }

    .why-choose-seerasap .img-section img {
        width: 250px;
    }

    .why-choose-seerasap .upload-span {
        font-weight: 700;
        font-size: 18px;
    }

    .why-choose-seerasap .seerasap {
        width: 120px;
    }

    .how-does-it-work h1 {
        font-size: 26px;
    }

    .how-does-it-work .banner {
        min-height: 400px;
        background-size: contain;
    }

    .how-does-it-work .mobile .step-1 {
        top: 41px;
        right: auto;
        left: 7%;
    }

    .how-does-it-work .mobile .step-2 {
        top: 144px;
        left: 69%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 254px;
        left: 14%;
    }

    .about-seerasap .seerasap {
        width: 120px;
    }

    .about-seerasap h1 {
        font-size: 26px;
    }

    .about-seerasap p {
        font-size: 12px;
    }

    .seerasap-features {
        padding: 50px 20px;
    }

    .seerasap-features h1 {
        font-size: 26px;
    }

    .seerasap-features .seerasap {
        width: 120px;
    }

    .seerasap-features .description-section ul li div svg {
        width: 32px;
        height: 32px;
    }

    .seerasap-features .description-section ul li span {
        font-size: 17px;
        font-weight: 500;
    }

    .seerasap-features .description-section ul li p {
        font-size: 12px;
        margin-left: 10px;
    }

    .support-service {
        padding: 50px 20px;
    }

    .support-service h1 {
        font-size: 26px;
    }

    .support-service h3 {
        font-size: 14px;
    }

    .support-service .seerasap {
        width: 84px;
    }

    .support-service .description-section ul li div svg {
        width: 32px;
        height: 32px;
    }

    .support-service .description-section ul li span {
        font-size: 17px;
        font-weight: 500;
    }

    .support-service .description-section ul li p {
        font-size: 12px;
        margin-left: 10px;
    }

    .get-started h1 {
        font-size: 26px;
    }

    .get-started h3 {
        font-size: 14px;
    }

    .get-started .seerasap {
        width: 84px;
    }

    .get-started p {
        font-size: 12px;
    }

    .get-started .upload-span {
        font-weight: 700;
        font-size: 18px;
    }

    .contact-us h1 {
        font-size: 26px;
    }
}

@media only screen and (min-width: 450px) {
    .how-does-it-work .mobile .step-1 {
        top: 41px;
        left: 12%;
    }

    .how-does-it-work .mobile .step-2 {
        top: 144px;
        left: 66%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 254px;
        left: 19%;
    }
}

@media only screen and (min-width: 500px) {
    .how-does-it-work .mobile .step-1 {
        top: 41px;
        left: 19%;
    }

    .how-does-it-work .mobile .step-2 {
        top: 144px;
        left: 63%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 254px;
        left: 24%;
    }
}

@media only screen and (min-width: 576px) {
    .footer .home-logo img {
        width: 280px;
    }

    .footer .home-logo-text {
        font-size: 1em;
        margin-top: 5px;
    }

    .website-logo {
        width: 220px;
    }

    .home-banner .banner-container .row {
        min-height: 720px;
    }

    .home-banner-img-section img {
        width: 130px;
        margin: 20px auto 0px;
    }

    .home-banner-text-section h1 {
        font-size: 30px;
        margin-top: 60px;
    }

    .home-banner-text-section p {
        font-size: 15px;
    }

    .why-choose-seerasap h1 {
        font-size: 28px;
    }

    .why-choose-seerasap h3 {
        font-size: 22px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li span {
        font-size: 20px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li p,
    .why-choose-seerasap p {
        font-size: 15px;
    }

    .why-choose-seerasap .img-section img {
        width: 320px;
    }

    .why-choose-seerasap .seerasap {
        width: 134px;
    }

    .how-does-it-work h1 {
        font-size: 28px;
    }

    .how-does-it-work .step-1 p,
    .how-does-it-work .step-2 p,
    .how-does-it-work .step-3 p {
        font-size: 12px;
        line-height: 14px;
    }

    .how-does-it-work .mobile .step-1 {
        top: 39px;
        left: 17%;
    }

    .how-does-it-work .mobile .step-2 {
        top: 134px;
        left: 63%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 237px;
        left: 23%;
    }

    .about-seerasap .seerasap {
        width: 134px;
    }

    .about-seerasap h1 {
        font-size: 28px;
    }

    .about-seerasap h3 {
        font-size: 14px;
    }

    .about-seerasap p {
        font-size: 15px;
    }

    .about-seerasap .about-us-img img {
        max-width: 300px;
    }

    .seerasap-features .seerasap {
        width: 134px;
    }

    .seerasap-features h1 {
        font-size: 28px;
    }

    .seerasap-features h3 {
        font-size: 14px;
    }

    .seerasap-features .description-section ul li div svg {
        width: 36px;
        height: 36px;
    }

    .seerasap-features .description-section ul li span {
        font-size: 20px;
        font-weight: 500;
    }

    .seerasap-features .description-section ul li p {
        font-size: 15px;
        margin-left: 14px;
    }

    .support-service .seerasap {
        width: 90px;
    }

    .support-service h1 {
        font-size: 28px;
    }

    .support-service h3 {
        font-size: 16px;
    }

    .support-service .description-section ul li div svg {
        width: 36px;
        height: 36px;
    }

    .support-service .description-section ul li span {
        font-size: 20px;
        font-weight: 500;
    }

    .support-service .description-section ul li p {
        font-size: 15px;
        margin-left: 14px;
    }

    .support-service .description-section ul li div {
        margin-right: 14px;
    }

    .get-started h1 {
        font-size: 28px;
    }

    .get-started h3 {
        font-size: 16px;
    }

    .get-started .seerasap {
        width: 90px;
    }

    .get-started p {
        font-size: 15px;
    }

    .contact-us h1 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 620px) {
    .why-choose-seerasap .img-section img {
        width: 400px;
    }

    .why-choose-seerasap .upload-btn {
        width: 120px;
    }

    .how-does-it-work .mobile .step-1 {
        top: 39px;
        left: 19.5%;
    }

    .how-does-it-work .mobile .step-2 {
        top: 134px;
        left: 61%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 237px;
        left: 25.5%;
    }

    .get-started .upload-btn {
        width: 120px;
    }
}

@media only screen and (min-width: 700px) {
    .how-does-it-work .mobile .step-1 {
        top: 39px;
        left: 23%;
    }

    .how-does-it-work .mobile .step-2 {
        top: 134px;
        left: 60%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 237px;
        left: 28%;
    }
}

@media only screen and (min-width: 768px) {
    .home-banner .banner-container .row {
        min-height: 1050px;
    }

    .home-banner-img-section img {
        width: 180px;
        margin: 30px auto 0px;
    }

    .home-banner-text-section h1 {
        font-size: 44px;
        margin-top: 110px;
    }

    .home-banner-text-section p {
        font-size: 22px;
    }

    .why-choose-seerasap .description-section ul li div {
        width: 26px;
        height: 26px;
        padding: 4px;
        border-radius: 20px;
    }

    .why-choose-seerasap .description-section ul li div svg {
        width: 19px;
        height: 19px;
    }

    .why-choose-seerasap h1 {
        font-size: 36px;
    }

    .why-choose-seerasap h3 {
        font-size: 26px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li span {
        font-size: 24px;
        font-weight: 500;
        vertical-align: sub;
    }

    .why-choose-seerasap .description-section ul li p,
    .why-choose-seerasap p {
        font-size: 18px;
    }

    .why-choose-seerasap .img-section img {
        width: 440px;
    }

    .why-choose-seerasap .upload-span {
        font-weight: 700;
        font-size: 22px;
    }

    .why-choose-seerasap .seerasap {
        width: 166px;
    }

    .how-does-it-work .banner {
        min-height: 450px;
        margin-top: 50px;
    }

    .how-does-it-work h1 {
        font-size: 36px;
    }

    .how-does-it-work .step-1 p,
    .how-does-it-work .step-2 p,
    .how-does-it-work .step-3 p {
        font-size: 16px;
        line-height: 18px;
    }

    .how-does-it-work .mobile .step-1 {
        top: 39px;
        left: 19%;
    }

    .how-does-it-work .mobile .step-2 {
        top: 139px;
        left: 60%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 251px;
        left: 25.5%;
    }

    .about-seerasap .seerasap {
        width: 166px;
    }

    .about-seerasap h1 {
        font-size: 36px;
    }

    .about-seerasap h3 {
        font-size: 18px;
    }

    .about-seerasap p {
        font-size: 22px;
    }

    .about-seerasap .about-us-img img {
        max-width: 380px;
    }

    .seerasap-features h1 {
        font-size: 36px;
    }

    .seerasap-features .seerasap {
        width: 166px;
    }

    .seerasap-features h3 {
        font-size: 18px;
    }

    .seerasap-features .description-section ul {
        margin-top: 60px;
    }

    .seerasap-features .description-section ul li div svg {
        width: 40px;
        height: 40px;
    }

    .seerasap-features .description-section ul li span {
        font-size: 24px;
        font-weight: 500;
        vertical-align: sub;
        margin-left: 10px;
    }

    .seerasap-features .description-section ul li p {
        font-size: 18px;
        margin-left: 28px;
    }

    .support-service h1 {
        font-size: 36px;
    }

    .support-service .seerasap {
        width: 100px;
    }

    .support-service h3 {
        font-size: 18px;
    }

    .support-service .description-section ul {
        margin-top: 40px;
    }

    .support-service .description-section ul li div {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }

    .support-service .description-section ul li div svg {
        width: 40px;
        height: 40px;
    }

    .support-service .description-section ul li span {
        font-size: 24px;
        font-weight: 500;
        vertical-align: sub;
        margin-left: 10px;
    }

    .support-service .description-section ul li p {
        font-size: 18px;
        margin-left: 28px;
    }

    .support-service .img-section img {
        width: 240px;
        padding: 1rem 0rem;
    }

    .get-started h1 {
        font-size: 36px;
    }

    .get-started h3 {
        font-size: 18px;
    }

    .get-started .seerasap {
        width: 100px;
    }

    .get-started p {
        font-size: 18px;
    }

    .get-started .upload-span {
        font-weight: 700;
        font-size: 22px;
    }

    .contact-us h1 {
        font-size: 36px;
    }

    .contact-us .contact-us-form .submit-btn {
        font-size: 28px;
        height: 50px;
        width: 200px;
    }

    .project-proposal .project-proposal-form .submit-btn {
        font-size: 28px;
        height: 50px;
        width: 200px;
    }
}

@media only screen and (min-width: 810px) {
    .how-does-it-work .mobile .step-1 {
        top: 39px;
        left: 21%;
    }

    .how-does-it-work .mobile .step-2 {
        top: 141px;
        left: 60%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 251px;
        left: 27%;
    }
}

@media only screen and (min-width: 900px) {
    .how-does-it-work .mobile .step-1 {
        top: 39px;
        left: 24%;
    }

    .how-does-it-work .mobile .step-2 {
        top: 141px;
        left: 59%;
    }

    .how-does-it-work .mobile .step-3 {
        top: 251px;
        left: 29%;
    }
}

@media only screen and (min-width: 991px) {
    .mobile {
        display: none;
    }

    .desktop {
        display: block;
    }

    .footer .copyright {
        padding: 52px 0px;
    }

    .footer .copyright p {
        font-size: 20px;
    }

    .footer-contact-us,
    .footer-links {
        margin-top: 30px;
        margin-left: 0;
    }

    .footer .footer-top {
        padding: 35px 0px 35px 0px;
    }

    .footer .home-logo {
        justify-content: left;
    }

    .footer .home-logo {
        justify-content: left;
        text-align: left;
        margin-top: 30px;
    }

    .footer .home-logo-text {
        font-size: 18px;
        margin-left: 5px;
    }

    .footer-link {
        font-weight: 500;
    }

    .website-logo {
        width: 100px;
    }

    .footer .home-logo img {
        width: 340px;
    }

    .navbar,
    .fixed-header-container {
        height: 160px;
    }

    .nav-link {
        margin-bottom: 0px;
        padding: 10px 7px !important;
        font-size: 14px;
    }

    div#navbarCollapse {
        justify-content: end;
    }

    .home-banner {
        background-image: url('/assets/images/home-banner-desktop.png');
    }

    .home-banner .banner-container .row {
        display: flex;
        min-height: auto;
        width: auto;
        margin: auto;
    }

    .home-banner-img-section {
        vertical-align: unset;
        display: block;
        justify-content: unset;
        align-items: unset;
        text-align: center;
    }

    .home-banner-img-section img {
        width: 170px;
        vertical-align: initial;
        display: initial;
        margin-top: 32%;
        margin-left: 73%;
    }

    .home-banner-text-section {
        display: block;
        vertical-align: initial;
        padding-left: 0;
    }

    .home-banner-text-section h1 {
        font-size: 32px;
        margin-top: 50px;
        text-align: left;
    }

    .home-banner-text-section p {
        font-size: 18px;
        text-align: left;
        margin-bottom: 22px;
    }

    .home-banner-text-section p:last-child {
        margin-bottom: 50px;
    }

    .why-choose-seerasap {
        padding: 60px 0px;
    }

    .why-choose-seerasap h1 {
        font-size: 40px;
        text-align: start;
        margin-bottom: 30px;
    }

    .why-choose-seerasap h3 {
        font-size: 28px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li span {
        font-size: 26px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li:last-child {
        margin-bottom: 100px;
    }

    .why-choose-seerasap .img-section img {
        width: 480px;
        padding: 0;
    }

    .why-choose-seerasap .custom-container div {
        padding: 0;
    }

    .why-choose-seerasap .description-section ul li p,
    .why-choose-seerasap p {
        font-size: 20px;
    }

    .why-choose-seerasap .description-section {
        margin-bottom: 80px;
    }

    .why-choose-seerasap .seerasap {
        width: 180px;
    }

    .why-choose-seerasap .description-section {
        margin-bottom: 36px;
    }

    .why-choose-seerasap .custom-container div {
        padding: 0px 6px;
    }

    .why-choose-seerasap .upload-span,
    .why-choose-seerasap a {
        display: inline;
        text-align: left;
    }

    .why-choose-seerasap .upload-span {
        margin-left: 12px;
    }

    .how-does-it-work {
        padding: 60px 0px;
    }

    .how-does-it-work h1 {
        font-size: 40px;
        text-align: start;
    }

    .how-does-it-work .banner {
        background-image: url(/assets/images/how-does-it-work-desktop.svg);
        min-height: 475px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        max-width: 900px;
    }

    .how-does-it-work .step-1,
    .how-does-it-work .step-2,
    .how-does-it-work .step-3 {
        position: static;
        width: 33%;
        display: inline-block;
    }

    .how-does-it-work .step-1 .upper,
    .how-does-it-work .step-1 .lower,
    .how-does-it-work .step-2 .upper,
    .how-does-it-work .step-2 .lower,
    .how-does-it-work .step-3 .upper,
    .how-does-it-work .step-3 .lower {
        position: relative;
    }

    .how-does-it-work .step-1 .upper,
    .how-does-it-work .step-1 .lower {
        text-align: center;
    }

    .how-does-it-work .step-1 .upper {
        right: 14px;
        top: 46px;
    }

    .how-does-it-work .step-1 .lower {
        top: 376px;
        right: 14px;
    }

    .how-does-it-work .step-2 .upper,
    .how-does-it-work .step-2 .lower {
        text-align: center;
    }

    .how-does-it-work .step-2 .upper {
        left: 12px;
        top: 46px;
    }

    .how-does-it-work .step-2 .lower {
        top: 376px;
        left: 12px;
    }

    .how-does-it-work .step-3 .upper,
    .how-does-it-work .step-3 .lower {
        text-align: center;
    }

    .how-does-it-work .step-3 .upper {
        left: 20px;
        top: 46px;
    }

    .how-does-it-work .step-3 .lower {
        top: 376px;
        left: 20px;
    }

    .how-does-it-work .step-1 p,
    .how-does-it-work .step-2 p,
    .how-does-it-work .step-3 p {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 0px;
        font-weight: 500;
        text-align: center;
    }

    .about-seerasap .seerasap {
        width: 180px;
    }

    .about-seerasap h1 {
        font-size: 40px;
        text-align: start;
        margin: 120px 0px 0px;
    }

    .about-seerasap h3 {
        font-size: 20px;
        text-align: start;
    }

    .about-seerasap p {
        font-size: 18px;
        text-align: left;
        margin-bottom: 22px;
        padding-left: 0px;
        padding-right: 15px;
    }

    .about-seerasap .about-us-description {
        padding: 0px 15px;
    }

    .seerasap-features {
        padding: 60px 0px;
    }

    .seerasap-features h1 {
        font-size: 40px;
        text-align: start;
        margin: 0px;
    }

    .seerasap-features .seerasap {
        width: 180px;
    }

    .seerasap-features h3 {
        font-size: 20px;
        text-align: start;
    }

    .seerasap-features .description-section ul li div svg {
        width: 44px;
        height: 44px;
    }

    .seerasap-features .description-section ul li span {
        font-size: 26px;
        font-weight: 500;
    }

    .seerasap-features .description-section ul li p {
        font-size: 20px;
        margin-left: 32px;
    }

    .support-service {
        padding: 60px 0px 20px 0px;
    }

    .support-service h1 {
        font-size: 40px;
        text-align: start;
    }

    .support-service .seerasap {
        width: 180px;
    }

    .support-service h3 {
        font-size: 20px;
        text-align: start;
    }

    .support-service .description-section ul li div svg {
        width: 44px;
        height: 44px;
    }

    .support-service .description-section ul li span {
        font-size: 28px;
        font-weight: 600;
    }

    .support-service .description-section ul li p {
        font-size: 18px;
        margin-left: 28px;
        margin-top: -18px;
    }

    .support-service .img-section img {
        width: 100%;
        padding: 4rem 0rem;
    }

    .get-started {
        padding: 60px 0px;
    }

    .get-started h1 {
        font-size: 40px;
        text-align: start;
    }

    .get-started h3 {
        font-size: 20px;
        text-align: start;
        text-align: start;
        margin-top: 30px;
        margin-left: 1px;
    }

    .get-started .seerasap {
        width: 180px;
    }

    .get-started p {
        font-size: 18px;
        margin-bottom: 34px;
    }

    .get-started .upload-span,
    .get-started a {
        display: inline;
        text-align: left;
    }

    .get-started .upload-span {
        margin-left: 12px;
    }

    .contact-us {
        padding: 60px 0px;
    }

    .contact-us h1 {
        font-size: 40px;
        text-align: start;
        margin-bottom: 60px;
    }

    .contact-us .contact-us-form .submit-btn {
        font-size: 32px;
        height: 60px;
        width: 220px;
    }

    .project-proposal .project-proposal-form .submit-btn {
        font-size: 32px;
        height: 60px;
        width: 220px;
    }

    .footer .tti-seertax-logo-link {
        display: inline;
        margin: 0;
        text-align: left;
    }
}

@media only screen and (min-width: 1024px) {
    .custom-container {
        max-width: 1000px;
    }

    .home-banner-img-section img {
        width: 180px;
        margin-top: 37%;
        margin-left: 10%;
    }

    .home-banner-text-section h1 {
        font-size: 36px;
    }

    .home-banner-text-section p {
        font-size: 20px;
    }

    .why-choose-seerasap h1 {
        font-size: 42px;
    }

    .why-choose-seerasap h3 {
        font-size: 28px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li span {
        font-size: 26px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li p,
    .why-choose-seerasap p {
        font-size: 20px;
    }

    .why-choose-us-img {
        width: 85px;
    }

    .why-choose-seerasap .seerasap {
        width: 200px;
    }

    .how-does-it-work h1 {
        font-size: 42px;
    }

    .about-seerasap .seerasap {
        width: 200px;
    }

    .about-seerasap h1 {
        font-size: 42px;
    }

    .about-seerasap p {
        font-size: 20px;
    }

    .seerasap-features h1 {
        font-size: 42px;
    }

    .seerasap-features .seerasap {
        width: 200px;
    }

    .seerasap-features .description-section ul li span {
        font-size: 26px;
        font-weight: 500;
    }

    .support-service h1 {
        font-size: 42px;
    }

    .support-service h3 {
        font-size: 24px;
    }

    .support-service .seerasap {
        width: 150px;
    }

    .get-started h1 {
        font-size: 42px;
    }

    .get-started h3 {
        font-size: 24px;
    }

    .get-started .seerasap {
        width: 150px;
    }

    .contact-us h1 {
        font-size: 42px;
    }
}

@media only screen and (min-width: 1100px) {
    .home-banner-img-section img {
        width: 180px;
        margin-top: 33%;
        margin-left: 20%;
    }

    .how-does-it-work .step-1 .upper {
        right: 14px;
        top: 30px;
    }

    .how-does-it-work .step-1 .lower {
        top: 390px;
        right: 14px;
    }

    .how-does-it-work .step-2 .upper {
        left: 12px;
        top: 30px;
    }

    .how-does-it-work .step-2 .lower {
        top: 390px;
        left: 12px;
    }

    .how-does-it-work .step-3 .upper {
        left: 20px;
        top: 30px;
    }

    .how-does-it-work .step-3 .lower {
        top: 390px;
        left: 20px;
    }
}

@media only screen and (min-width: 1180px) {
    .home-banner-img-section img {
        width: 180px;
        margin-top: 35%;
        margin-left: 32%;
    }

    .how-does-it-work .step-1 .upper {
        right: 14px;
        top: 20px;
    }

    .how-does-it-work .step-1 .lower {
        top: 400px;
        right: 14px;
    }

    .how-does-it-work .step-2 .upper {
        left: 12px;
        top: 20px;
    }

    .how-does-it-work .step-2 .lower {
        top: 400px;
        left: 12px;
    }

    .how-does-it-work .step-3 .upper {
        left: 20px;
        top: 20px;
    }

    .how-does-it-work .step-3 .lower {
        top: 400px;
        left: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    .custom-container {
        max-width: 1100px;
    }

    .footer .home-logo-text {
        font-size: 20px;
        margin: 10px 0px 0px 0px;
    }

    .footer-link,
    .support-link {
        font-size: 20px;
    }

    .website-logo {
        width: 200px;
    }

    .nav-link {
        padding: 10px 8px !important;
        font-size: 14px;
    }

    .home-banner-img-section img {
        width: 200px;
        margin-top: 40%;
        margin-left: 19%;
    }

    .home-banner-text-section h1 {
        font-size: 48px;
        margin-top: 50px;
    }

    .home-banner-text-section p {
        font-size: 20px;
        font-weight: 400;
    }

    .why-choose-seerasap .description-section ul li div {
        width: 40px;
        height: 40px;
        padding: 8px;
        border-radius: 40px;
    }

    .why-choose-seerasap .description-section ul li div svg {
        width: 25px;
        height: 25px;
    }

    .why-choose-seerasap h1 {
        font-size: 54px;
    }

    .why-choose-seerasap h3 {
        font-size: 32px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li span {
        font-size: 28px;
        font-weight: 500;
        vertical-align: middle;
    }

    .why-choose-seerasap .description-section ul li p,
    .why-choose-seerasap p {
        margin-left: 18px;
        font-size: 22px;
    }

    .why-choose-seerasap .img-section img {
        width: 520px;
        position: relative;
        top: -100px;
    }

    .why-choose-seerasap .upload-btn {
        width: 200px;
    }

    .why-choose-seerasap .upload-span {
        font-weight: 700;
        font-size: 32px;
        vertical-align: sub;
    }

    .why-choose-seerasap .seerasap {
        width: 268px;
    }

    .how-does-it-work h1 {
        font-size: 54px;
    }

    .how-does-it-work .banner {
        min-height: 410px;
        max-width: 1000px;
    }

    .how-does-it-work .step-1 p,
    .how-does-it-work .step-2 p,
    .how-does-it-work .step-3 p {
        font-size: 28px;
        line-height: 32px;
        font-weight: 700;
    }

    .how-does-it-work .step-1 .upper {
        right: 14px;
        top: 10px;
    }

    .how-does-it-work .step-1 .lower {
        top: 400px;
        right: 14px;
    }

    .how-does-it-work .step-2 .upper {
        left: 12px;
        top: 10px;
    }

    .how-does-it-work .step-2 .lower {
        top: 400px;
        left: 12px;
    }

    .how-does-it-work .step-3 .upper {
        left: 36px;
        top: 10px;
    }

    .how-does-it-work .step-3 .lower {
        top: 400px;
        left: 36px;
    }

    .about-seerasap .seerasap {
        width: 268px;
    }

    .about-seerasap h1 {
        font-size: 54px;
        margin: 100px 0px 0px;
    }

    .about-seerasap p {
        font-size: 22px;
        font-weight: 400;
    }

    .seerasap-features h1 {
        font-size: 54px;
    }

    .seerasap-features .seerasap {
        width: 268px;
    }

    .seerasap-features .description-section ul li div svg {
        width: 48px;
        height: 48px;
    }

    .support-service .description-section ul li div {
        width: 48px;
        height: 48px;
    }

    .seerasap-features .description-section ul li span {
        font-size: 28px;
        font-weight: 500;
        vertical-align: middle;
    }

    .seerasap-features .description-section ul li p {
        font-size: 22px;
        margin-left: 36px;
    }

    .support-service h1 {
        font-size: 54px;
        margin: 100px 0px 0px;
    }

    .support-service h3 {
        font-size: 26px;
    }

    .support-service .seerasap {
        width: 180px;
    }

    .support-service .description-section ul li div svg {
        width: 48px;
        height: 48px;
    }

    .support-service .description-section ul li span {
        vertical-align: middle;
    }

    .support-service .description-section ul li p {
        font-size: 20px;
        margin-left: 36px;
    }

    .support-service .img-section img {
        padding: 6rem 0rem;
    }

    .get-started .upload-btn {
        width: 200px;
    }

    .get-started h1 {
        font-size: 54px;
        margin: 0px;
    }

    .get-started h3 {
        font-size: 26px;
    }

    .get-started .seerasap {
        width: 180px;
    }

    .get-started p {
        font-size: 22px;
    }

    .get-started .upload-span {
        font-weight: 700;
        font-size: 40px;
        vertical-align: sub;
    }

    .contact-us h1 {
        font-size: 54px
    }
}

@media only screen and (min-width: 1270px) {
    .why-choose-seerasap .img-section {
        margin-top: 100px;
    }

    .home-banner-img-section img {
        margin-top: 41%;
        margin-left: 30%;
    }

    .how-does-it-work .banner {
        min-height: 410px;
        margin: 40px auto;
    }

    .how-does-it-work .step-1 .upper {
        right: 14px;
        top: 0px;
    }

    .how-does-it-work .step-1 .lower {
        top: 340px;
        right: 14px;
    }

    .how-does-it-work .step-2 .upper {
        left: 12px;
        top: 0px;
    }

    .how-does-it-work .step-2 .lower {
        top: 340px;
        left: 12px;
    }

    .how-does-it-work .step-3 .upper {
        left: 36px;
        top: 0px;
    }

    .how-does-it-work .step-3 .lower {
        top: 340px;
        left: 36px;
    }

    .support-service {
        padding: 60px 0px;
    }

    .support-service h1 {
        font-size: 54px;
        margin: 40px 0px 0px;
    }
}

@media only screen and (min-width: 1300px) {
    .custom-container {
        max-width: 1180px;
    }

    .nav-link {
        font-size: 16px;
    }

    .home-banner-img-section img {
        margin-top: 53%;
        margin-left: 21%;
    }

    .home-banner-text-section h1 {
        font-size: 50px;
        margin-top: 70px;
    }

    .home-banner-text-section p {
        font-size: 22px;
        font-weight: 400;
    }

    .home-banner-text-section p:last-child {
        margin-bottom: 70px;
    }

    .why-choose-seerasap .description-section ul li p,
    .why-choose-seerasap p {
        font-size: 23px;
        font-weight: 400;
    }

    .how-does-it-work .step-1 .upper {
        right: 14px;
        top: 0px;
    }

    .how-does-it-work .step-1 .lower {
        top: 340px;
        right: 14px;
    }

    .how-does-it-work .step-2 .upper {
        left: 12px;
        top: 0px;
    }

    .how-does-it-work .step-2 .lower {
        top: 340px;
        left: 12px;
    }

    .how-does-it-work .step-3 .upper {
        left: 36px;
        top: 0px;
    }

    .how-does-it-work .step-3 .lower {
        top: 340px;
        left: 36px;
    }

    .about-seerasap p {
        font-size: 24px;
        font-weight: 400;
    }

    .seerasap-features .description-section ul li p {
        font-size: 23px;
    }

    .support-service .img-section img {
        padding: 4.5rem 0rem;
    }

    .support-service h3 {
        font-size: 28px;
    }

    .get-started h3 {
        font-size: 28px;
    }

    .get-started p {
        font-size: 23px;
    }
}

@media only screen and (min-width: 1400px) {
    .custom-container {
        max-width: 1200px;
    }

    .website-logo {
        width: 230px;
    }

    .nav-link {
        padding: 12px 10px !important;
    }

    .home-banner-img-section img {
        margin-top: 61%;
        margin-left: 30%;
    }

    .home-banner-text-section h1 {
        font-size: 52px;
        margin-top: 70px;
    }

    .home-banner-text-section p {
        font-size: 24px;
    }

    .why-choose-seerasap h1 {
        font-size: 70px;
    }

    .why-choose-seerasap h3 {
        font-size: 36px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li span {
        font-size: 32px;
        font-weight: 500;
    }

    .why-choose-seerasap .description-section ul li p,
    .why-choose-seerasap p {
        font-size: 24px;
    }

    .why-choose-seerasap .seerasap {
        width: 334px;
    }

    .how-does-it-work .banner {
        min-height: 380px;
        max-width: 940px;
        margin: 40px auto;
    }

    .how-does-it-work h1 {
        font-size: 70px;
        margin: 0px 0px 80px;
    }

    .how-does-it-work .step-1 .upper {
        right: 14px;
        top: 0px;
    }

    .how-does-it-work .step-1 .lower {
        top: 312px;
        right: 14px;
    }

    .how-does-it-work .step-2 .upper {
        left: 12px;
        top: 0px;
    }

    .how-does-it-work .step-2 .lower {
        top: 312px;
        left: 12px;
    }

    .how-does-it-work .step-3 .upper {
        left: 36px;
        top: 0px;
    }

    .how-does-it-work .step-3 .lower {
        top: 312px;
        left: 36px;
    }

    .about-seerasap .seerasap {
        width: 334px;
    }

    .about-seerasap h1 {
        font-size: 70px;
        margin: 70px 0px 0px;
    }

    .about-seerasap p {
        font-size: 26px;
    }

    .seerasap-features h1 {
        font-size: 70px;
    }

    .seerasap-features .seerasap {
        width: 334px;
    }

    .seerasap-features .description-section ul li span {
        font-size: 32px;
        font-weight: 500;
    }

    .seerasap-features .description-section ul li p {
        font-size: 24px;
    }

    .support-service h1 {
        font-size: 70px;
        margin: 40px 0px 0px;
    }

    .support-service h3 {
        font-size: 30px;
    }

    .support-service .seerasap {
        width: 230px;
    }

    .support-service .img-section img {
        padding: 2.1rem 0rem;
    }

    .get-started h1 {
        font-size: 70px;
    }

    .get-started h3 {
        font-size: 30px;
    }

    .get-started .seerasap {
        width: 230px;
    }

    .get-started p {
        font-size: 24px;
    }

    .contact-us h1 {
        font-size: 70px;
    }
}

@media only screen and (min-width: 1470px) {
    .home-banner-img-section img {
        margin-top: 42%;
    }
}

@media only screen and (min-width: 1500px) {
    .website-logo {
        width: 280px;
    }

    .custom-container {
        max-width: 1360px;
    }

    .nav-link {
        padding: 16px 18px !important;
    }

    .home-banner-img-section img {
        margin-top: 30%;
        margin-left: 20%;
    }

    .support-service .img-section img {
        padding: 1rem 0rem;
    }
}

@media only screen and (min-width: 1600px) {
    .custom-container {
        max-width: 1440px;
    }

    .website-logo {
        width: 350px;
    }

    .home-banner-img-section img {
        margin-top: 33%;
    }

    .home-banner-text-section h1 {
        font-size: 54px;
        margin-top: 100px;
    }

    .home-banner-text-section p {
        font-size: 24px;
    }

    .home-banner-text-section p:last-child {
        margin-bottom: 100px;
    }

    .why-choose-seerasap h1 {
        font-size: 72px;
        margin-top: 50px;
    }

    .why-choose-seerasap h3 {
        font-size: 38px;
        font-weight: 500;
    }

    .why-choose-seerasap .img-section {
        margin-top: 60px;
    }

    .why-choose-seerasap .description-section ul li span {
        font-size: 34px;
        font-weight: 500;
    }

    .why-choose-seerasap .seerasap {
        width: 380px;
    }

    .how-does-it-work h1 {
        font-size: 72px;
        margin: 0px 0px 120px;
    }

    .about-seerasap .seerasap {
        width: 380px;
    }

    .about-seerasap h1 {
        font-size: 72px;
        margin: 60px 0px 0px;
    }

    .about-seerasap p {
        font-size: 28px;
    }

    .seerasap-features h1 {
        font-size: 72px;
    }

    .seerasap-features .seerasap {
        width: 380px;
    }

    .seerasap-features .description-section ul li span {
        font-size: 34px;
        font-weight: 500;
    }

    .support-service h1 {
        font-size: 72px;
        margin: 40px 0px 0px;
    }

    .support-service h3 {
        font-size: 32px;
    }

    .support-service .seerasap {
        width: 240px;
    }

    .support-service .img-section img {
        padding: 0.5rem 0rem;
        max-width: 400px;
    }

    .get-started h1 {
        font-size: 72px;
    }

    .get-started h3 {
        font-size: 32px;
    }

    .get-started .seerasap {
        width: 240px;
    }

    .contact-us h1 {
        font-size: 72px;
    }
}

@media only screen and (min-width: 1740px) {
    .home-banner-img-section img {
        margin-top: 30%;
        margin-left: 15%;
    }

    .custom-container {
        max-width: 1600px;
    }
}

@media only screen and (min-width: 1920px) {
    .home-banner-img-section img {
        margin-top: 30%;
        margin-left: 32%;
    }

    .how-does-it-work .banner {
        max-width: 1200px;
        min-height: 470px;
    }

    .how-does-it-work .step-1 .lower {
        top: 410px;
        right: 14px;
    }

    .how-does-it-work .step-2 .lower {
        top: 410px;
        left: 12px;
    }

    .how-does-it-work .step-3 .lower {
        top: 410px;
        left: 36px;
    }
}

@media only screen and (min-width: 2050px) {
    .home-banner-img-section img {
        margin-top: 30%;
        margin-left: 48%;
    }
}

@media only screen and (min-width: 2170px) {
    .home-banner-img-section img {
        margin-top: 30%;
        margin-left: 55%;
    }
}

@media only screen and (min-width: 2320px) {
    .home-banner-img-section img {
        margin-top: 30%;
        margin-left: 70%;
    }
}

@media only screen and (min-width: 2500px) {
    .home-banner-img-section img {
        margin-top: 30%;
        margin-left: 80%;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        position: fixed;
        top: 20px;
        left: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 70%;
        height: 100%;
    }

    .navbar-collapse.collapsing {
        left: -75%;
        transition: height 0s ease;
    }

    .navbar-collapse.show {
        left: 0;
        transition: left 300ms ease-in-out;
    }

    .navbar-toggler.collapsed~.navbar-collapse {
        transition: left 500ms ease-in-out;
    }

    .navbar-nav {
        margin-top: 40px;
    }
}

/*#endregion */