body {
    font-family: Arial, sans-serif;
    margin: 0px;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    max-width: 100vw;
}

a {
    text-decoration: none;
}

.container {
    margin: 0;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    margin: 0 auto;
    box-shadow: 0px 17px 16px -25px rgba(0, 0, 0, 0.45);
    background-color: #f4f4f4;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.5s ease;
    /* Smooth transition */
}


.logo {
    width: 150px;
    height: auto;
    margin-left: 10px;
}

.menu {
    display: flex;
    gap: 40px;
}

/* Default link styles */
.menu a {
    text-decoration: none;
    color: #333;
    /* Default color */
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
}

.menu a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: darkgray;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

/* Change link color when modal is open */
body.modal-open .menu a {
    color: white;
    /* Change color to white */
}

body.modal-open .menu a:after {
    background-color: rgb(62, 207, 255);
    /* Optional: change underline to match */
}

body.modal-open header {
    background-color: transparent;
}

.menu a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.menu a:hover {
    color: rgb(62, 207, 255);
}

.button {
    background-color: rgb(62, 207, 255);
    color: #fff;
    margin-top: 200px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}

.btn-grad {
    background-image: linear-gradient(to right, #306eb9 0%, #3ecfff 51%, #306eb9 100%);
    margin: 10px;
    font-size: 1.2em;
    padding: 15px 45px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    border: none;
}

.btn-grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.button:hover {
    background-color: #306eb9;
}

.computerImage {
    width: 50vw;
}

.section {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 300px auto 40px 100px;

}

.section .content {
    flex: 1;
}

.section .content a {
    text-decoration: none;
}

.section .content h2 {
    font-size: 2em;
    margin-bottom: 10px;
    margin-top: 0px;
}

.section .content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section .image {
    text-align: center;
}

.section .image img {
    max-width: 100%;
    height: auto;
    opacity: 0;
    /* Start hidden */
    transform: translateX(-500px);
    /* Start position */
    transition: opacity 0.7s ease-in, transform 0.7s ease-in;
    /* Smooth transition */
}

.section .image.animate img {
    opacity: 1;
    /* Fade in */
    transform: translateX(0);
    /* Slide into position */
}

/* Message Section Container */
.message {
    display: flex;
    justify-content: left;
    /* Centers content horizontally */
    align-items: center;
    /* Centers content vertically */
    height: 200px;
    /* Adjust as needed for your design */
    background-image: url("../images/pankaj-patel-_SgRNwAVNKw-unsplash.jpg");
    /* Your background */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* Ensures the background is centered */
    z-index: 1;
    /* Normal stacking context */
}

/* Typing Animation Container */
.typing-animation {
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    /* Initially hidden */
    border-right: 0.15em solid #3ecfff;
    /* Simulates a blinking caret */
    transition: opacity 0.5s ease-in-out;
    /* Smooth fade-in effect */
}

/* Start Typing Animation */
.typing-animation.start-typing {
    opacity: 1;
    /* Reveal the text */
    animation: typing 2s steps(20, end), blink-caret 0.75s step-end infinite;
}

/* Typing Animation Keyframes */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #3ecfff;
    }
}

/* H2 Styling Inside Typing Animation */
.typing-animation h2 {
    margin: 0;
    margin-left: 150px;
    font-size: 3em;
    /* Adjust font size as needed */
    color: white;
    /* Ensure text is visible */
    font-weight: 400;
}



.easy {
    text-align: center;
    font-weight: bold;
    font-size: 4em;
    width: 65vw;
    margin: 100px auto;
}

.popup-onscroll {
    opacity: 0;
    /* Initially hidden */
    transform: translateY(20px);
    /* Slightly offset */
    transition: opacity 0.5s ease, transform 0.5s ease;
    /* Smooth transition */
}

.popup-onscroll.visible {
    opacity: 1;
    /* Fully visible */
    transform: translateY(0);
    /* Slide into place */
}

.three-step-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.three-step-card {
    padding: 20px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    background-color: #ffffff;
}
.three-step-card:hover{
    transform: scale(1.05);
}

.three-step-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.three-step-card p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
}

.three-step-card img {
    width: 100px;
}

.contact-section {
    background: rgb(114, 220, 255);
    background: linear-gradient(68deg, rgba(114, 220, 255, 1) 0%, rgba(62, 207, 255, 1) 30%, rgba(0, 104, 138, 1) 90%);
    color: #fff;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section h2 {
    font-size: 2em;
    margin-right: 20px;
}

.contact-section .a {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    background-color: white;
    color: grey;
    font-weight: bold;
    animation: wiggle 2s linear infinite;
    animation-delay: 3s;
}

@keyframes wiggle {

    0%,
    7% {
        transform: rotateZ(0);
    }

    15% {
        transform: rotateZ(-15deg);
    }

    20% {
        transform: rotateZ(10deg);
    }

    25% {
        transform: rotateZ(-10deg);
    }

    30% {
        transform: rotateZ(6deg);
    }

    35% {
        transform: rotateZ(-4deg);
    }

    40%,
    100% {
        transform: rotateZ(0);
    }
}

.contact-section .a:hover {
    background-color: rgb(192, 192, 192);
    color: white;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer .logo {
    width: 30vw;
    height: auto;
}

.footer .contact-info {
    text-align: left;
}

.footer .contact-info p {
    margin-top: 15px;
    font-size: 1.5em;
}

/* Services Page  */

.services-page-container {
    margin-top: 200;
    background-color: #333;
}

.services-title-container {
    width: 100vw;
    background: linear-gradient(to bottom, #3ECFFF,#306eb9, #333);
}


.services-title {
    font-size: 65px;
    font-weight: bold;
    text-align: center;
    margin: 50px auto auto auto;
    padding: 150px 0px;
    width: 65vw;
    color: white;
}

.services-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    padding-bottom: 50px;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 25%;
    margin: 10px 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1.2em;
    line-height: 1.6;
}

.service-item img {
    width: 80px;
}

.service-item .additional-info {
    display: none;
    padding-top: 20px;
}

.service-item.active .additional-info {
    display: block;
}


@keyframes slideUp {
    0% {
        opacity: 0%;
    }
}

.section-delivering{
    width: 100vw;
    background-image: url("../images/blue-gradient-with-pattern.jpg");
    background-attachment: fixed;
    background-size: cover;
}
.delivering {
    text-align: center;
    color: white;
    width: 50vw;
    font-size: 45px;
    margin: auto;
    padding: 75px;

}

/* About Page */

.about-section {
    background-color: #f4f4f4;
    padding: 40px;
    padding-bottom: 0px;
    margin-top: 140px;
    margin-bottom: 0px;
}

.about-section h2 {
    text-align: center;
    font-size: 45px;
    background: #1FFFF8;
    background: linear-gradient(to right, #1FFFF8 0%, #3ECFFF 28%, #306eb9 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px;
    margin-bottom: 50px;

}

.about-content {
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.about-description {
    margin-bottom: 20px;
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-description p {
    font-size: 1.2em;
    line-height: 1.6;
    width: 35vw;
    text-align: left;
}

.about-image {
    padding: 0px;
    margin: 0px auto;
    display: flex;
    justify-content: baseline;
    align-items: start;
    width: 50vw;
}

.noah-image-1 {
    height: auto;
    padding-bottom: 0px;
    width: 20vw;
    animation: slideMe .7s ease-in;
}

.founder {
    width: 200px;
    margin-top: 75px;
}

.founder h3,
p {
    margin: 0px;
}

#myImage {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateX(-75px);
    }
}


/* Portfolio Page */
.portfolio-section {
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 50px 0px;
    flex-wrap: wrap;
}

.portfolio-item {
    background-color: white;
    display: inline-block;
    margin: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    width: 40vw;
    height: 400px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.portfolio-item img,
.portfolio-item iframe {
    transition: transform 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.portfolio-item:hover img,
.portfolio-item:hover iframe {
    transform: scale(1.1)
}

.portfolio-item .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info h3 {
    margin: 0px;
    padding: 0px 10px;
    font-size: 3vw;
    text-align: center;
    text-wrap: nowrap;
}

.portfolio-item:hover .info {
    transform: translateY(0);
    height: 100%;
}
iframe{
    border: none;
}

.link-icon {
    max-width: 20px;
    margin-left: 10px;
}

.visit {
    display: flex;
    margin-top: 25px;
    align-items: center;
    font-size: 2vw;
    transition: .7s ease;
}

.visit:hover {
    transform: scale(.9);
}

.hover-underline-animation {
    position: relative;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 5px;
    bottom: -5px;
    left: 0;
    background-color: #3ecfff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.portfolio-title {
    width: 100%;
    background-color: #333;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.linear-wipe {
    text-align: center;
    font-size: 45px;
    letter-spacing: 3px;
    background: linear-gradient(to right, white 20%, #306eb9 40%, #3ecfff 60%, white 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 2s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.comingsoon {
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.comingsoon h4 {
    font-size: 45px;
}


/* Contact Page */

.contact-page-section {
    background-color: #f4f4f4;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
    text-align: center;
}

.contact-page-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-page-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-page-info p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2em;
}

.contact-page-form button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}


/* 3ecfff */

/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    z-index: 100;
    /* Ensure modal is above everything */
}

.modal.show {
    opacity: 1;
    pointer-events: all;
}

.modal-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(30deg) saturate(1.2) brightness(1.1);
    /* Subtle adjustments */
    z-index: -1;
    /* Keeps the video behind content */
    transition: filter 0.5s ease;
    /* Smooth transition for the filter */
}



.modal-content {
    position: relative;
    /* Ensures the content isn't affected by the video */
    color: white;
    text-align: center;
    z-index: 1;
    font-size: 2rem;
    padding: 20px;
}

body.modal-active .message {
    z-index: -1;
    /* Push "message" below modal when active */
}

.modal-content h1 {
    margin: 0;
    font-weight: bolder;
    color: #fff;
    /* Sharp text color */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7),
        /* Slight shadow for depth */
        0 0 15px rgba(255, 255, 255, 0.5);
    /* Glow effect */
    font-size: 3.5rem;
    /* Adjust font size */

}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #333;
    padding: 50px;
    /* Centers the stats horizontally */
}

.single-stat {
    text-align: center;
    display: flex;
    box-sizing: border-box;
    width: 300px;
    flex-direction: column;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 4.5em;
    margin: 0;
    padding: 0;
    color: white;
    /* Adjust color as needed */
}

.stat-info {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 5px 0 0;
    color: #ccc;
    /* Adjust color as needed */
}

.question-section {
    padding: 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.question-container {
    max-width: 600px;
    margin: 0 auto;
}

.question-heading {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.question-text {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background-color: #3ECFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #306eb9;
}

.about-quote-section {
    padding: 40px;
    background-color: #333;
    text-align: center;
    font-family: Arial, sans-serif;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.quote-text {
    font-size: 1.2em;
    font-style: italic;
    line-height: 1.6;
    color: #ffffff;
    margin: 0; /* Remove default blockquote margin */
    padding: 0; /* Remove any padding */
    quotes: none; /* Disable default browser quotes */
}

.quote-reference {
    font-size: 1em;
    font-weight: bold;
    color: #3ECFFF;
    margin-top: 20px;
    display: block;
}

.clients-section {
    padding: 40px;
    background-color: #f4f4f4;
    text-align: center;
}

.clients-heading {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.clients-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.client-logo {
    display: inline-block;
    max-width: 150px; /* Adjust as needed for logo size */
    margin: 10px;
    transition: transform 0.2s ease-in-out;
    margin-top: auto;
    margin-bottom: auto;
}

.client-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.client-logo:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.pricing-section {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: Arial, sans-serif;
}

.pricing-heading {
    font-size: 3.5em;
    margin-bottom: 30px;
    color: #333;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.pricing-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    color:#3ECFFF
}

.pricing-price {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: auto;
}

.pricing-features li {
    font-size: 1em;
    margin: 8px 0;
    color: #555;
}

.pricing-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3ecfff;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pricing-button:hover {
    background-color: #306eb9;
}
.monthly-cost{
    font-size: medium;
}

/* Smaller Screen Sizes:  */

@media screen and (max-width: 1058px) {
    .section {
        align-items: start;
    }

    .about-image img {
        height: 100%;
    }

    .delivering {
        width: 75vw;
    }
}

@media screen and (max-width: 900px) {
    .section {
        margin-left: 20px;
    }

    .easy {
        width: 90vw;
        margin: auto;
        margin-top: 50px;
    }

    .about-content {
        flex-wrap: wrap;
    }

    .about-image .noah-image-1 {
        width: 35vw;
    }

    .about-image h3 {
        text-wrap: nowrap;
    }

    .about-description {
        width: 75vw;
    }

    .about-description p {
        width: auto;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: scale(0);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateX(-60px);
        }
    }

    .service-item {
        width: 40vw;
    }
    .services-title{
        width: 80vw;
    }

    .visit {
        font-size: 2vw;
    }

    .info h3 {
        font-size: 2.5vw;
    }

    .linear-wipe {
        font-size: 35px;
    }

    .portfolio-item {
        width: 45vw;
    }
}

@media screen and (max-width: 800px) {
    .section {
        flex-direction: column;
        width: 75vw;
        text-align: center;
        justify-content: center;
        margin: auto;
    }

    header {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .menu {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .section .image {
        width: 100%;
    }

    .logo {
        margin: 0px;
        width: 40vw;
    }

    .content{
        margin-top: 500px;
    }
    .content a {
        display: none;
    }

    .easy {
        font-size: 3em;
    }

    .contact-section {
        flex-direction: column;
        text-align: center;
    }

    .contact-section h2 {
        margin-right: 0px;
    }

    .contact-info h1,
    p {
        font-size: 1.5em;
    }

    .black-section h2 {
        font-size: 1.5em;
    }

    .comingsoon h4 {
        font-size: 35px;
    }
    .about-section{
        margin-top: 250px;
    }
    .services-page-container{
        margin-top: 200px;
    }
    .portfolio-title{
        margin-top: 250px;
    }
    .contact-page-content{
        margin-top: 200px;
    }
}

@media screen and (max-width: 700px) {
    .service-item {
        width: 90vw;
    }

    .portfolio-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .portfolio-item {
        width: 75vw;
    }

    .info h3 {
        font-size: 5vw;
    }
    .services-title{
        width: 90vw;
    }
    .delivering{
        width: 90vw;
        padding: 45px 0px;
    }
}

@media screen and (max-width: 670px) {
    .three-step-section {
        flex-direction: column;
        align-items: center;
    }

    footer {
        flex-direction: column;
    }

    footer .logo {
        min-width: 50vw;
    }

    .about-image .noah-image-1 {
        width: 50vw;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: scale(0);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateX(-50px);
        }
    }

    .delivering {
        padding: 10px;
        font-size: 2em;
        margin: 50px auto;
    }

    .services-title {
        font-size: 2.5em;
        width: 90vw;
        padding-top: 100px;
        margin-top: 225px;
    }

    .linear-wipe {
        font-size: 22px;
    }

    .portfolio-item {
        width: 90vw;
    }

    .comingsoon h4 {
        font-size: 25px;
    }

    .portfolio-title {
        height: fit-content;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .portfolio-section {
        padding-top: 20px;
    }
}

@media screen and (max-width: 450px) {
    .content{
        margin-top: 350px;
    }
    .typing-animation h2{
        margin-left: 0px;
    }
    .menu {
        flex-wrap: wrap;
        padding-left: 10px;
        padding-right: 10px;
        justify-content: center;

    }

    .black-section {
        padding: 10px;
    }

    .footer .contact-info {
        padding: 10px;
    }

    .footer .contact-info p {
        font-size: 16px;
    }

    .typing-animation h2 {
        font-size: 18px;
    }

    .message {
        justify-content: center;
        margin-right: none;
    }

    .about-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-section h2 {
        font-size: 35px;
    }
    .about-image{
        justify-content: center;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: scale(0);
        }

        100% {
            opacity: 1;
            transform: scale(.75) translateX(-30px);
        }
    }

    .delivering {
        padding: 10px;
        font-size: 1.5em;
        margin: 50px auto;
    }

    .services-title {
        font-size: 2em;
        width: 90vw;
        padding-top: 100px;
        margin-top: 200px;
    }

    .contact-page-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact-page-section p {
        text-wrap: wrap;
        font-size: 16px;
    }

    .contact-page-form input,
    .contact-page-content textarea {
        width: 90vw;
    }

    .linear-wipe {
        font-size: 16px;
    }

    .comingsoon h4 {
        font-size: 16px;
    }

    .portfolio-section {
        padding-bottom: 20px;
    }
    .portfolio-title h1{
        padding-top: 50px;
    }
    .portfolio-title{
        margin-top: 200px;
    }
}
