/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;700&family=MuseoModerno&display=swap');

/* CSS by Michael Rinella, Shrine Designs */

/* FONTS /\/\/\/\/\/\/\/\/\/\/\/\/\

font-family: 'Lora', serif;
font-family: 'Montserrat', sans-serif;
font-family: 'MuseoModerno', cursive;
*/

/* CONTENTS /\/\/\/\/\/\/\/\/\/\/\/\/\

1. GLOBAL
    Custom link color and hover state
    Portfolio assets a links and hover states
    Testimonial a links and hover states
    Remove zoom on inputs for mobile
    Custom margin-bottom
    Buttons

2. HEADER
    Logo
    Navigation
    Banner Image
    Banner Text
    Banner font awesome chevron down with animation
    Card Component
    Card Images
    Card Text

3. CONTENT
    Images for sections on home page
        My Motivation
            Image
        About Me
            Image
        Why UX/UI Matters
            Image
    Portfolio Images on Portfolio page
    Testimonials

4. FOOTER
    Footer text
    Social Media icons

5. MEDIA QUERIES
    @media only screen and (max-width: 2560px)
    @media only screen and (max-width: 1080px)
    @media only screen and (max-width: 1024px) iPad Pro 12.9
    @media only screen and (max-width: 834px) iPad Pro 10.5
    @media only screen and (max-width: 768px) iPad
    @media only screen and (max-width: 600px) Tablet
    @media only screen and (max-width: 414px) iPhone 8
    @media only screen and (max-width: 375px) iPhone 6
    @media only screen and (max-width: 360px) Galaxy
*/

/* 1. GLOBAL /\/\/\/\/\/\/\/\/\/\/\/\/\ */

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
            margin: 0;
            padding: 0;
}

html, p {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #1a1a1a;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

img {
    width: 100%;
    height: auto;
}

/* Custom link color and hover state */
#link-color {
    color: magenta;
}

#link-color:hover {
    color: #973ad1;
}

a {
    color: #973ad1;
    text-decoration: none;
}

a:hover {
    color: magenta;
    text-decoration: none;
}

a:focus {
    outline-color: magenta;
}

/* Portfolio assets a links and hover states */
li.nav-item-portfolio a {
    color: magenta;
    text-decoration: none;
}

li.nav-item-portfolio a:hover {
    color: #973ad1;
    text-decoration: none;
}

/* hide fontawesome icon linked to cloud Sketch files --2023-21-03 */
.fa-palette {
    display: none;
}

/* Testimonial a links and hover states */
.card-sub-heading a {
    color: magenta;
    text-decoration: none;
}

.card-sub-heading a:hover {
    color: #973ad1;
    text-decoration: none;
}

.bold-font {
    font-weight: 700;
}

.current,
.current a {
    color: magenta;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

main {
    width: 70%;
    margin: 0 auto;
}

/* Remove zoom on inputs for mobile */
input, select { 
    font-size: 100%; 
}

/* skip to main */
#skip a {
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
 
#skip a:focus {
position:static;
width:auto;
height:auto;
}

/* Custom margin-bottom */

#margin-bottom {
    margin-bottom: 6em;
}

#margin-bottom-mobile {
    margin-bottom: 2em;
}

/* - - Buttons - - */

.btn {
    padding: .5em 1.75em;
    font-weight: 700;
    margin-top: .5em;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.btn-primary {
    background:goldenrod;
    color: #fff;
    width: 100px;
    height: 44px;
    border-radius: 3px;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color:goldenrod;
    color: #fff;
}

.glowing {
  text-shadow: 0 0 12px purple;
}

/* /\/\/\/\/\/\/\/ 2. HEADER */

header {
    position: absolute;
    background: transparent;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2.5em 3em 2.5em 3em;
    z-index: 999;
}

/* - - Logo - - */

.logo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;;
}

.logo-img {
    width: 100px;
    height: auto;
}

.logo-text a {
    font-family: 'MuseoModerno', cursive;
    font-size: 1.2rem;
    margin-top: .50em;
    padding-left: 1em;
    color: #ffffff;
    text-decoration: none;
}

.logo-text a:hover {
    color: magenta;
}

/* - - Navigation - -  */

.nav {
    padding-top: .5em;
}

.open-nav,
.close-nav {
    display: none;
}
    
.nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.nav-link-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.nav-list li {
    list-style: none;
    padding-left: 1.25em;
}
    
.nav-item {
    margin-left: 1em;
} 
    
.nav-link {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}
    
.header-home .nav {
    background: transparent;
}

/* - - Banner Image - - */

.banner-img {
    background:
    -o-linear-gradient(323deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
    -o-linear-gradient(233deg, rgba(0,195,227,.5), rgba(0,195,227,0) 70.71%),
    -o-linear-gradient(114deg, rgba(255,0,255,.5), rgba(255,0,255,0) 70.71%),
        url('/img/banner-cover-image-04a.jpg');
    background:
    linear-gradient(127deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
    linear-gradient(217deg, rgba(0,195,227,.5), rgba(0,195,227,0) 70.71%),
    linear-gradient(336deg, rgba(255,0,255,.5), rgba(255,0,255,0) 70.71%),
        url('/img/banner-cover-image-04a.jpg');
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 8em;
    opacity: 100%;
}

/* - - Banner Text - - */

.banner-copy-centered {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    font-size: 3rem;
    font-weight: 700;
    width: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}


/* Banner font awesome chevron down with animation */

.arrow {
    position: absolute;
    text-align: center;
    bottom: 3%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: rgba(255,255,255,.7);
  }

.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
  }
  
  @-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    40% {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
    }
    60% {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
    }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    40% {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
    }
    60% {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
    }
  }


/* - - Card Component - - */

.card-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 8em;
}

.card-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 6em auto 0;
}

.card-img-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 8em;
}

/* - - Card Images - - */ 

.img-margin-left,
.img-margin-right {
    min-width: 200px;
    width: 35%;
    height: auto;
}

.img-margin-left {
    margin-left: 2em;
}
  
.img-margin-right {
    margin-right: 2em;
}

/* - - Card Text - - */
  
.card-text-contain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 64%;
}

.portfolio-text-contain-full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
}

.portfolio-text-contain-full .nav-list li {
    padding: 0 .5em 0 0;
}

.card-text {
    font-weight: 400;
    background:
    -o-linear-gradient(323deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
    -o-linear-gradient(114deg, rgba(255,209,25,.9), rgba(255,209,25,0) 70.71%);
    background:
    linear-gradient(127deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
    linear-gradient(336deg, rgba(255,209,25,.9), rgba(255,209,25,0) 70.71%);
    padding: 3em 5em;
    margin-bottom: 8em;
}

.portfolio-text-contain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
}

.card-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem; /* 36 / 16 */ 
    line-height: 1.333333333333333em; /* 48 / 36 */ 
    font-weight: 700;
    margin-top:  -0.25em; /* remove margin-top with negative margin, flexbox */
    margin-bottom: .6666666666666667em; /* 24 / 36 */ 
}

.card-heading-solo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem; /* 36 / 16 */ 
    line-height: 2.25em;
    font-weight: 700;
    margin-top: 1em;
    text-align: center;
}

.card-sub-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3125rem; /* 21 / 16 */ 
    font-weight: 700;
    margin-top: 1em;
    line-height: 1.142857142857143em; /* 24 / 21 */ 
    margin-bottom: 1.142857142857143em; /* 24 / 21 */ 
}

.card-sub-heading-sm {
    font-size: 1.125rem; /* 18 / 16 */ 
    line-height: 1.333333333333333em; /* 24 / 18 */ 
    margin-bottom: 1.333333333333333em; /* 24 / 18 */ 
    list-style: none;
    margin-left: -0.65em;
    font-weight: 700;
}

.card-text-contain-3col {
    font-family: 'Lora', serif;
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    margin: 0 2em 2em 3em;
}

.card-copy-3col {
    font-size: 1rem;
}

.contain-3col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

.contain-3col ul {
    list-style-position: inside;
}
.contain-3col .card-sub-heading-sm {
    margin-left: 0;
}

.fab, 
.fas {
    font-size: 4rem;
}

/* 3. CONTENT /\/\/\/\/\/\/\/\/\/\/\/\/\ */
  
/* - - Images - - */

/* - - My Motivation - - */

.card-background01-img { /* My Motivations image */
    background:
    -o-linear-gradient(323deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
    -o-linear-gradient(233deg, rgba(0,195,227,.5), rgba(0,195,227,0) 70.71%),
    -o-linear-gradient(114deg, rgba(255,0,255,.5), rgba(255,0,255,0) 70.71%),
        url('/img/ui-wireframes-sample-550x400.jpg');
    background:
    linear-gradient(127deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
    linear-gradient(217deg, rgba(0,195,227,.5), rgba(0,195,227,0) 70.71%),
    linear-gradient(336deg, rgba(255,0,255,.5), rgba(255,0,255,0) 70.71%),
        url('/img/ui-wireframes-sample-550x400.jpg');
    width: 100%;
    height: 0;
    padding-top: 25%; /* (img-height / img-width * container-width) */ /* (853 / 1280 * 100) */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 100%;
}

/* - - About Me - - */

.card-background02-img { /* About Me image */
    background:
    -o-linear-gradient(233deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
    -o-linear-gradient(323deg, rgba(0,195,227,.5), rgba(0,195,227,0) 70.71%),
    -o-linear-gradient(114deg, rgba(255,0,255,.5), rgba(255,0,255,0) 70.71%),
        url('/img/about-me-temp-550x400-09182020.jpg');
    background:
    linear-gradient(217deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
    linear-gradient(127deg, rgba(0,195,227,.5), rgba(0,195,227,0) 70.71%),
    linear-gradient(336deg, rgba(255,0,255,.5), rgba(255,0,255,0) 70.71%),
        url('/img/about-me-temp-550x400-09182020.jpg');
    width: 100%;
    height: 0;
    padding-top: 24.8%; /* (img-height / img-width * container-width) */ /* (853 / 1280 * 100) */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 100%;
}

/* - - Why It UX/UI Matters image - - */

.card-background03-img { /* Why UX/UI Matters image */
    background:
    -o-linear-gradient(323deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
    -o-linear-gradient(233deg, rgba(0,195,227,.5), rgba(0,195,227,0) 70.71%),
    -o-linear-gradient(114deg, rgba(255,0,255,.5), rgba(255,0,255,0) 70.71%),
        url('/img/why-it-matters-550x400-ui-kit.jpg');
    background:
    linear-gradient(127deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
    linear-gradient(217deg, rgba(0,195,227,.5), rgba(0,195,227,0) 70.71%),
    linear-gradient(336deg, rgba(255,0,255,.5), rgba(255,0,255,0) 70.71%),
        url('/img/why-it-matters-550x400-ui-kit.jpg');
    width: 100%;
    height: 0;
    padding-top: 25%; /* (img-height / img-width * container-width) */ /* (853 / 1280 * 100) */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 100%;
}

/* - - Portfolio images - - */

.portfolio-contain {
    
    margin-bottom: 8em;
    background: #f2f3f4;
    padding-top: 1em;
    padding-right: 2em;
    padding-bottom: 1em;
    margin-top: 2em;
}

.row-container-portfolio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;
}

.bkg-color-portfolio-full img {
    border: 0;
}

.bkg-color-portfolio img {
    border-top: 1em solid #f2f3f4;
    border-left: 2em solid #f2f3f4;
    border-bottom: 1em solid #f2f3f4;
    padding-right: 1em;
}

.card-copy-portfolio {
    position: absolute;
    width: 70%;
    left: 18%;
    bottom: 5%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.bkg-color-portfolio,
.bkg-color-portfolio-full {
    position: relative;
    background:
        -o-linear-gradient(323deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
        -o-linear-gradient(233deg, rgba(0,195,227,.5), rgba(0,195,227,0) 70.71%),
        -o-linear-gradient(114deg, rgba(255,0,255,.5), rgba(255,0,255,0) 70.71%);
    background:
        linear-gradient(127deg, rgba(255,204,0,.5), rgba(255,204,0,0) 70.71%),
        linear-gradient(217deg, rgba(0,195,227,.5), rgba(0,195,227,0) 70.71%),
        linear-gradient(336deg, rgba(255,0,255,.5), rgba(255,0,255,0) 70.71%);
}

section .card-background01-img,
section .card-background03-img,
section .card-background04-img,
section .card-background05-img {
    width: 35%;
    margin-right: 2em;
}

section .card-background02-img {
    width: 35%;
}

.nav-item-portfolio {
    margin-left: 0;
}

.nav-item-portfolio .fas,
.nav-item-portfolio .fab {
    font-size: 2rem;
}

.inactive {
    color: #D3D3D3;
}

/* - - Testimonials - - */

.testimonial-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
    background:
    -o-linear-gradient(114deg, rgba(220,220,220,.7), rgba(220,220,220,0) 70.71%),
    -o-linear-gradient(323deg, rgba(192,192,192,.7), rgba(192,192,192,0) 70.71%);
    
    background:
    linear-gradient(336deg, rgba(220,220,220,.7), rgba(220,220,220,0) 70.71%),
    linear-gradient(127deg, rgba(192,192,192,.7), rgba(192,192,192,0) 70.71%);
    width: 100%;
    margin-bottom: 8em;
}

#testimonial-slider{
    padding: 0px 20px 20px 20px;
    
    text-align: center;  
}

.owl-buttons{
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 35%;
    left: 0;
}
.owl-prev,
.owl-next{
    position: absolute;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.owl-next{
    left: auto;
    right: 0;
}
.owl-buttons .owl-prev:before,
.owl-buttons .owl-next:before{
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 60px;
    font-weight: 900;
    color: #C0C0C0;
    line-height: 20px;
    opacity: 0.8;
}

.owl-buttons .owl-next:before{
    content: "\f105";
}

.owl-buttons .owl-prev:hover:before,
.owl-buttons .owl-next:hover:before{
    opacity: 1;
}

.owl-theme .owl-controls .owl-buttons div{
    background: transparent;
}

.owl-theme .owl-controls{
    margin-top: 40px;
}

.owl-pagination {
    margin-bottom: 2em;
}

.owl-theme .owl-controls .owl-page span{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #707070;
    background: url("/img/alvin-valerio.jpg") no-repeat;
    background-size: cover;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.owl-theme .owl-controls .owl-page:nth-child(2) span{
    background: url("/img/susan-michael.jpg") no-repeat;
    background-size: cover;
}

.owl-theme .owl-controls .owl-page:nth-child(3) span{
    background: url("/img/peter-leighton.jpg") no-repeat;
    background-size: cover;
}
.owl-theme .owl-controls .owl-page:nth-child(4) span{
    background: url("/img/kelly-bahe-newgord-1.jpg") no-repeat;
    background-size: cover;
}

.owl-theme .owl-controls.clickable .owl-page:hover span{
    opacity: 0.5;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page.active:hover span{
    border-color: goldenrod;
    opacity: 1;
}


/* FOOTER /\/\/\/\/\/\/\/\/\/\/\/\/\ */
  
footer {
    background: #1a1a1a;
    height: 400px;
}

.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2.5em 0;
}

/* - - Footer Text - - */

.nav-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    list-style: none;
    letter-spacing: 0.15rem;
    margin: 0 auto;
    text-transform: uppercase;
}

.copy-footer {
    color: #ffffff;
    font-size: 1.2rem;
}

.copy-footer-terms,
#auto-date {
    font-family: 'MuseoModerno', cursive;
    font-size: 1rem;
    color: rgba(255,255,255, 0.4);
}

/* - - Social Media Icons - - */

.fa {
    font-size: 48px!important;
}

.fa-linkedin-square,
.fa-instagram {
    color: rgba(255,255,255, 0.9);
    margin-top: 0.25em;
    margin-left: 0.25em;
    margin-right: 0.25em;
}

.fa-linkedin-square:hover,
.fa-instagram:hover {
    color: magenta;
}

.footer-date-contain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

/* MEDIA QUERIES /\/\/\/\/\/\/\/\/\/\/\/\/\ */

    @media only screen and (max-width: 2560px){
        .conrtainer-styling {
            width: 100%;
        }
    }

    @media only screen and (max-width: 1080px){
      
        .card-text-contain-3col {
            font-size: 0.85rem;
            margin: 0 1em 8em 2em;
        }
        
        .card-copy-3col {
            font-size: 0.85rem;
        }
    }

    @media only screen and (max-width: 1024px) {

        .banner-copy-centered {
            font-size: 2.8rem;
        }

        .img-margin-left,
        .img-margin-right {
            width: 40%;
        }

        .card-background01-img,
        .card-background02-img,
        .card-background03-img,
        .card-background04-img,
        .card-background05-img {
            padding-top: 25.2%;
        }

        .card-heading {
            font-size: 1.5rem; /* 24 / 16 */ 
            line-height: 1em; /* 24 / 24 */ 
            margin-bottom: 1em; /* 24 / 24 */ 
            margin-top: -0.15em;
        }

        .card-heading-solo {
            font-size: 1.5rem; /* 24 / 16 */ 
            line-height: 1em; /* 24 / 24 */ 
            margin-top: 2em;
            margin-bottom: 1em; /* 24 / 24 */ 
        }

        .card-copy-portfolio {
            font-size: 0.80rem;
            width: 90%;
            left: 9%;
            bottom: 6%;
        }      

        .owl-pagination {
            margin-bottom: 1em;
        }

        .mod-card-heading { /* decreae line-height for heading on card-text heading ipad and mobile only */
            line-height: 1.4;
            margin-bottom: .55em;
        }

        .card-text-contain {
            width: 60%;
        }

        .card-text {
            padding: 3em;
        }

    }

    @media only screen and (max-width: 834px) {

        .card-text-contain-3col {
            font-size: 0.75rem;
            margin: 0 1em 2em 1em;
        }
        
        .card-copy-3col {
            font-size: 0.75rem;
        }

        .contain-3col {
            width: 90%;
        }
        .owl-buttons {
            bottom: 28%;
        }

    }

    @media only screen and (max-width: 768px) {

        .logo-text {
            font-size: 1rem;
        }

        .banner-img {
            width: 100vw;
            height: 100vh;
            background-position: top 0 right 25%!important;
            background-position-x: 25%!important;
            background-position-y: 0%;
            background-origin: content-box;
        }

        .banner-copy-centered {
            font-size: 2.6rem;
        }

        /* start - ipad and mobile - make the height of the background image responsibe */
        section .card-background01-img,
        section .card-background02-img,
        section .card-background03-img,
        section .card-background04-img,
        section .card-background05-img {
            width: 100%;
            margin-bottom: 3em;
        }

        .card-background01-img,
        .card-background02-img,
        .card-background03-img,
        .card-background04-img,
        .card-background05-img {
            padding-top: 73%;       /* (img-height / img-width * container-width) */ /* (853 / 1280 * 100) */
        }                           /* end - ipad and mobile - make the height of the background image responsibe */


        .img-margin-left,
        .img-margin-right {
            width: 100%;
            height: auto;
        }

        .row-container-portfolio {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -ms-flex-pack: distribute;
                justify-content: space-around;
            width: 100%;
          }
     
        .card-text-contain {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            width: 100%;
        }

        .card-heading,
        .card-heading-solo {
            font-size: 1.5rem; /* 24 / 16 */ 
            line-height: 1em; /* 24 / 24 */ 
            margin-bottom: 1em; /* 24 / 24 */ 
        }

        .mod-card-heading { 
            line-height: 1.4;
            margin-bottom: 1em;
        }

        .card-sub-heading {  
            font-size: 1.125rem; /* 18 / 16 */ 
            line-height: 1.333333333333333em; /* 24 / 18 */ 
            margin-bottom: 1.333333333333333em; /* 24 / 18 */ 
        }
     
        .card-img,
        .card-img-reverse,
        .card-form {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
        }

        .testimonial-wrapper {
            margin-bottom: 5em;
        }

        .owl-buttons {
            bottom: 25%;
        }

        .card-copy-portfolio {
            width: 70%;
            left: 18%;
            bottom: 6%;
        }  

        .portfolio-contain {
            margin-bottom: 5em;
        }

        .banner-img,
        .card-img,
        .card-img-reverse,
        .card-text {
            margin-bottom: 5em;
        }

        .img-margin-left,
        .img-margin-right {
            margin-top: 0;
            margin-right: 0;
            margin-bottom: 2em;
            margin-left: 0;
        }

        #main-google-calendar {
            width: 90%;
        }

        .contact-form-section {
            width: 100%;
            padding: 2em;
        }

        .form-contain {
            width: 100%;
        }

        .card-text-contain-3col {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            font-size: 1rem;
            margin-left: 20%;
        }

        .contain-3col {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start;
            width: 70%;
            
        }

    }

    @media only screen and (max-width: 600px) {


        header {
            padding: 2em;
        }

        #margin-bottom {
            margin-bottom: 3em;
        }

        /* - - Navigation - - */

        .open-nav,
        .close-nav {
            display: block;
        }

        .nav {
            position: fixed;
            background: #1a1a1a;
            width: 100%;
            height: 100vh;
            top: 0;
            right: 0;
            bottom: 0;
            left: 100%;
            -webkit-transform: translateX(0);
                -ms-transform: translateX(0);
                    transform: translateX(0);
            -webkit-transition: -webkit-transform 250ms;
            transition: -webkit-transform 250ms;
            -o-transition: transform 250ms;
            transition: transform 250ms;
            transition: transform 250ms, -webkit-transform 250ms;
            z-index: 999;
        }
        
        .navigation-open {
            -webkit-transform: translateX(-100%);
                -ms-transform: translateX(-100%);
                    transform: translateX(-100%);
        }
        
        .nav-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            height: 100%;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
        }

        .portfolio-text-contain-full .nav-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            height: 100%;
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
        
        }

        .navigation-list {
            display: none;
        }

        .nav-list li {
            list-style: none;
            padding-left: 0;
            font-size: 1rem;
        }
        
        .nav-link {
            color: #ffffff;
            text-decoration: none;
        }

        /* make mobile menu text larger */
        .nav-list li,
        .nav-list li a {
            font-size: 2rem;
        }

        .spacer {
            padding-bottom: 1em;
        }
        
        .nav-link:hover,
        .nav-link:focus {
            color: #973ad1;
        }
        
        .close-nav {
            border: 0;
            background: 0;
            color: rgba(255,255,255,.4);
            font-weight: 700;
            font-size: 3rem;
            cursor: pointer;
            padding: .5em;
            position: absolute;
        }
        
        .close-nav:hover {
            color: goldenrod;
        }
        
        .open-nav {
            border: 0;
            background: 0;
            color: rgba(255,255,255,.9);
            cursor: pointer;
            padding-right: .25em;
            margin-left: auto;
            margin-top: -.25em;
            font-size: 3rem;
        }

        main {
            width: 90%;
            margin: 0 auto;
        }

        .banner-img {
            width: 100vw;
            height: 100vh;
            background-position: right 80% top;
        }

        .logo-img {
            width: 75px;
            height: auto;
        }

        .banner-copy-centered {
            font-size: 2rem;
        }

        .arrow {
            left: 45.5%;
            bottom: 4%;
        }

    }

    @media only screen and (max-width: 414px) {

        header {
            padding: 1em 1em;
        }

        .fa {
            font-size: 36px!important;
        }

        .banner-img {
            width: 100vw;
            height: 100vh;
            background-position: right 76% top;
        }

        .banner-copy-centered {
            font-size: 1.6rem;
            width: 65%;
            top: 40%;
        }

        .img-margin-left,
        .img-margin-right {
            margin-top: 0;
            margin-right: 0;
            margin-bottom: 1em;
            margin-left: 0;
        }

        .banner-img,
        .card-img,
        .card-img-reverse,
        .card-text {
            margin-bottom: 3em;
        }

        .owl-buttons {
            bottom: 20%;
        }

        .card-form {
            margin: 3em auto 0;
        }

        .card-copy-portfolio {
            width: 80%;
            left: 14%;
        }  

        .testimonial-wrapper {
            margin-bottom: 3em;
        }

        .owl-buttons {
            bottom: 15%;
        }
        
        .owl-theme .owl-controls .owl-page span {
            width: 60px;
            height: 60px;
        }
    
        .owl-theme .owl-controls .owl-page span {
            width: 50px;
            height: 50px;
        }

        .portfolio-contain {
            margin-bottom: 3em;
        }

        .contact-form-section {
            margin: 3em auto;
        }

        textarea {
            height: 200px;
        }

        .card-text-contain-3col {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            font-size: 0.75rem;
            margin: 0 1em 0 1em;
        }
        
        .card-copy-3col,
        .contain-3col ul {
            font-size: 1rem;
        }

        .contain-3col {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start;
            width: 100%;
            margin-left: -0.90em;
        }
    }

    @media only screen and (max-width: 375px) {

        .banner-img {
            width: 100vw;
            height: 100vh;
            background-position: right 76% top;
        }
        .card-text {
            padding: 2em;
        }

        .card-copy-portfolio {
            font-size: 0.70rem;
            width: 80%;
            left: 14%;
            bottom: 7%;
        }  

        .card-text-contain-3col {
            width: 100%;
        }

        .contain-3col {
            width: 100%;
        }

        .card-copy-3col,
        .contain-3col ul {
            font-size: .90rem;
        }

    }

    @media only screen and (max-width: 360px) {

        .banner-img {
            width: 100vw;
            height: 100vh;
            background-position: right 74% top;
        }

        .banner-copy-centered {
            font-size: 1.4rem;
            width: 65%;
            top: 40%;
        }

        .owl-buttons {
            bottom: 12%;
        }

        .owl-theme .owl-controls .owl-page span {
            width: 40px;
            height: 40px;
        }

    }