/*colors
paletton.com palette: http://paletton.com/#uid=c5z2K0p3d0kj3qP8+HteevBnrmYrzh+
*/

.color1 {
  color: #404040;
}
.color2 {
  color: #125f8d;
}
.color3 {
  color: #db4457;
}
.color4 {
  color: rgb(247, 143, 48);
}
.colordk-blue {
  color: #00303f;
}
.bg-color2 {
  background-color: #125f8d;
}
.bg-color3 {
  background-color: #db4457;
}
.bg-color4 {
  background-color: #f78f30;
}
.bg-color5 {
  background-color: #cae4db;
}
.bg-color4a {
  background-color: #8fc33a;
}
.font1 {
  font-family: "Monserrat", sans-serif;
}
.font2 {
  font-family: "Open Sans", sans-serif;
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #404040;
  padding: 30px; /*this gives the entire page a white frame */
}
html {
  scroll-behavior: smooth; /*not supported in all browsers*/
}
h2,
h3,
h4,
h6,
a {
  /*if not cinzel add h3, h5 */
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  font-weight: 800;
  color: #404040;
}
h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 160%;
}
h5 {
  font-size: 130%;
}
h6 {
  font-size: 110%;
  font-family: "Open Sans", sans-serif;
}

.container {
  padding-top: 3%;
  padding-bottom: 2%;
}
/*LINES*/
.accent-line {
  width: 90%;
  opacity: 0.6;
  height: 1px;
}
.accent-line_30 {
  width: 30%;
  margin-left: auto;
  margin-right: auto;
}
.line-dotted {
  width: 50%;
  border-bottom: 5px dotted #f78f30;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  margin-top: 30px;
}
.line-orange-thick {
  width: 25%;
  border-bottom: 10px solid #f78f30;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  margin-top: 30px;
}
.line-color2 {
  border-bottom: 1px solid #125f8d;
}
.line-color3 {
  border-bottom: 1px solid #db4457;
}

.line-color4 {
  border-bottom: 1px solid #f78f30;
}
.line-color-dark {
  border-bottom: 1px solid #333;
  opacity: 0.6;
}
.line-color-light {
  border-bottom: 1px solid #fff;
}

.caps {
  text-transform: uppercase;
  font-weight: 600;
}

.btn-lpl {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
}
.btn-lpl:hover {
  opacity: 0.6;
  color: white;
}
.btn-lpl-outline {
  color: #4b6584;
  background-color: white;
  border-color: rgb(75, 101, 132);
  font-weight: 700;
}

.shadow {
  box-shadow: 5px 10px 6px -6px #777;
}

/**** HEADER ****/

#header {
  background-image: url("images/umbrellas-cropped-min.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  /* -o-background-size: cover; */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  /* height: 72vh; changed so that small tablets with portrait views look good on index page; changed to min-height to compensate for users who zoom*/
  min-height: 80vh;
  background-color: #333;
}
.jumbotron {
  border-radius: 0;
}

.hero-text {
  margin: 15vh 10%;
  border-radius: 4px 4px 4px 4px;
  padding: 5%;
  max-width: 800px;
}

.bg-gray-opaque {
  background-image: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.1)
  );
}
.top-banner {
  margin: 15vh 0% 0% 0%;
  padding: 2% 0%;
}
.secondary-pg-heading {
  margin: 15vh 8% 2% 8%;
  padding: 2% 2% 0 2%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
header img {
  margin-top: 20%;
}
.text-box {
  background-color: rgba(0, 0, 0, 0.6);
  background-image: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.2)
  );
}
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}
.navbar-toggler > .close {
  display: inline;
}
.navbar-toggler.collapsed > .close,
.navbar-toggler:not(.collapsed) > .navbar-toggler-icon {
  display: none;
}

/**** NAVIGATION ****/
nav {
  width: 100%; /*originally 80%*/
  margin: 0 auto;
  background: #fff;
  padding: 50px 0;
}

nav ul li a,
.navbar-brand {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #54585a;
  color: #404040;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 10px;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all 0.5s;
}
nav ul li a:hover {
  color: #4b6584;
  opacity: 1;
}

/* stroke */
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background-color: #4b6584;
  height: 1px;
}
nav.stroke ul li a:hover:after {
  width: 100%;
}

nav.fill ul li a {
  transition: all 2s;
}

nav.fill ul li a:after {
  text-align: left;
  content: ".";
  margin: 0;
  opacity: 0;
}
nav.fill ul li a:hover {
  color: #fff;
  z-index: 1;
}
nav.fill ul li a:hover:after {
  z-index: -10;
  -webkit-animation: fill 1s forwards;
  -moz-animation: fill 1s forwards;
  animation: fill 1s forwards;
  opacity: 1;
}
.ll-logo {
  width: 42px;
  height: 100%;
}

/*ANIMATIONS*/
.animate-appearGradual {
  -webkit-animation: appearGradual 2s ease;
  animation: appearGradual 2s ease;
}
@-webkit-keyframes appearGradual {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes appearGradual {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*Monitor animation*/
.icon-monitor {
  width: 95%;
}

@-webkit-keyframes makeAppear {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes makeAppear {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.squiggle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  -webkit-animation: makeAppear 3s linear forwards;
  animation: makeAppear 3s linear forwards;
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

/*Flippy Cards*/
.box {
  -moz-perspective: 150rem;
  -webkit-perspective: 150rem;
  perspective: 150rem;
  flex: 1;
  position: relative;
  margin: 2rem;
  height: 18rem;
}

.box-side {
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.8s ease-in;
  transition: all 0.8s ease-in;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding: 1.5rem;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}

.box-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background-color: white;
}

.box:hover .box-front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  cursor: pointer;
}

.box:hover .box-back {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  cursor: pointer;
}

.box h4 {
  text-transform: uppercase;
  text-align: center;
}

/*PROJECTS*/
/**Three Circles***/
.circle-row {
  /* margin: 2% 8% 2% 8%; */
  max-width: 1000px;
}
.circle-row a {
  text-decoration: none;
}
.circle {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  margin: 2rem;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  background-position: center;
  opacity: 1;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.circle1 {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.circle2 {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.circle3 {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.circle1:hover {
  background-image: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.2)
    ),
    url("images/mtv-camera.jpg");
  border: 4px solid rgba(219, 68, 87, 0.8);
  background-size: cover;
}
.circle2:hover {
  background-image: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.2)
    ),
    url("images/stg-nyc.jpg");
  border: 4px solid rgba(18, 95, 141, 0.8);
  background-size: cover;
}
.circle3:hover {
  background-image: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.2)
    ),
    url("images/streak-runners.jpg");
  border: 4px solid rgba(247, 143, 48, 0.8);
  background-size: cover;
}

.circle:hover {
  opacity: 0.8;
}
.text-border {
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

/**** SERVICES ****/

#services:target {
  padding-top: 60px;
}
.graph-paper {
  background-size: 30px 30px;
  background-image: linear-gradient(
      to right,
      rgb(213, 244, 240) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgb(213, 244, 240) 1px, transparent 1px);
}
.sketch {
  background-image: linear-gradient(
      to bottom right,
      rgba(219, 68, 87, 0.3),
      rgba(0, 0, 0, 0.1)
    ),
    url("images/in-motion-redesign2-min.JPG");
  background-position: center;
  background-size: cover;
}

/* .screen {
  background-image: linear-gradient(
      to bottom right,
      rgba(219, 68, 87, 0.8),
      rgba(0, 0, 0, 0.1)
    ),
    url("images/stg-all-devices-min.jpg");
  background-position: center;
  background-size: cover;
} */
.screen {
  background-image: linear-gradient(
      to bottom right,
      rgba(18, 95, 141, 0.3),
      rgba(0, 0, 0, 0.1)
    ),
    url("images/mtv-all-devices-min.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.workspace {
  background-image: linear-gradient(
      to bottom right,
      rgba(247, 143, 48, 0.3),
      rgba(0, 0, 0, 0.1)
    ),
    url("images/lukas-blazek-mcSDtbWXUZU-unsplash-sm-min.jpg");
  background-position: center;
  background-size: cover;
}
.service-details {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 4rem;
}
.service-details h2 {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

/**** PROJECT EXAMPLE PAGES ****/
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 50px;
  height: 50px;
}
.carousel-control-next-icon {
  background-image: url("images/_ionicons_svg_ios-arrow-forward.svg");
}
.carousel-control-prev-icon {
  background-image: url("images/_ionicons_svg_ios-arrow-back.svg");
}
.project-pg-quote {
  line-height: 1.4;
  font-weight: 4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#projects {
  margin-top: 100px;
}

.carousel-item img {
  height: 50vh;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.carousel-caption {
  position: relative;
  right: 0;
  left: 0;
  margin-top: 10px;
}
.carousel-indicators li {
  background-color: #404040;
  opacity: 0.8;
}
.carousel-indicators .active {
  background-color: #404040;
  opacity: 0.4;
}

.parallax {
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mtv-splash {
  /* Set a specific height */
  height: 68vh;
  /* The image used in parallax*/
  background-image: linear-gradient(rgba(18, 95, 141, 0.5), rgba(0, 0, 0, 0.3)),
    url("images/seth-doyle-78214-right-min.jpg");
  /* background-image: url('images/seth-doyle-78214-right-min.jpg'); */
}

.sri-usrsa-splash {
  /* Set a specific height */
  height: 70vh;
  /* The image used in parallax*/
  background-image: url("images/city-marathon-cropped.jpg");
}
.stg-splash {
  /* Set a specific height */
  height: 70vh;
  /* The image used in parallax*/
  background-image: url("images/stg-splash.jpg");
  background-position: top center;
}
.stg-splash .parallax {
  background-position: top center;
}
.project-client {
  font-size: 2.5rem;
  letter-spacing: 1px;
}
#project-backlink {
  margin-top: 80px;
  margin-bottom: 20px;
}
#project-backlink a {
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
}
/**** TESTIMONIALS ****/
#testimonials .container {
  padding-left: 2px;
  padding-right: 2px;
}

#testimonials {
  /*background-color: white;
   margin-top: 10vh;*/
  padding: 0.5rem 0;
  margin-left: 5%;
  margin-right: 5%;
}
.quote {
  font-size: 120%;
  line-height: 1.1;
  margin-bottom: 15px;
}
.t-long-text {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 0;
}

/**** CONTACT ****/
#contact {
  padding: 3rem 0;
  background-color: #125f8d;
  color: white;
}
.contact-alert {
  width: 90%;
  margin-top: 60px;
  margin-bottom: 60px;
  color: #125f8d;
  background-color: #cae4db;

  background-color: #cae4db;
}
input[type="submit"] {
  border: 0;
  height: 40px;
}

/**** CONTACT ****/
/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
  #header {
    background-attachment: scroll;
  }
}
@media (max-width: 1050px) {
  .box {
    height: 21rem;
  }
}

@media (max-width: 991.98px) {
  #navigation-bar .nav-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .circle {
    margin: 20px;
  }
}
@media (max-width: 890px) {
  body {
    padding: 10px;
  }
  .circle {
    width: 14rem;
    height: 14rem;
    margin: 10px;
  }
  .circle h3 {
    font-size: 1.75rem;
  }
  .contact-form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .box {
    height: 19rem;
    margin-bottom: 50px;
  }
  #project-backlink {
    margin-top: 110px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  nav {
    width: 100%;
  }
  body {
    padding: 0px;
  }
  .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  nav.stroke ul li a:after,
  nav.fill ul li a:after {
    background-color: transparent;
    height: 0px;
  }

  .circle {
    width: 16rem;
    height: 16rem;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  /* .circle1 {
    background-image: linear-gradient(to bottom right,rgba(0, 0, 0, .7), rgba(0,0,0, .2)), url('images/mtv-camera.jpg');
    border: 4px solid rgba(219, 68, 87, .8);
    background-size: cover;
   
   }
   .circle2 {
     background-image: linear-gradient(to bottom right,rgba(0, 0, 0, .7), rgba(0,0,0, .2)), url('images/stg-nyc.jpg');
     border: 4px solid rgba(18, 95, 141, .8);
     background-size: cover;
    
   }
   .circle3 {
     background-image: linear-gradient(to bottom right,rgba(0, 0, 0, .7), rgba(0,0,0, .2)), url('images/streak-runners.jpg');
     border: 4px solid rgba(247, 143, 48, .8);
     background-size: cover;
   }
   .circle:hover {
     opacity: .9;
   }  */
}
/* 
@media (max-height: 600px) {
  #header {
    height: 80vh;
  }
} */

@media (max-width: 600px) {
  .box {
    margin: 2rem 0.5rem;
  }
  .carousel-item img {
    height: auto;
    width: 95%;
  }
  .carousel-indicators {
    margin-left: 10%;
    margin-right: 10%;
  }
}
@media (max-width: 575.98px) {
  .icon-monitor {
    width: 55%;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3%;
    margin-bottom: 3%;
  }
  .secondary-pg-heading {
    margin-left: 3%;
    margin-right: 3%;
    padding-top: 30px;
  }
  .secondary-pg-heading h1 {
    text-align: center;
    margin-top: 2rem;
  }
  .secondary-pg-heading h5 {
    width: 100%;
  }
  .service-details .accent-line {
    margin-left: auto;
    margin-right: auto;
  }
  .service-details a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 165px;
  }
  .service-details h3 {
    text-align: center;
  }
  .project-client {
    font-size: 2rem;
  }
  .navbar-brand {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .box {
    height: 19rem;
  }
  #sri-usrsa-h3 {
    padding-left: 3%;
    padding-right: 3%;
    font-size: 2rem;
  }

  .service-details {
    padding: 3rem 2rem;
  }
  .service-details h2 {
    text-align: center;
  }
  .navbar-brand {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 14px;
  }
  .ll-logo {
    width: 24px;
  }
}
@media (max-width: 425px) {
  .t-long-text {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .hide-on-mobile {
    display: none;
  }
}
@media (max-width: 400px) {
  body {
    padding: 0px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  .hero-text {
    padding: 5%;
  }
  h5 {
    font-size: 1rem;
    /* padding-left: .5rem;
      padding-right: .5rem; */
  }
  .box {
    height: 23rem;
  }
  .box-side {
    padding: 1.5rem;
  }
  .quote {
    font-size: 110%;
  }
  .circle {
    width: 14rem;
    height: 14rem;
  }
}

@media (max-width: 350px) {
  .service-details {
    padding: 2.5rem 1rem;
  }
}
