html {
    font-size: 10px;
    font-family: "Mulish", sans-serif;
}

/*:::::::::::::::::::::::::::::::::::::

                                        NAV

::::::::::::::::::::::::::::::::::::::*/

header {
    background-color: #1B3658;
    font-family: "Mulish", Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    top:0;
    width: 100%;
    height: 40px;
    z-index: 1000;
}

h1 {
    position: absolute;
    left: 30px;
    top: 14px;
}

nav {
    background-color: #1B3658;
    position: absolute;
    top: 40px;
    right: -140px;
    padding: 0.5rem 2rem 1rem;
    opacity: 0;
    border-radius: 0 0 0 20px;
    transition: all 0.3s ease-in-out;
}

nav.open {
    opacity: 1;
    right: 0;
}

li {
    line-height: 1.8;
    text-align: right;
    display: block;
    width: 100%;
}

#get-started {
    color: #FF9441;
}

button {
    background-color: #1B3658; 
    font-family: "Mulish", Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    border: none;
    display: block;
    line-height: 2;
    color: #9ADBF5;
    text-decoration: none;
    margin: 1.5rem 2rem 0 0;
    margin-right: 2rem;
    background: url("../images/icons/hamburger.svg") no-repeat;
    width: 25px;
    text-indent: -9999px;
}

li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    width: 100%;
    transition: all 0.3s;
}

li a:hover, li a:focus {
    transform: translateY(-10px);   
}

li a:visited, .column3 p a:visited {
    color: #FFF;
    text-decoration: none;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                INDEX.HTML

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

/*:::::::::::::::::::::::::::::::::::::

                                        HERO

::::::::::::::::::::::::::::::::::::::*/

#hero {
    padding: 9rem 2rem 3rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 55%, rgba(0, 178, 228, 1) 95%),
    url("../images/hero-sm.jpg") center 0%/cover;
    color: #FFF;
}

#hero h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 4rem;
    width: 70%;
}

#blurb {
    margin-top: 2rem;
    font-size: 1.8rem;
    width: 70%;
}

#button-v1 a {
    font-size: 1.8rem;
    font-weight: 500;
    background-color: #FF9441;
    border-radius: 8px;
    display: inline-block;
    padding: 1rem 1.5rem;
    margin-top: 2rem; 
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s linear;
    border: 2px solid #FF9441;
}

#button-v1 a:hover {
    background-color: rgba(255,148,65,0);
    color: #FF9441;
}

#button-v1 a:visited {
    color: #FFF;
    text-decoration: none;
}

/*:::::::::::::::::::::::::::::::::::::

                                        DIRECT

::::::::::::::::::::::::::::::::::::::*/

#direct {
    background-color: #00B2E4;
    padding: 3rem 2rem 2rem;
    position: relative;
}

#dots {
    width: 390px;
    height: auto;
    position:absolute;
    top:10px;
    left: 150px;
    z-index: 2;
}

.card-v1, .card-v2, .card-v3, #call, #chat, #find {
    background-color: #FFF;
    border-radius: 10px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.55);
}

.card-v1:last-of-type, .card-v2:last-of-type, .card-v3:last-of-type, #form-contain {
    margin-bottom: 0;
}

.card-label, .job {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #FF9441;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: "Raleway", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-title + p, .bio {
    margin-bottom: 2rem;
}

#direct p, #label p {
    font-size: 1.8rem;
    line-height: 1.2;
}

.button-v2 {
    display: flex;
    gap: 5px;
    align-items: center;
    transition: all 0.1s linear;
}

.button-v2:hover {
    gap: 13px;
}

.button-v2 .v2-p a {
    color: #00B2E4;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.9rem;
}

.button-v2 img {
    padding-top: 1px;
}

/*:::::::::::::::::::::::::::::::::::::

                                        CLIENTS

::::::::::::::::::::::::::::::::::::::*/

#clients {
    margin: 2rem;
}

#clients h2 {
    font-size: 2.5rem;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

#client-contain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    row-gap: 0;
}

#client2 img {
    width: 90px;
    height: auto;
}

#client3 img {
    width: 90px;
    height: auto;
}

#client4 img {
    width: 200px;
    height: auto;
}

/*:::::::::::::::::::::::::::::::::::::

                                        ABOUT

::::::::::::::::::::::::::::::::::::::*/

.about {
    background-color: #FF9441;
    padding: 2rem;
    position: relative;
    overflow: clip;
}

@keyframes spinme {
    0% {
        transform: rotate(0);
    }
    
    100% {
        transform: rotate(120deg);
    }
}

#circles {
    width: 60%;
    position: absolute;
    top: -20px;
    right: -70px;
    animation: spinme 0.1ms linear;
    animation-timeline: scroll();
    animation-range: 30% 100%;
}

#abouter-contain h2 {
    color: #1B3658;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

#abouter-contain h3 {
    color: #1B3658;
    font-size: 3rem;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

#white {
    color: #FFF;
}

picture img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.about .button-v2 .v2-p a {
    color: #FFF;
}

.about .button-v2 img {
    filter: brightness(100);
}

/*:::::::::::::::::::::::::::::::::::::

                                        READY

::::::::::::::::::::::::::::::::::::::*/

#ready {
    background-color: #00B2E4;
}

#ready-contain {
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    
}

#ready h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    color: #FFF;
}

.button-v3 a {
    font-size: 2rem;
    font-weight: 500;
    background-color: rgba(0,0,0,0);
    border-radius: 8px;
    border: #FFF solid 2px;
    display: inline-block;
    padding: 1.5rem;
    margin-top: 3rem; 
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s linear;
}

.button-v3 a:hover {
    background-color: #1B3658;
    color: #FFF;
    border: #1B3658 solid 2px;
}

.button-v3 a:visited {
    color: #FFF;
    text-decoration: none;
}

/*:::::::::::::::::::::::::::::::::::::

                                        FOOTER

::::::::::::::::::::::::::::::::::::::*/

footer {
    background-color: #1B3658;
    padding: 2rem 2rem 1.5rem;
    color: #FFF;
}

footer h3 {
    font-size: 2.5rem;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.column1, .column2 {
    margin-bottom: 2rem;
}

.column2 h3, .column3 h3 {
    margin-bottom: 0.5rem;
}

.column2 p, .column3 p {
    font-size: 1.7rem;
    line-height: 1.3;
}

.column2 h3 + p + p {
    margin-bottom: 1rem;
}

#email, #phone {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#email {
    margin-bottom: 0.5rem;
}

#phone {
    margin-bottom: 1rem;
}

.column3 p a {
    color: #9ADBF5;
    text-decoration: none;
    width: 100%;
}

.column3 p a:hover, .column3 p a:focus {
    text-decoration: underline;
}

.column3 p a:visited {
    color: #9ADBF5;
    text-decoration: none;
    width: 100%;
}

.column3 {
    margin-bottom: 2rem;
}

hr {
    margin-bottom: 1.5rem;
}

hr + p {
    font-size: 1.5rem;
    text-align: center;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                ABOUT & SERVICES

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.h2 {
    padding: 13rem 2rem 5rem;
    background-color: #00B2E4;
}

.h2 h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    text-align: center;
    color: #FFF;
}

#mission h3 {
    color: #1B3658;
}

#mission p {
    color: #000;
}

#mis-contain {
    margin: 0 2rem;
    padding: 2rem 0;
}

#mis-contain h3, #reasons h3, #private h3, #public h3, #team h3, #label h3, #call h3, #chat h3, #find h3 {
    font-size: 2.5rem;
    font-family: "Raleway", sans-serif;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

#mis-contain p {
    font-size: 1.8rem;
    font-family: "Mulish", sans-serif;
    line-height: 1.3;
}

#aboutpg {
    background-color: #FFF;
    overflow-x: clip;
    overflow-y: visible;
}

#aboutpg #abouter-contain h2, #aboutpg #abouter-contain h3 {
    color: #1B3658;
}

#aboutpg #white, #aboutpg .button-v2 .v2-p a {
    color: #FF9441;
}

#aboutpg .button-v2 img {
    filter: none;
}

#reasons {
    padding: 3rem 2rem;
    /*background: #00B2E4;*/
}

#reasons h3 {
    color: #1B3658;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title picture img {
    height: 50px;
    margin-bottom: 1rem;
}

.title p {
    font-family: "Raleway", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-v2 .title + p, .email, .number, .bio {
    font-size: 1.8rem;
    line-height: 1.2;
}

#private, #public, #team, #grid-contain {
    padding: 3rem 2rem;
}

#private h3, #public h3, #team h3, .card-v2 .title h3, #label h3, #call h3, #chat h3, #find h3 {
    text-align: left;
}

#public .center, #private .center {
    text-align: center;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                    TEAM

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.card-v3 picture img {
    border-radius: 10px;
}

#team h3, #label h3, #call h3, #chat h3, #find h3 {
    margin-bottom: 1rem;
}

.job {
    margin-bottom: 1.5rem;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                    GET STARTED

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

label {
    display: none;
}

#label p {
    margin-bottom: 2rem;
}

.form-item {
    margin-bottom: 1rem;
}

.form-item:first-of-type {
    display: flex;
    gap: 3rem;
    width: 95%;
}

.form-item:first-of-type input{
    width: 100%;
}

#find {
    margin-bottom: 3rem;
}

input, textarea {
    font-family: "Mulish", sans-serif;
    font-size: 1.8rem;
    padding: 1rem;
    width: 95%;
    border: 1px solid #757575;
    border-radius: 5px;
}

#firstName, #lastName {
    width: 100%;
}

#submit {
    background-color: #9ADBF5;
    border: none;
    color: #1B3658;
    width: 100%;
}

submit:hover {
    background-color: #1B3658;
    color: #FFF;
}

#call p, #chat p, #find p {
    font-family: "Mulish", sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
}

#liveChat a {
   background-color: #9ADBF5;
    color: #1B3658;
    margin-top: 1.5rem;
    width: 50%;
    text-align: center;
    font-size: 1.8rem;
    padding: 1rem;
}

#liveChat a:hover {
    background-color: #1B3658;
    color: #FFF;
}



/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                MEDIA QUERIES

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

@media screen and (min-width: 500px) {
    #circles {
        width: 50%;
    }
    
    .title {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
    
    #clients h2, #mis-contain h3, #reasons h3, #public .center, #private .center {
        font-size: 3.5rem;
    }
    
    
    .card-v3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .bio {
        margin-bottom: 0;
    }
    
    .card-v3 {
        position: relative;
    }
    
    .card-v3 picture img {
        margin-bottom: 3rem;
    }
    
    #team .button-v2 {
        position: absolute;
        bottom: 15px;
        left: 20px;
    }
    
    #liveChat a {
        width: 30%;
    }
}

@media screen and (min-width: 600px) {
    header {
        height: 50px;
    }
    
    h1 {
        left: 30px;
    }
    
    h1 img {
        height: 82px;
        width: 205px;
    }
    
    button {
        margin: 2rem 4rem 0 0;
    }
    
    nav {
        top: 50px;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        HERO

::::::::::::::::::::::::::::::::::::::*/
    
    #hero {
        padding: 13rem 4rem 3rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        DIRECT

::::::::::::::::::::::::::::::::::::::*/  
    
    #direct, #reasons, #private, #public, #team, #grid-contain {
        padding: 3rem 4rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        CLIENTS

::::::::::::::::::::::::::::::::::::::*/  
    
    #clients {
        margin: 3rem 5rem;
    }
    
    #clients h2 {
        margin-bottom: 2rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        ABOUT

::::::::::::::::::::::::::::::::::::::*/  
    
    .about {
        padding: 3rem 5rem;
    }
    
    #abouter-contain h3 {
        width: 70%;
    }
    
    #abouter picture {
        display: flex;
        justify-content: center;
        margin: 2rem 0;
    }
    
    #abouter picture img {
        width: 70%;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        READY

::::::::::::::::::::::::::::::::::::::*/  
    
    #ready-contain {
        padding: 3rem 4rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        FOOTER

::::::::::::::::::::::::::::::::::::::*/
    
    footer {
        padding: 3rem 3rem 2rem 4rem;
    }
    
    #row1 {
        display: flex;
        justify-content: space-between;
    }
    
    .column1, .column2, .column3 {
        margin-bottom: 0;
    }
    
    .column2 h3, .column3 h3 {
        margin-bottom: 0.5rem;
    }

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                ABOUT & SERVICES

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/    
    #mis-contain {
        margin: 0 4rem;
        padding: 3rem 0;
    }
    
}

@media screen and (min-width: 750px) {
    
    header {
        height: 60px;
    }
    
    h1 {
        top: 24px;
    }
    
    nav, nav.open {
        all: unset;
        margin-right: 2rem;
    }
    
    ul {
        all:unset;
        display: flex;
        gap: 2rem;
        margin-right: 2rem;
        height: 60px;
        align-items: end;
    }
    
    button {
        display: none;
    }
    
    li {
        text-align: center;
        width: auto;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        HERO

::::::::::::::::::::::::::::::::::::::*/
    
    #hero {
        padding: 15rem 4rem 5rem;
        background: linear-gradient(270deg,rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 1) 100%),
            url("../images/hero-lg.jpg") center 0%/cover;
        position: relative;
        z-index: 10;
    }
    
    #button-v1 a {
        font-size: 1.8rem;
        padding: 1.5rem;
        margin-top: 3rem; 
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        DIRECT

::::::::::::::::::::::::::::::::::::::*/
    
    #direct {
        position: relative;
        /*overflow: visible;*/
        /*padding: 6rem 2rem;*/
        /*z-index: 100;*/
    }
    
    #direct-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        /*grid-template-rows: 1fr;*/
        gap: 2rem;
        /*position: absolute;*/
        /*z-index: 100;*/
        /*top: -40px;*/
        /*overflow:auto;*/
    }
    
    .card-v1 {
        margin-bottom: 0;
        position: relative;
    }
    
    .card-v1 .button-v2 {
        position:absolute;
        bottom: 0;
        margin-bottom: 1rem;
    }
    
    .card-title + p {
        margin-bottom: 5rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        CLIENTS

::::::::::::::::::::::::::::::::::::::*/
    
    #client1 img, #client2 img, #client3 img {
        width: 85px;
    }
    
    #client4 img {
        width: 190px;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        ABOUT

::::::::::::::::::::::::::::::::::::::*/
    
    #circles {
        width: 40%;
        top: 140px;
        left: -60px;
    }
    
    #abouter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /*grid-template-rows: 1fr 1fr;*/
    }
    
    #abouter-contain {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    #abouter-contain h3 {
        width: 100%;
    }
    
    #abouter picture {
        grid-column: 2 / -1;
        grid-row: 1 / -1;
    }
    
    #abouter picture img {
        width: 100%;
        height: auto;
    }
    
    #abouter .button-v2 {
        grid-column: 1 / 2;
        grid-row: 2 / -1;
        align-self: end;
        position: absolute;
        z-index: 100;
        top:170px;
    }
    
    .card-v2 {
        margin-bottom: 0;
    }
    
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                ABOUT & SERVICES

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
    
    #r-contain, #private-contain, #public-contain {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /*grid-template-rows: 1fr 1fr;*/
        gap: 2rem;
    }
    
}

@media screen and (min-width: 800px) {
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                ABOUT & SERVICES

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/    
    #mis-contain {
        display: grid;
        grid-template-columns: 1fr 60%;
        align-items: center;
    }
    
    #mis-contain h3 {
        text-align: left;
    }
    
    #mis-contain h3 + p {
        width: 70%;
        justify-self: flex-end;
    }
    
    
    #grid-contain {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        column-gap: 3rem;
        row-gap: 2rem;
    }
    
    #call {
        grid-column: 2/-1;
        grid-row: 1/2;
    }
    
    #chat {
        grid-column: 2/-1;
        grid-row: 2/3;
    }
    
    #find {
        grid-column: 2/-1;
        grid-row: 3/4;
    }
    
    #form-contain {
        grid-column: 1/2;
        grid-row: 1/-1;
    }
    
    #call, #chat, #find {
        margin-bottom: 0;
    }
    
    #submit {
        width: 40%;
        display: flex;
        justify-self: end;
    }
    
    #liveChat a {
        width: 40%;
    }
    
}

@media screen and (min-width: 900px) {
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                ABOUT & SERVICES

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/    
    #abouter .button-v2 {
        top:140px;
    }
    
    
    #r-contain, #public-contain, #private-contain {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        /*grid-template-rows: 1fr 1fr;*/
        gap: 2rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                    GET STARTED

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/    
    #call, #find, #chat {
        padding: 2rem;
    }
    
    .form-item:first-of-type {
        gap: 4rem;
    }
    
    .form-item {
        margin-bottom: 2rem;
    }
    
}

@media screen and (min-width: 1000px) {
    
    h1 {
        left: 40px;
    }
    
    nav, nav.open {
        margin-right: 2rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        HERO

::::::::::::::::::::::::::::::::::::::*/ 
    
    #hero {
        padding: 15rem 5rem 10rem;
    }
    
    #hero h2 {
        width: 60%;
    }
    
    #blurb {
        width: 50%;
    }
    
    #button-v1 a {
        margin-top: 3rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        DIRECT

::::::::::::::::::::::::::::::::::::::*/    
    
    #direct {
        position: relative;
        overflow: visible;
        /*padding: 6rem 4rem;*/
        height: 234px;
        /*z-index: 100;*/
    }
    
    #direct-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        /*grid-template-rows: 1fr;*/
        gap: 2rem;
        position: absolute;
        z-index: 100;
        top: -40px;
        left: 0;
        margin: 0 5rem;
        /*overflow:auto;*/
    }
    
    .card-v1 {
        margin-bottom: 0;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        CLIENTS

::::::::::::::::::::::::::::::::::::::*/
    
    #clients {
        /*margin: 4rem 5rem;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    #clients h2, #about-contain h3, #ready h2 {
        font-size: 3.5rem;
    }
    
    #clients h2, picture img {
        margin-bottom: 0;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        ABOUT

::::::::::::::::::::::::::::::::::::::*/
    
    #circles {
        width: 35%;
        top: 230px;
        left: -60px;
    }
    
    #about, #ready-contain, #reasons, #public, #private, #team {
        padding: 4rem 5rem;
    }

    
/*:::::::::::::::::::::::::::::::::::::

                                        READY

::::::::::::::::::::::::::::::::::::::*/
    
    #ready h2 {
        width: 60%;
        line-height: 1.2;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        FOOTER

::::::::::::::::::::::::::::::::::::::*/
    
    footer {
        padding: 3rem 4rem 2rem 5rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                ABOUT & SERVICES

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/        
    #mis-contain {
        margin: 4rem 5rem;
        /*padding: 4rem 0;*/
    }
    
    #reasons h3, #public .center, #private .center {
        margin-bottom: 3rem;
    }
    
    #team-contain {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /*grid-template-rows: 1fr 1fr;*/
        gap: 3rem;
    }
    
    .card-v3 {
        margin-bottom: 0;
    }
    
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                    GET STARTED

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/ 
    
    #liveChat a, #submit {
        width: 30%;
    }
    
}

@media screen and (min-width: 1200px) {
    
/*:::::::::::::::::::::::::::::::::::::

                                        HEADER

::::::::::::::::::::::::::::::::::::::*/
    
    h1 {
        left:6%;
    }
    
    nav, nav.open {
        margin-right: 6%;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        HERO

::::::::::::::::::::::::::::::::::::::*/
    
    #hero-container {
        max-width: 1100px;
        margin: auto;
    }
    
    #hero h2 {
        width: 60%;
    }
    
    #blurb {
        width: 40%;
        margin-top: 2rem;
    }
    
    #button-v1 a {
        margin-top: 4rem;
    }

/*:::::::::::::::::::::::::::::::::::::

                                        DIRECT

::::::::::::::::::::::::::::::::::::::*/
    
    #direct-container {
        gap:3rem;
        left:50%;
        margin: 0 -550px;
        max-width: 1100px;
    }
    
    .card-label, .card-title {
        margin-bottom: 0.75rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        CLIENTS

::::::::::::::::::::::::::::::::::::::*/
    
    #clients {
        margin: 3rem auto;
        max-width: 1100px;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        ABOUT

::::::::::::::::::::::::::::::::::::::*/
    
    #circles {
        width: 30%;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .margin {
        max-width: 1100px;
        margin: 0 auto;
    }
    
    #abouter {
        padding: 0;
    }
    
    #abouter .button-v2 {
        top: 150px;
    } 
    
/*:::::::::::::::::::::::::::::::::::::

                                        READY

::::::::::::::::::::::::::::::::::::::*/ 
    
    #ready-contain {
        padding: 6rem 5rem;
    }
    
    #ready h2 {
        font-size: 4rem;
        font-weight: 700;
        word-spacing: 0.25rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::

                                        FOOTER

::::::::::::::::::::::::::::::::::::::*/
    
    footer {
        padding: 3rem 0 2rem;
    }
    
    #foot-contain {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    #row1 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        margin-bottom: 2rem;
    }
    
    .column2 {
        justify-self: center;
    }
    
    .column3 {
        justify-self: end;
    }
    
    .column1 img {
        width: 200px;
    }
    
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                ABOUT & SERVICES

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
    
    #mis-contain {
        max-width: 1100px;
        margin: 4rem auto 3rem;
    }
    
    #r-contain {
        max-width: 1100px;
    }
    
    #r-contain, #public-contain, #private-contain {
        gap: 3rem;
    }
    
    .card-v1, .card-v2 {
        padding: 2rem;
    }
    
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

                                    GET STARTED

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/ 
    
    #grid-contain {
        width: 1100px;
        margin: 3rem auto;
    }
    
    
}   













