html {
    scroll-behavior: smooth;
}
  
body {
    font-size: 16px;
    font-family: 'Andale Mono';
    margin: 0;
}

button, .btn {
    border: 0;
    border-left: 3px solid black;
    display: table;
    font-family: 'Andale Mono';
    font-size: 16px;
    font-weight: bold;
    height: 40px;
    margin: 0 auto;
    margin-top: 50px;
    padding-left: 20px;
    padding-right: 23px;
    color: #fff;
    background-color: #000;
}

button:disabled {
    border-left: 3px solid #C7C7C7;
    background-color: #C7C7C7;
}

h1 {
    font-size: 36px;
    margin-block-end: 0;
}

h3 {
    margin-top: 0;
}

a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.btn {
    height: 30px;
    padding: 10px 23px 0px 20px;
}

nav {
    width: 100%;
    font-family: 'Courier Prime', monospace;
    background-color: #dddddd;
    z-index: 100;
    border-bottom: 1px solid #000;
    transition: top 0.3s;
}

nav a.active {
    text-decoration: underline;
}

nav a:focus {
    outline-color: #000000;
}


nav ul {
    list-style: none;
    padding-inline-start: 0;
    display: flex;
    left: auto;
    padding: 15px 30px;
    margin: 0;
    justify-content: center;
}

nav li {
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav li:not(:last-child) {
    border-right: 1px solid #000;
}

.header {
    width: 100%;
    position: fixed;
    z-index: 100;
    transition: top 0.3s;
}

.banner {
    background-color: #18FFD4;
    width: 100%;
    text-align: center;
    padding: 8px 0 8px 0;
    transition: top 0.3s;
}

.banner p {
    font-weight: bold;
    margin: 0 10px 0 10px;
}

.banner a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.banner a:focus {
    outline-color: #000000;
}

.container {
    padding: 50px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.content {
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.content p, .content li {
    line-height: 1.5em;
}

input, textarea {
    width: 100%;
    background-color: #fff0;
    border: 0;
    border-bottom: 1px dashed #000;
    padding: 10px;
    font-size: 18px;
    font-family: 'Courier Prime', monospace;
    box-sizing: border-box;
    margin: 5px 0;
}

input {
    height: 40px;
}

textarea {
    resize: none;
    height: 150px;
}

input[type=file] {
    margin-top: 25px;
    padding: 10px 0px;
    color: #C7C7C7;
}

input[type=file]::-webkit-file-upload-button {
    font-family: inherit;
    content: 'choose file';
    color: #fff;
    display: inline-block;
    background-color: #595959;
    padding: 5px 10px;
    white-space: nowrap;
    cursor: pointer;
    font-size: 16px;
}

input:-webkit-internal-autofill-selected {
    background-color: #fff0 !important;
}

input:focus, textarea:focus {
    outline: none;
    border-bottom: 1px solid #000;
    border: 1px solid;
}

input:disabled, textarea:disabled {
    border-bottom: 1px dashed #C7C7C7;
}

input[type=file]:disabled::-webkit-file-upload-button {
    background-color: #C7C7C7;
    cursor: default;
}

input:disabled + span.helptext, textarea:disabled + span.helptext {
    color: #C7C7C7;
}

.linear-grad {
    background-image: linear-gradient(#dddddd, #fafafa);
}

.linear-grad-rev {
    background-image: linear-gradient(#fafafa, #dddddd);
}

.linear-grad-diag {
    background-image: linear-gradient(to bottom right, #fafafa, #dddddd);
}

.web-only {
    display: none;
}

.contact-form label {
    display: none;
}  

#img-as {
    background-image: url('../images/whale + texture.png');
}

#whale-pattern {
    background-image: url('../images/whale-pattern.png');
}

#img-services {
    background-image: url('../images/hawk + texture.png');
    width: 100%;
}

#img-why-as {
    background-image: url('../images/turtle + texture.png');
}

#img-contact {
    background-image: url('../images/dog + rectangle.png');
    margin-top: 50px;
}

/* || UTILITIES */
.text-red {
    color: red;
}

.text-sm {
    font-size: 14px;
}

.flex {
    display: flex;
}

.row {
    display: flex;
    flex-direction: column;
}
  
.col {
    flex: 1;
}

.col-3 {
    flex: 3;
}

.col-4 {
    flex: 4;
}

.gap-40 {
    column-gap: 40px;
}

.gap-100 {
    column-gap: 100px;
}

.gap-150 {
    column-gap: 150px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-19 {
    padding-top: 0px;
}

.pb-130 {
    padding-bottom: 130px;
}

.min-h-screen {
    min-height: 100vh;
}

.highlight {
    background-color: #595959;
    font-weight: normal;
    color: #fff;
    padding: 0 3px;
}

.helptext {
    padding: 3px 0;
}

.image-container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 350px;
    margin: 10px 0;
}

.border-1 {
    border: 1px solid black;
}

.hidden_accessibly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* || MEDIA QUERIES */
@media only screen and (min-width: 768px) {
    .container {
        padding: 100px 50px;
        padding-top: 100px;
    }

    .content {
        max-width: 60%;
    }

    .image-container {
        margin: 50px 0;
    }

    .pt-100 {
        padding-top: 0px;
    }
    
    .pt-19 {
        padding-top: 19.920px;
    }
}

@media only screen and (min-width: 1024px) {
    h1 {
        font-size: 40px;
        margin-block-end: 0;
    }

    nav {
        position: fixed;
        padding: 50px;
        width: auto;
        background: #fff0;
        border-bottom: 0;
    }

    nav li {
        justify-content: flex-start;
        padding: 20px;
        padding-left: 0;
        width: 100px;
    }

    nav li:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid #000;
    }

    nav ul {
        justify-content: flex-start;
        flex-direction: column;
        padding: 0;
        display: inline-flex;
    }

    .header {
        position: static;
    }

    .mobile-only {
        display: none;
    }
    
    .web-only {
        display: block;
    }

    .container {
        padding: 130px 80px;
        padding-left: 200px;
    }

    .content {
        padding: 30px;
        max-width: 410px;
        margin: 0;
    }

    .row {
        flex-direction: row;
    }

    .image-container {
        height: 540px;
        margin: 0;
    }

    .min {
        padding-left: 30px;
    }

    #img-services {
        width: 80%;
    }

    button, .btn {
        color: #000;
        background: linear-gradient(to right, black 50%, #fff0 50%);
        background-size: 200% 100%;
        background-position: right bottom;
        transition: all .3s ease-out;
        margin: 0;
        margin-top: 50px;
    }

    button:hover, button:focus, .btn:hover, .btn:focus {
        cursor: pointer;
        background-position: left bottom;
        color: #fff;
        outline-color: #000000;;
    }

    button:disabled, button:disabled:hover {
        color: white;
        cursor: default;
        background: #C7C7C7;
    }
    
    button:focus, .btn:focus {
        text-decoration: underline;
        text-underline-offset: 5px;
    }

    section {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (min-width: 1280px) {
    .container {
      padding-left: 220px;
    }
}

/* For ipad pro portrait only */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1440px) and (orientation:portrait) {
    .container {
        padding-left: 200px;
    }

    section {
        min-height: 800px;
    }
}

@media (max-width: 992px) { .rellax { transform: translate3d(0,0,0) !important; } }


