*, *::after, *::before {
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
    margin: 0;
    font: 400 16px 'Noto Sans', Arial, sans-serif;
}

.link, .show-nav, .mobile-nav {
    display: inline-block;
    color: rgb(247, 247, 247);
    text-decoration: none;
}
.nav-links .current-link {
    color: rgb(93, 141, 189);
}
.link:hover, .show-nav:hover, .hide-nav:hover {
    color: rgb(102, 155, 206);
}

.relative {
    position: relative;
}

.container {
    width: 100%;
    padding: 12px 20px 12px 20px;
    margin-right: auto;
    margin-left: auto;
}

.flex {
    display: flex;
}

.inner-page {
    background-color: rgb(22, 22, 22);
    min-height: 100vh;
}

.header {
    position: relative;
}
.h-background {
    position: absolute;
    height: 100%;
    width: 50%;
}
.left-b-image {
    left: 0;
    background: url(./../img/code.jpg) no-repeat center;
}
.right-b-image {
    right: 0;
    background: url(./../img/tablet.jpg) no-repeat center;
}
.header > .container {
    position: relative;
}

.header ul {
    padding: 0;
    margin: 0;
}

.nav-container {
    position: relative;
    z-index: 1001;
    left: 0px;
    right: 0px;
    background-color: rgba(49, 75, 101, 0.9);
    /*background-color: rgba(22, 22, 22, 0.9);*/
}
.sticky {
    position: fixed;
    z-index: 1001;
    left: 0px;
    right: 0px;
}

.nav {
    position: relative;
    flex-direction: column;
    text-align: center;
}
.logo-image {
    width: auto;    
    max-width: 100%;
    max-height: 75px;
    vertical-align: middle;
    transition: all 0.5s ease 0s;
}
.nav-links {
    justify-content: center;
    max-width: 50%;
    white-space: nowrap;
    display: none;
}
.nav-links ul {
    list-style: none;
}
.nav-links li {
    display: inline-block;
}
.nav-links li:not(:first-child) {
    padding-left: 30px;
}
.email {
    font-size: 16px;
    margin-top: 10px;
}
.email a {
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.widget {
    background-color: rgb(255, 255, 255);
    padding-top: 60px;
    padding-bottom: 60px;
}
.about-us-widget {
    background-color: rgb(246, 246, 246);
}
.heading {
    overflow: hidden;
    margin: 0 0 40px;
    line-height: 1.4;
    color: rgb(67, 104, 140);
    font-weight: 400;
    text-align: center;
    font-family: 'Sanchez', Rockwell, Georgia, serif;
}
.heading > span {
    max-width: 80%;
    display: inline-block;
    position: relative;
}
.heading > span::before, .heading > span::after {
    content: "";
    display: block;
    width: 100vw;
    top: .75em;
    position: absolute;
    background: currentColor;
    margin-top: -1px;
    height: 1px;
}
.heading > span::before {
    margin-right: 20px;
    right: 100%;
}
.heading > span::after {
    margin-left: 20px;
    left: 100%;
}
.hero-container {
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 16px;
}
.hero-container > div {
    display: flex;
    overflow: hidden;
    width: 300px;
    height: 300px;
    background-color: rgba(67, 104, 140, 0.9);
    border-radius: 50%;
    padding: 12px;
    justify-content: center;
    align-items: center;
}
.hero {
    color: rgb(255, 255, 255);
}
.hero h1 {    
    font-family: 'Sanchez', Rockwell, Georgia, serif;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-weight: 400;
    font-size: 25px;
    margin: 0 0 10px; 
    line-height: 1.2;
}
.hero-text {    
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.2;
}
.hero-text p {
    margin: 0;
}
.hero-link {
    max-width: 100%;
    margin-top: 10px;
    border-radius: 100px;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgb(255, 255, 255);
    font-size: 12px;
    padding: 10px 30px 10px 30px;
    color: rgb(48, 48, 48);
    display: inline-block;
    text-decoration: none;    
    font-weight: 700;
}

.content-cards {
    margin-right: -10px;
    margin-bottom: -20px;
    margin-left: -10px;
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
    justify-content: center;
}
.card {
    display: flex;
    flex-basis: 100%;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 100%;
    padding: 0 10px 20px 10px;
}
.card > div {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.card h4 {
    font-weight: 400;
    margin: 0 0 20px 0;
    align-self: center;
    line-height: 1.25;
    color: rgb(27, 27, 27);
    max-width: 100%;
    font-size: 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.card-image-div {
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    order: -1;
    max-width: 100%;
    display: inline-block;
}
.card-image {
    object-fit: cover;
    border-radius: 50%;
    vertical-align: middle;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto 0 auto;
    width: 233px;
    height: 233px;
}
.card-text {
    margin-top: 0;
    margin-bottom: 0;
    color: rgb(94, 94, 94);
    max-width: 100%;
    flex-grow: 1;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.card-text p {
    margin: 0;
}

.grid {
    margin: 0px -10px 0px -10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.grid-cell {
    padding: 0px 10px 0px 10px;
    text-align: center;
    max-width: 100%;
    flex-basis: 100%;
    flex-shrink: 1;
    flex-grow: 1;
    justify-content: center;
}
.grid-cell h4 {
    overflow-wrap: break-word;
    margin: 0px 0px 20px 0px;
    font-size: 20px;
    line-height: 1.25;
    color: rgb(27, 27, 27);
    font-weight: 400;
}

form {
    margin-bottom: 0;
    font-size: 12px;
}
form > div {
    padding-bottom: 20px;
}
.input-float-label {
    position: relative;
}
input, label {
    font: inherit;
    vertical-align: middle;
    margin: 0;
    line-height: normal;  
}
.input-float-label input, .message {
    font: inherit;
    color: rgb(71, 71, 71);
    border-radius: 4px;    
    border: 1px solid rgb(226, 226, 226);
}
.input-float-label input { 
    padding: 23px 10px 7px 10px;
    width: 100%;
}
.input-float-label input:focus, .message {
    outline: none;
}
.input-float-label label {
    pointer-events: none;
    position: absolute;
    top: 33%;
    left: 11px;
    color: rgba(71, 71, 71, 0.7);
    transition: all 0.15s ease 0s;
    overflow-wrap: break-word;
}
.input-float-label input:focus + label, .input-float-label label.float-up {
    color: rgb(67, 104, 140);
    top: 8px;
}
.message {
    line-height: 1.75;
    padding: 10px;
    width: 100%;
    resize: vertical;
}
.message::-webkit-input-placeholder {
    color:rgba(71, 71, 71, 0.7);
}
.submit-button {    
    display: inline-block;
    font: inherit;
    font-weight: 700;
    padding: 12px 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(67, 104, 140);
    border-radius: 100px;
    border: none;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.15s;
}
.submit-button:hover {
    background-color: rgb(76, 117, 157);
}

.contact-us-text {
    margin-top: 40px;
    text-align: center;
}
.contact-us-text .grid-cell {
    padding-bottom: 20px;
}
.contact-us-text .c-text {
    color: rgb(94, 94, 94);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.c-text p {
    margin: 0;
}
.contact-us-text a {
    color: rgb(67, 104, 140);
    text-decoration: none;
}
.footer-widget {
    background-color: rgb(22, 22, 22);
    text-align: center;
}
.footer-heading {
    margin-bottom: 20px;
    line-height: 1.25;
    color: rgb(247, 247, 247);
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.footer-heading p {
    margin: 0;
}
.hr {
    width: 50px;
    border: 1px solid rgb(42, 42, 42);
    margin: 0 auto 20px;
}

@media (max-width: 767px) {
    .hero-container > div {
        padding: 30px;
        width: 280px;
        height: 280px;
        overflow: visible;
    }
    .hero h1 {
        font-size: 25px;
    }
    .hero-text {
        font-size: 16px;
    }
    .widget {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .card {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) {
    .hero-container > div {
        padding: 30px;
        width: 400px;
        height: 400px;
        overflow: hidden;
    }
    .content-cards {
        margin: 0 -20px -40px -20px;
    }
    .card {
        padding: 0 20px 40px 20px;
        max-width: 50%;
        flex-basis: 50%;
    }
    .grid {
        margin: 0px -20px 0px -20px;
    }
    .grid-cell {
        max-width: 66.6667%;
        margin-left: 16.6667%;
        flex-basis: 66.6667%;
        padding: 0px 20px 0px 20px;
    }
    .submit-button {
        width: auto;
    }
}

@media (min-width: 850px) {
    .nav {
        text-align: inherit;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .nav > .nav-item:not(.nav-links) {
        width: 25%;
    }
    .nav-links {
        display: flex;
    }
    .email {
        display: flex;
        justify-content: flex-end;
        font-size: 18px;
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 984px;
    }
    .heading {
        font-size: 30px;
    }
    .hero-container > div {
        padding: 40px;
        width: 450px;
        height: 450px;
        overflow: hidden;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero-text {
        font-size: 22px;
    }
    .card {
        max-width: 33.33333333333333%;
        flex-basis: 33.33333333333333%;
    }
    .card h4 {
        font-size: 22px;
    }
    .grid-cell h4 {
        font-size: 22px;
    }
    .input-float-label input, .input-float-label label, .message {
        font-size: 14px;
    }
    .submit-button {
        padding: 12px 50px;
    }
}

@media (min-width: 1280px) {
    .container {
        width: 1160px;
    }
    .heading {
        font-size: 31px;
    }
    .hero h1 {
        font-size: 31px;
    }
    .submit-button {
        font-size: 14px;
    }
}

@media (min-width: 1536px) {
    .container {
        width: 1280px;
    }
}