/* Rubik 400  */
@font-face {
  font-family: "Rubik-400";
  src: url("../third-party/fonts/google-fonts/Rubik/Rubik-Light.woff2");
  src: url("../third-party/fonts/google-fonts/Rubik/Rubik-Light.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Rubik Bold 700  */
@font-face {
  font-family: "Rubik-Bold-700";
  src: url("../third-party/fonts/google-fonts/Rubik/Rubik-Bold.woff2");
  src: url("../third-party/fonts/google-fonts/Rubik/Rubik-Bold.ttf") format('truetype');
  font-weight: 700;
  font-style: bold;
}

/*  Rubik Bold 600 */
@font-face {
  font-family: "Rubik-Bold-600";
  src: url("../third-party/fonts/google-fonts/Rubik/Rubik-Bold.woff2");
  src: url("../third-party/fonts/google-fonts/Rubik/Rubik-Bold.ttf") format('truetype');
  font-weight: 600;
  font-style: bold;
}

/* OpenSans 400 */
@font-face {
  font-family: "OpenSans-400";
  src: url("../third-party/fonts/google-fonts/Open_Sans/OpenSans-Regular.woff2");
  src: url("../third-party/fonts/google-fonts/Open_Sans/OpenSans-Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* OpenSans Bold   */
@font-face {
  font-family: "OpenSans-Bold";
  src: url("../third-party/fonts/google-fonts/Open_Sans/OpenSans-Bold.woff2");
  src: url("../third-party/fonts/google-fonts/Open_Sans/OpenSans-Bold.ttf") format('truetype');
  font-style: normal;
}

html {
  font-size: 1em;
  color: #333333;
}

/* -- global selector starts here -- */
.contact-link {
  font-family: 'Rubik-400', sans-serif;
  color: #663300;
}


.header-bg {
  border-bottom: 1px solid #6b6b6b;
  background-color: #777777;
}

.header-title {
  font-family: 'OpenSans-400';
  color: #ffffff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-shadow: 1px 1px #000000;
}

h2.section-title {
  font-size: 1.8rem;
  font-family: 'Rubik-Bold-600';
  color: #663300;
  font-weight: 900;
  margin-top: 1rem;
}

p.section-paragraph-light {
  font-family: 'OpenSans-400';
  color: #797979;
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
}
p.section-paragraph-dark {
  font-family: 'OpenSans-400';
  color: #585858;
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
}

div.section-container {
  width: 95%;
}
div.section-container-lg {
  width: 95%;
}
div.wrapper-sm {
  min-width: 320px;
}
div.wrapper-lg {
  width: 800px;
}
a.btn-call {
  background-color: #ffffff;
  border: 4px solid #663300;
  border-radius: 8px;
  box-shadow: 2px 2px 3px #464343;
  height: 3.2em;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 0.6em;
  margin-left: 0.6em;
  font-size: 1.3em;
  text-decoration: none;
  font-family: 'Rubik-Bold-600';
  width: 260px;
  color: #663300;
}
a.btn-call:hover {
  color: #ffffff;
  background-color: #663300;
  transition: 0.3s;
}


/* -- global selector ends here */

#homepage_section1 {
  overflow: hidden;
  height: fit-content;
  min-height: 100px;
  max-height: 600px;
}

#homepage_section1 video {
  width: 100%;
  min-height: 100px;
  max-height: 600px;
  object-fit: cover
}

.homepage-section1-header {
  font-size: 3.5em;
}

.homepage-section1-paragraph {
  font-size: 1.5em;
  padding-right: 4em;
  padding-left: 4em;
}

.content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  font-family: "Rubik-Bold-700";
  font-size: 4.3em;
  line-height: 68px;
  text-align: center;
  color: #4b2600;
  text-shadow: 1px 1px 2px #ffffff;
}

.content__container {
  overflow: hidden;
  height: 1.1em;
}

.content__container:after,
.content__container:before {
  position: absolute;
  top: 0;
  color: #16a085;
  line-height: 80px;
  -webkit-animation-name: opacity;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: opacity;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.content__container__text {
  display: inline;
  float: left;
  margin: 0;
}

.content__container__list {
  margin-top: 0;
  padding-left: 0em;
  text-align: left;
  list-style: none;
  text-align: center;
  text-shadow: 1px 1px 1px #000000;
  color: #ffffff;
  -webkit-animation-name: change;
  -webkit-animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-name: change;
  animation-duration: 40s;
  animation-iteration-count: infinite;
}

.content__container__list__item {
  line-height: 1.5em;
  font-size: 0.7em;
  margin: 0;
}

@-webkit-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -4.5rem, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -9rem, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -13.5rem, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -18rem, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -22.5rem, 0);
  }
}

@-o-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-o-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -4.5rem, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -9rem, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -13.5rem, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -18rem, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -22.5rem, 0);
  }
}

@-moz-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-moz-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -4.5rem, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -9rem, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -13.5rem, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -18rem, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -22.5rem, 0);
  }
}

@keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -4.5rem, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -9rem, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -13.5rem, 0);
  }
  66.64%,
  79.3% {
    transform: translate3d(0, -18rem, 0);
  }
  83.3%,
  95.96% {
    transform: translate3d(0, -22.5rem, 0);
  }
}

.content_mobile {
  position: relative;
  bottom: 78%;
  overflow: hidden;
}

.content_mobile p {
  font-family: "Rubik-Bold-700";
  text-align: center;
  color: #4b2600;
  text-shadow: 1px 1px 2px #ffffff;
  margin-bottom: 0;
}

.content__container__list_mobile {
  padding: 0;
  margin: 0;
}

.content__container_mobile li {
  list-style: none;
  font-family: "Rubik-Bold-700";
  text-align: center;
  color: #4b2600;
  text-shadow: 1px 1px 2px #ffffff;
}

#homepage_section2 {
  background-color: #eeeeee33;
  border-top: #bbbbbb 1px solid;
  border-bottom: 1px solid #bbbbbb;
  color: #777777;
  letter-spacing: 0.1em;
  font-family: 'OpenSans-400';
  font-size: 1.2rem;
}

#homepage_section2 .carousel {
  display: block;
  margin: auto;
  width: 80%;
}

#homepage_section2 .carousel-item {
  transition: transform 3s ease-in-out, opacity 1s ease-out;
}

#homepage_section2 p {
  margin-bottom: 8px;
  padding: 0px;
}

#homepage_section2 img {
  max-height: 3.5em;
}

#homepage_section2_mobile {
  background-color: #eeeeee33;
  border-top: #bbbbbb 1px solid;
  border-bottom: 1px solid #bbbbbb;
  color: #777777;
  letter-spacing: 0.1em;
  font-family: 'OpenSans-400';
  font-size: 1.2rem;
}

#homepage_section2_mobile .carousel {
  display: block;
  margin: auto;
  width: 95%;
}

#homepage_section2_mobile .carousel-item {
  transition: transform 3s ease-in-out, opacity 1s ease-out;
}

#homepage_section2_mobile p {
  margin-bottom: 8px;
  padding: 0px;
}

#homepage_section2_mobile img {
  height: 2em;
}

#homepage_section3 {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 40px;
  padding-bottom: 5px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 45px;
}

#homepage_section3 h1 {
  font-family: 'Rubik-Bold-700';
  color: #4f1a00;
  ;
  font-size: 3.5em;
  letter-spacing: 0.1rem;
  text-shadow: 1px 1px 0.5px #000000;
  padding-bottom: 0.3rem;
}

#homepage_section3 .card {
  min-width: 395px;
  max-width: 700px;
  border-radius: 10px;
  cursor: pointer;
  transition: .3s;
}

#homepage_section3 .card:hover {
  transform: scale(1.04);
}

#homepage_section3 .card-img-top {
  max-height: 200px;
  width: auto;
  margin: auto;
}

#homepage_section3 h2.card-title {
  margin-top: 0.3em;
  font-family: 'Rubik-Bold-700';
  color: #777777;
  ;
  font-size: 2.2em;
  text-shadow: 1px 1px 2px #cccccc;
}

#homepage_section3 .card-text {
  font-size: 1.2em;
  color: #222222;
  letter-spacing: 0.1rem;
  overflow: hidden;
}

#homepage_section3 p {
  font-family: 'OpenSans-400';
  color: #333333;
  font-size: 1.5em;
  letter-spacing: 0.1em;
}

#homepage_section3 .btn-secondary {
  font-family: 'OpenSans-400';
  font-size: 1.5em;
  text-shadow: 1px 1px 2px #000000;
  border: #f1a10d 4px solid;
  background-color: #ffaa00;
  border-radius: 5px;
  color: #ffffff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  letter-spacing: 0.1px;
}

#homepage_section3 .btn-secondary:hover {
  background-color: #f1a10d;
  color: #ffffff;
}

#homepage_section3 .btn-primary {
  font-family: 'OpenSans-400';
  font-size: 1.5em;
  text-shadow: 1px 1px 2px #000000;
  border: #3269b1 4px solid;
  background-color: #5277ee;
  border-radius: 5px;
  color: #ffffff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  letter-spacing: 0.1px;
}

#homepage_section3 .btn-primary:hover {
  background-color: #3269b1;
  color: #ffffff;
}

#homepage_section4 .carousel-item p {
  font-family: 'Rubik-Bold-700';
  line-height: 1.1em;
  user-select: none;
}

#homepage_section4 .carousel-img {
  height: 75vh;
  object-fit: fill;
}

.homepage-section4-header {
  font-size: 3.7em;
}

#homepage_section4 .carousel-item .homepage-section4-paragraph {
  font-size: 2em;
  letter-spacing: 0.1rem;
  line-height: 1.2em;
}

#homepage_section4 .carousel-item .first-slide-text {
  position: absolute;
  top: 6em;
  left: 5em;
  color: #ffffff;
  text-shadow: 1px 1px 4px #000000;
}

#homepage_section4 .carousel-item .second-slide-text {
  position: absolute;
  top: 4em;
  left: 6em;
  color: #4f1a00;
  text-shadow: 1px 1px 2px #ffffff;
}

#homepage_section4 .carousel-item .second-slide-text .homepage-section4-header {
  font-size: 3.9em;
}

#homepage_section4 .carousel-item .third-slide-text {
  position: absolute;
  top: 5.2em;
  right: 4.7em;
  color: #ffffff;
  text-shadow: 1px 1px 4px #000000;
}

#homepage_section4 .carousel-item .third-slide-text .homepage-section4-header {
  font-size: 3.9em;
}

#homepage_section4 .carousel-item .fourth-slide-text {
  position: absolute;
  top: 0;
  left: 10em;
  color: #4f1a00;
  text-shadow: 1px 1px 2px #ffffff;
}

#homepage_section4 .carousel-item .fourth-slide-text .homepage-section4-header {
  font-size: 3.4em;
  line-height: 1.3em;
  letter-spacing: 0.1rem;
}

#homepage_section4 .carousel-item .fifth-slide-text {
  position: absolute;
  top: 7em;
  left: 6em;
  color: #4f1a00;
  text-shadow: 2px 2px 1px #8b8a8a;
}

#homepage_section4 .carousel-item .fifth-slide-text .homepage-section4-header {
  line-height: 1.2em;
}

#homepage_section4 .btn-info {
  background-color: #ffaa00;
  border: #ee9900 4px solid;
  font-family: 'Rubik-Bold-700';
  font-size: 1.4em;
  text-shadow: 1px 1px 2px #000000;
  border-radius: 5px;
  letter-spacing: 0.1px;
}

#homepage_section4 .btn-info:hover {
  background-color: #ee9900;
}

#homepage_section4 .carousel-nav-btn {
  color: #ffffff;
  padding: 0px;
  margin: 0px;
  font-style: bold;
  font-family: 'Rubik-400';
  font-size: 3.8rem;
  line-height: 2.6rem;
  text-shadow: 2px 2px #000000;
}

#homepage_section4 #btn-carousel {
  border: #170b00 3px solid;
  border-radius: 0.2em;
  background: #663300;
  color: #ffffff;
}

#what_we_do_header {
  border-bottom: 1px solid #6b6b6b;
  background-color: #777777;
}

#what_we_do_header>h1 {
  font-family: 'OpenSans-400';
  color: #ffffff;
  font-size: 2em;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-shadow: 2px 2px #000000;
}

#what_we_do_section1 h2 {
  font-family: 'Rubik-Bold-600';
  color: #663300;
  font-size: 2.6em;
  margin-bottom: 1.7em;
  font-weight: 900;
}

#what_we_do_section1 .aws-link {
  color: #1c4587;
  font-weight: bold;
}

#what_we_do_section1 p,
#what_we_do_section1 li {
  font-family: 'OpenSans-400';
  font-size: 1.2em;
}

#what_we_do_section1 li {
  margin: 0.2em 0;
}

#what_we_do_section1 ul {
  margin-top: 3.8em;
}

#what_we_do_section1 .aws-icons-background {
  background-image: url("../images/animations/animated-orange-blob.gif");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 640px 460px;
  margin: auto;
  width: 100%;
}

#what_we_do_section1 .aws-content {
  max-width: 40em;
}

#what_we_do_section1 .aws-icons-background-mobile {
  background-image: url("../images/animations/animated-orange-blob.gif");
  background-size: 350px 600px;
  background-repeat: no-repeat;
  background-position: center 100%;
}

#what_we_do_section1 .row-top {
  height: 5.8em;
}

#what_we_do_section1 .row-bottom {
  height: 10.8em;
}

#what_we_do_section1 .aws-icons-row {
  margin: 0.9em auto;
  display: block;
}

#what_we_do_section1 .aws-icon-tile {
  width: 5rem;
  height: 5rem;
  background-color: #ffffff;
  border: 1px solid #595959;
  border-radius: 5px;
  box-shadow: 2px 2px 3px #464343;
  overflow: hidden;
  position: relative;
  user-select: none;
}


#what_we_do_section1 .aws-icon-tile img {
  padding-bottom: 0em;
  margin-bottom: 0em;
  margin-top: 0.3rem;
}

#what_we_do_section1 .aws-icon-tile p {
  padding-top: 0em;
  margin-top: 0em;
  color: #e07800;
  font-size: 0.7rem;
  font-weight: bold;
}


.wwd-buttons .button-learn-more {
  background-color: #0362dd;
  border: 4px solid #023579;
  border-radius: 8px;
  box-shadow: 2px 2px 3px #464343;
  height: 3.2em;
  margin-left: 0.6em;
  margin-right: 0.6em;
  font-size: 1.3em;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Rubik-Bold-600';
  width: 260px;
}

.wwd-buttons-mobile {
  margin-top: 1em;
}

.wwd-buttons-mobile .button-learn-more {
  background-color: #0362dd;
  border: 4px solid #023579;
  border-radius: 8px;
  box-shadow: 2px 2px 3px #464343;
  height: 3em;
  font-size: 1.3em;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Rubik-Bold-600';
  width: 280px;
  margin-bottom: 0.5em;
}

.wwd-buttons .button-learn-more:hover,
.wwd-buttons-mobile .button-learn-more:hover {
  background-color: #023579;
  transition: 0.3s;
  color: #ffffff;
}

.wwd-buttons .button-call {
  background-color: #ffffff;
  border: 4px solid #663300;
  border-radius: 8px;
  box-shadow: 2px 2px 3px #464343;
  height: 3.2em;
  margin-right: 0.6em;
  margin-left: 0.6em;
  font-size: 1.3em;
  text-decoration: none;
  font-family: 'Rubik-Bold-600';
  width: 260px;
  color: #663300;
}

.wwd-buttons-mobile .button-call {
  background-color: #ffffff;
  border: 4px solid #663300;
  border-radius: 8px;
  box-shadow: 2px 2px 3px #464343;
  height: 3em;
  font-size: 1.3em;
  text-decoration: none;
  font-family: 'Rubik-Bold-600';
  color: #663300;
  width: 280px;
}

.wwd-buttons .button-call:hover,
.wwd-buttons-mobile .button-call:hover {
  color: #ffffff;
  background-color: #663300;
  transition: 0.3s;
}

#what_we_do_section1 .aws-icons-mobile>img {
  width: 100%;
}

#what_we_do_section1 .aws-icons-mobile .aws-icon-tile {
  width: 4.7rem;
  height: 4.7rem;
}

#what_we_do_section1 .aws-icons-mobile p {
  font-size: 0.68rem;
}

#what_we_do_section1 .aws-text-list {
  font-size: 1.1em;
}

#what_we_do_section2 {
  width: 80%;
}

#what_we_do_section2 .video-container-lg {
  height: 35em;
}

#what_we_do_section2 .col {
  margin: 0em;
  padding: 0em;
}

#what_we_do_section2 p {
  font-family: 'OpenSans-400';
  color: #333333;
  font-size: 1.4rem;
}

#what_we_do_section2 h2 {
  font-family: 'Rubik-Bold-600';
  color: #663300;
}

#what_we_do_section2 p.section-paragraph {
  font-family: 'OpenSans-Bold';
  color: #000000;
  font-size: 2.2rem;
}

#what_we_do_section2 .slide-in-list,
#what_we_do_section2 .slide-in-list-mobile {
  margin-top: 1rem;
  margin-bottom: 3rem;
  list-style: none;
}

#what_we_do_section2 .slide-in-ul li {
  font-family: 'OpenSans-400';
  color: #1c4587;
  font-weight: 900;
  font-size: 1.4rem;
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

#what_we_do_section2 .slide-in-ul-mobile li {
  font-family: 'OpenSans-400';
  color: #1c4587;
  font-weight: 900;
  font-size: 1.4rem;
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}


/* ------  Section 2 animations starts here ---------*/
#what_we_do_section2 #section2_video,
#what_we_do_section2 #section2_video_mobile {
  visibility: hidden;
}




.focus {
  animation-name: focus;
  animation-duration: 1s;
  -webkit-animation-name: focus;
  -webkit-animation-duration: 1s;
}

@keyframes focus {
  from {
    transform: scale(3.5);
  }
  to {
    transform: scale(1);
  }
}

.fadeInFocus {
  animation-name: fadeInFocus;
  animation-duration: 3s;
  -webkit-animation-name: fadeInFocus;
  -webkit-animation-duration: 3s;
}

@keyframes fadeInFocus {
  from {
    transform: scale(3.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 3s;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 100;
  }
}

#what_we_do_section2 .slide-in-container {
  position: absolute;
  overflow: hidden;
}

#what_we_do_section2 .slide-in-paragraph {
  position: relative;
}

#what_we_do_section2 #section2_paragraph,
#what_we_do_section2 #section2_paragraph_mobile {
  visibility: hidden;
}

.slide-in-left {
  animation: slide-in-left 0.8s reverse;
  -webkit-animation: slide-in-left 0.8s reverse;
}

@keyframes slide-in-left {
  100% {
    transform: translateX(100%);
  }
}

#what_we_do_section2 .slide-in-list,
#what_we_do_section2 .slide-in-list-mobile {
  visibility: hidden;
}

.slide-in-right {
  /* Work in prgoress */
}


#what_we_do_section2 #section2_buttons,
#what_we_do_section2 #section2_buttons_mobile {
  visibility: hidden;
}

/* ------  Section 2 animations ends here ---------*/

#what_we_do_section3 {
  width: 95%;
  margin-top: 10em;
  margin-bottom: 12em;
}

#what_we_do_section3 h2 {
  font-family: 'Rubik-Bold-600';
  color: #663300;
  font-size: 2.6em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5em;
}

#what_we_do_section3 p {
  font-family: 'OpenSans-Bold';
  font-size: 1.2rem;
  color: #000000;
  text-align: center;
}

#what_we_do_section3>.img-container {
  margin-top: 3.5em;
  margin-bottom: 3.5em;
}

#what_we_do_section3>.img-container-mobile {
  margin-top: 3.5em;
  max-width: 28em;
}

#what_we_do_section3>.img-container-mobile .section3-img {
  visibility: hidden;
}

#what_we_do_section3 .img-container .section3-img {
  visibility: hidden;
}

#what_we_do_section3_buttons {
  visibility: hidden;
}

#what_we_do_section3_buttons_mobile {
  visibility: hidden;
}


#what_we_do_section3 .solutions-ul {
  font-family: 'OpenSans-400';
  color: #797979;
  list-style: none;
  font-size: 1.6rem;
  text-align: center;
  padding: 0em;
  margin-top: 1em;
  margin-bottom: 1.8em;
}

#what_we_do_section3 .bullet-point {
  font-size: 2.5rem;
  position: relative;
  top: 0.4rem
}

#what_we_do_section3 .img-container>div {
  max-width: 22em;
}

#what_we_do_section3 .img-container-mobile>div {
  margin-bottom: 3.5rem;
}

#what_we_do_section3 .wwd-buttons {
  width: 100%;
  margin-bottom: 2.5rem;
}

#what_we_do_section4 {
  margin-bottom: 4em;
}
#what_we_do_section4 #section4_image {
  visibility: hidden;
}

#what_we_do_section4 h2 {
  font-family: 'Rubik-Bold-600';
  color: #663300;
  font-size: 2.6em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5em;
}

#what_we_do_section4 p {
  font-family: 'OpenSans-Bold';
  font-size: 1.2rem;
  color: #000000;
  text-align: center;
}
#what_we_do_section4 .section4-container {
  width: 95%;
}

#what_we_do_section4 p.skills-paragraph {
  font-family: 'OpenSans-400';
  font-size: 1.2rem;
  text-align: start;
}


#what_we_do_section4_images {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#what_we_do_section4_images_mobile>.img-container {
  margin-bottom: 0.3rem;

}

#btmbanner {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  background-color: #777777;

}

#btmbanner p {
  font-family: 'OpenSans-400';
  color: #ffffff;
  font-size: 1.8em;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px #000000;
}

.footer table {
  font-family: 'OpenSans-400';
  font-size: 1.0rem;
  background: #444444;
  color: #bbbbbb;
  border: 0;
}

.footer .title {
  font-family: 'OpenSans-400';
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 0.1rem;
}

.footer .lnk {
  color: #cccccc;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 1.2px;
  padding: 2px;
}

.footer a {
  font-size: 0.9em;
  font-weight: lighter;
  font-family: 'OpenSans-400';
  color: #bbbbbb;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .txt {
  letter-spacing: 0.1em;
}

.footer .txt2 {
  font-size: 0.9em;

}

.footermobile {
  margin: 0 auto;
  text-align: center;
  background-color: #444444;
  font-family: 'OpenSans-400';
  color: #bbbbbb;

}

.footermobile .title {
  font-family: 'OpenSans-400';
  font-size: 1.2em;
  font-weight: 900;
}

.footermobile a {
  font-size: 0.9em;
  font-weight: lighter;
  font-family: 'OpenSans-400';
  color: #bbbbbb;
  text-decoration: none;
}

.footermobile a:hover {
  text-decoration: underline;
}

.footermobile .lnk {
  color: #cccccc;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 2px;
}

.footermobile .contact {
  color: #cccccc;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 10px;
}

.footermobile .contact:hover {
  color: #ededed;
  text-decoration: underline;
}

/* sticky nav */
.dantech-navbar {
  background: #663300;
  border-top: #4f2700 2px solid;
  border-bottom: #4f2700 2px solid;
  z-index: 3;
}

.dantech-navbar.sticky {
  width: 100%;
  top: 0;
  z-index: 3;
}

/* logo disappears at 130 */

#hover_link {
  color: white;
  text-shadow: 2px 2px 3px #000000;
}

#hover_link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #cccccc;
  text-underline-offset: 3px;
  text-underline-position: under;
}

#hover_link.active {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #cccccc;
  text-underline-offset: 3px;
  text-underline-position: under;
}

#privacy_policy_section1 .policy-container,
#terms_of_use_section1 .terms-container {
  position: relative;
  top: -1.3em;
}

#privacy_policy_section1 .header,
#terms_of_use_section1 .header {
  font-family: 'OpenSans-Bold';
  color: #663300;
  ;
  font-size: 2.2em;
  text-shadow: 1px 1px 1px #9b9292;
  padding-bottom: 0.3rem;
}

#privacy_policy_section1 .updated-date,
#terms_of_use_section1 .updated-date {
  margin-top: 0.3em;
  font-family: 'OpenSans-Bold';
  font-size: 1.1em;
  color: #777777;
}

#privacy_policy_section1 .policy-container h3,
#terms_of_use_section1 .terms-container h3 {
  font-family: 'OpenSans-Bold';
  color: #464343;
  font-size: 1.4em;
  letter-spacing: 0.1rem;
  margin-top: 2.2em;
  margin-bottom: 0.9em;
}

#privacy_policy_section1 .policy-container p,
#terms_of_use_section1 .terms-container p {
  font-family: 'OpenSans-400';
  color: #333333;
  ;
  font-size: 1em;
  letter-spacing: 0.1rem;
}

#terms_of_use_section1 p.rules-header {
  font-family: 'OpenSans-Bold';
  color: #464343;
  font-size: 1.2em;
  letter-spacing: 0.1rem;
  margin-top: 0em;
  padding-left: 1em;
}

#terms_of_use_section1 .rules-list li {
  font-family: 'OpenSans-400';
  color: #333333;
  ;
  font-size: 1em;
  letter-spacing: 0.1rem;
  list-style: '- ';
  margin-bottom: 1em;
}

#terms_of_use_section1 p.no-bullet {
  font-family: 'OpenSans-400';
  color: #333333;
  ;
  font-size: 1em;
  letter-spacing: 0.1em;
  padding-left: 1.3em;
  margin-top: 1.4em;
}


/* Extra small devices (phones, 576px and down) */
@media only screen and (max-width: 576px) {
  #homepage_section1 {
    height: 52vw;
  }

  .content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    font-family: "Rubik-Bold-700";
    font-size: 1em;
    line-height: 10px;
    text-align: center;
    color: #4b2600;
    text-shadow: 1px 1px 2px #ffffff;
    width: 100%;
  }

  .content p {
    margin-bottom: 0.3em;
  }

  .content__container {
    overflow: hidden;
    height: 1em;
  }

  .content__container:after,
  .content__container:before {
    position: absolute;
    top: 0;
    line-height: 80px;
    -webkit-animation-name: opacity;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-name: opacity;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }

  .content__container__text {
    display: inline;
    float: left;
    margin: 0;
  }

  .content__container__list {
    margin-top: 0;
    padding-left: 0em;
    text-align: left;
    list-style: none;
    text-align: center;
    text-shadow: 1px 1px 1px #000000;
    color: #ffffff;
    -webkit-animation-name: change;
    -webkit-animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 40s;
    animation-iteration-count: infinite;
  }

  .content__container__list__item {
    line-height: 1.5em;
    font-size: 0.7em;
    margin: 0;
  }

  @-webkit-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-webkit-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -1.08rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -2.16rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -3.24rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -4.32rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -5.4rem, 0);
    }
  }

  @-o-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-o-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -1.08rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -2.16rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -3.24rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -4.32rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -5.4rem, 0);
    }
  }

  @-moz-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-moz-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -1.08rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -2.16rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -3.24rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -4.32rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -5.4rem, 0);
    }
  }

  @keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -1.08rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -2.16rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -3.24rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -4.32rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -5.4rem, 0);
    }
  }

  .content_mobile p {
    font-size: 1.2em;
  }

  .content__container_mobile li {
    font-size: 1.2em;
  }

  #homepage_section3 {
    padding-top: 0;
  }

  #homepage_section3 .card {
    min-width: 300px;
  }

  #homepage_section3 h1 {
    font-size: 1.5em;
  }

  #homepage_section3 p {
    font-size: 1em;
  }

  #homepage_section3 h2.card-title {
    font-size: 2.2em;
  }

  #homepage_section3 .card-text {
    font-size: 1em;
    height: auto;
  }

  #what_we_do_section1 .aws-icons-mobile .aws-icon-tile {
    width: 4.7rem;
    height: 4.7rem;
  }

  #what_we_do_section1 .aws-icons-mobile p {
    font-size: 0.68rem;
  }

  #what_we_do_section1 .aws-text-list {
    font-size: 1.1em;
  }

  #what_we_do_section2 {
    margin-top: 5em;
    margin-bottom: 5em;
    width: 95%;
  }

  #what_we_do_section1 h2,
  #what_we_do_section2 h2 {
    font-size: 2.6em;
  }

  #what_we_do_section2 p.section-paragraph {
    font-size: 1.2rem;
  }

  #btmbanner p {
    font-size: 1.1em;
    text-shadow: 1px 1px 2px #000000;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) {

  div.wrapper-sm {
    max-width: 100%;
  }

  .content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    font-family: "Rubik-Bold-700";
    font-size: 1.5em;
    line-height: 22px;
    text-align: center;
    color: #4b2600;
    text-shadow: 1px 1px 2px #ffffff;
    width: 100%;
  }

  .content p {
    margin-bottom: 0.2em;
  }

  .content__container {
    overflow: hidden;
    height: 1.2em;
  }

  .content__container:after,
  .content__container:before {
    position: absolute;
    top: 0;
    line-height: 80px;
    -webkit-animation-name: opacity;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-name: opacity;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }

  .content__container__text {
    display: inline;
    float: left;
    margin: 0;
  }

  .content__container__list {
    margin-top: 0;
    padding-left: 0em;
    text-align: left;
    list-style: none;
    text-align: center;
    text-shadow: 1px 1px 1px #000000;
    color: #ffffff;
    -webkit-animation-name: change;
    -webkit-animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 40s;
    animation-iteration-count: infinite;
  }

  .content__container__list__item {
    line-height: 1.5em;
    font-size: 1.2rem;
    margin: 0;
  }

  @-webkit-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-webkit-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -1.8rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -3.6rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -5.4rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -7.2rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -9rem, 0);
    }
  }

  @-o-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-o-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -1.8rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -3.6rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -5.4rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -7.2rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -9rem, 0);
    }
  }

  @-moz-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-moz-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -1.8rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -3.6rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -5.4rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -7.2rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -9rem, 0);
    }
  }

  @keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -1.8rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -3.6rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -5.4rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -7.2rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -9rem, 0);
    }
  }

  .content_mobile p {
    font-size: 1.5em;
  }

  .content__container_mobile li {
    font-size: 1.5em;
  }

  #homepage_section1 {
    height: 52vw;
  }

  #homepage_section3 .card {
    min-width: 150px;
  }

  #homepage_section3 h1 {
    font-size: 1.5em;
  }

  #homepage_section3 p {
    font-size: 1.2em;
  }

  #homepage_section3 h2.card-title {
    font-size: 2.2em;
  }

  #homepage_section3 .card-text {
    font-size: 1em;
    height: auto;
  }

  #what_we_do_section1 .aws-icons-background-mobile {
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: 480px 600px;
  }

  #what_we_do_section1 .aws-icons-mobile .aws-icon-tile {
    width: 5.2rem;
    height: 5.2rem;
  }

  #what_we_do_section1 .aws-icons-mobile {
    width: 75%;
    margin: auto
  }

  #what_we_do_section1 h2,
  #what_we_do_section2 h2 {
    margin-top: 1em;
    font-size: 2.8rem;
  }

  #what_we_do_section1 .aws-icons-mobile p {
    font-size: 0.68rem;
  }

  #what_we_do_section1 .aws-text-list {
    font-size: 1.1em;
  }

  .wwd-buttons-mobile {
    width: 75%;
  }

  #what_we_do_section2 {
    width: 75%;
  }

  #what_we_do_section2 p.section-paragraph {
    font-size: 1.5rem;
  }

  #what_we_do_section3>div>p {
    font-size: 1.5rem;
  }

  #why_choose_us_section2 .wrapper-sm > h2 {
  }

  #btmbanner p {
    font-size: 1.2em;
    text-shadow: 1px 1px 2px #000000;
    letter-spacing: 0.1em;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {


  .header-title {
    font-size: 2em;
    text-shadow: 2px 2px #000000;
  }
  .content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    font-family: "Rubik-Bold-700";
    font-size: 2.5em;
    line-height: 68px;
    text-align: center;
    color: #4b2600;
    text-shadow: 1px 1px 2px #ffffff;
  }

  .content p {
    margin-bottom: 0em;
  }

  .content__container {
    overflow: hidden;
    height: 1.1em;
  }

  .content__container:after,
  .content__container:before {
    position: absolute;
    top: 0;
    line-height: 80px;
    -webkit-animation-name: opacity;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-name: opacity;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }

  .content__container__text {
    display: inline;
    float: left;
    margin: 0;
  }

  .content__container__list {
    margin-top: 0;
    padding-left: 0em;
    text-align: left;
    list-style: none;
    text-align: center;
    text-shadow: 1px 1px 1px #000000;
    color: #ffffff;
    -webkit-animation-name: change;
    -webkit-animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 40s;
    animation-iteration-count: infinite;
  }

  .content__container__list__item {
    line-height: 1.5em;
    font-size: 0.8em;
    margin: 0;
  }

  @-webkit-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-webkit-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -3rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -6rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -9rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -12rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -15rem, 0);
    }
  }

  @-o-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-o-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -3rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -6rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -9rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -12rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -15rem, 0);
    }
  }

  @-moz-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-moz-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -3rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -6rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -9rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -12rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -15rem, 0);
    }
  }

  @keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -3rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -6rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -9rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -12rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -15rem, 0);
    }
  }

  .content_mobile p {
    font-size: 1.8em;
  }

  .content__container_mobile li {
    font-size: 1.8em;
  }

  .wwd-buttons {
    margin: auto;
  }

  #homepage_section3 h1 {
    font-size: 2.4em;
  }

  #homepage_section3 p {
    font-size: 1.4em;
  }

  #homepage_section3 h2.card-title {
    font-size: 2.4em;
  }

  #homepage_section3 .card-text {
    font-size: 1.2em;
    color: #222222;
    letter-spacing: 0.1rem;
    overflow: hidden;
  }

  #what_we_do_section1 h2,
  #what_we_do_section2 h2 {
    margin-top: 0em;
    margin-bottom: 2.2rem;
    font-size: 2.8rem;
  }

  #what_we_do_section2 {
    width: 95%;
  }

  #what_we_do_section2 .slide-in-ul-mobile {
    padding-left: 0em;
    text-align: center;
  }

  #section2_buttons_mobile .button-learn-more {
    height: 3.2em;
    width: 260px;
    margin-right: 0.6em;
  }

  #section2_buttons_mobile .button-call {
    height: 3.2em;
    width: 260px;
    margin-left: 0.6em;
  }

  #what_we_do_section2 p.section-paragraph {
    font-size: 2.2rem;
  }

  #what_we_do_section3 p.section3-paragraph {
    font-size: 2.2rem;
  }

  #what_we_do_section3 .button-learn-more {
    height: 3.2em;
    width: 260px;
    margin-right: 0.6em;
  }

  #what_we_do_section3 .button-call {
    height: 3.2em;
    width: 260px;
    margin-left: 0.6em;
  }


  #what_we_do_section4 p.section4-paragraph {
    font-size: 2.2rem;
  }

  #btmbanner p {
    font-size: 1.3em;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  h2.section-title {
    font-size: 2rem;
  }
  div.wrapper-sm {
    max-width: 480px;
  }
  div.wrapper-lg {
    width: 680px;
  }
  .content {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    font-family: "Rubik-Bold-700";
    font-size: 3em;
    line-height: 50px;
    text-align: center;
    color: #4b2600;
    width: 100%;
    text-shadow: 1px 1px 2px #ffffff;
  }

  .content p {
    margin-bottom: 0.3em;
  }

  .content__container {
    overflow: hidden;
    height: 0.9em;
  }

  .content__container:after,
  .content__container:before {
    position: absolute;
    top: 0;
    line-height: 80px;
    -webkit-animation-name: opacity;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-name: opacity;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }

  .content__container__text {
    display: inline;
    float: left;
    margin: 0;
  }

  .content__container__list {
    margin-top: 0;
    padding-left: 0em;
    text-align: left;
    list-style: none;
    text-align: center;
    text-shadow: 1px 1px 1px #000000;
    color: #ffffff;
    -webkit-animation-name: change;
    -webkit-animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 40s;
    animation-iteration-count: infinite;
  }

  .content__container__list__item {
    line-height: 1.5em;
    font-size: 0.6em;
    margin: 0;
  }

  @-webkit-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-webkit-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -2.7rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -5.4rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -8.1rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -10.8rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -13.5rem, 0);
    }
  }

  @-o-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-o-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -2.7rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -5.4rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -8.1rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -10.8rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -13.5rem, 0);
    }
  }

  @-moz-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-moz-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -2.7rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -5.4rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -8.1rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -10.8rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -13.5rem, 0);
    }
  }

  @keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -2.7rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -5.4rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -8.1rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -10.8rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -13.5rem, 0);
    }
  }

  #homepage_section3 h1 {
    font-size: 2.8em;
  }

  #homepage_section3 p {
    font-size: 1.5em;
  }

  #homepage_section3 .card-text {
    min-height: 140px;
  }

  #what_we_do_section1 .aws-icons-background {
    background-position: center 10%;


  }

  #what_we_do_section1 .aws-icons-background .aws-icon-tile {
    min-width: 3.5rem;
    min-height: 3.5rem;
  }

  #what_we_do_section1 h2,
  #what_we_do_section2 h2 {
    margin-top: 0em;
    margin-bottom: 0.5rem;
    font-size: 3rem;
  }




  #what_we_do_section2 {
    width: 95%;
  }

  #what_we_do_section3 h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }

  #what_we_do_section4 h2 {
    font-size: 3rem;
    margin-bottom: 0rem;
  }

  #what_we_do_section3 {
    width: 95%;
  }



  #btmbanner p {
    font-size: 1.6em;
  }
}



/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
  
  div.wrapper-sm {
    max-width: 400px;
  }
  div.wrapper-lg {
    width: 680px;
  }
  
  .content {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    font-family: "Rubik-Bold-700";
    font-size: 4.3em;
    line-height: 68px;
    text-align: center;
    color: #4b2600;
    width: 90%;
    text-shadow: 1px 1px 2px #ffffff;
  }



  .content p {
    margin-bottom: 0.3em;
  }

  .content__container {
    overflow: hidden;
    height: 1.1em;
  }

  .content__container:after,
  .content__container:before {
    position: absolute;
    top: 0;
    color: #16a085;
    line-height: 80px;
    -webkit-animation-name: opacity;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-name: opacity;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }

  .content__container__text {
    display: inline;
    float: left;
    margin: 0;
  }

  .content__container__list {
    margin-top: 0;
    padding-left: 0em;
    text-align: left;
    list-style: none;
    text-align: center;
    text-shadow: 1px 1px 1px #000000;
    color: #ffffff;
    -webkit-animation-name: change;
    -webkit-animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 40s;
    animation-iteration-count: infinite;
  }

  .content__container__list__item {
    line-height: 1.5em;
    font-size: 0.7em;
    margin: 0;
  }

  #what_we_do_section1 {
    width: 100%;
  }

  #what_we_do_section1 h2 {
    margin-top: 0em;
    margin-bottom: 3rem;
    font-size: 3rem;
  }

  #what_we_do_section1 .aws-icons-mobile p {
    font-size: 0.68rem;
  }

  #what_we_do_section1 .aws-text-list {
    font-size: 1.1em;
  }

  #what_we_do_section1 .aws-icons-background {
    background-repeat: no-repeat;
  }

  #what_we_do_section1 .aws-icons-background .aws-icon-tile {
    width: 5rem;
    height: 5rem;
  }


  @-webkit-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-webkit-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -4.5rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -9rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -13.5rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -18rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -22.5rem, 0);
    }
  }

  @-o-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-o-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -4.5rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -9rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -13.5rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -18rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -22.5rem, 0);
    }
  }

  @-moz-keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @-moz-keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -4.5rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -9rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -13.5rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -18rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -22.5rem, 0);
    }
  }

  @keyframes opacity {

    0%,
    100% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }
  }

  @keyframes change {

    0%,
    12.66%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
      transform: translate3d(0, -4.5rem, 0);
    }

    33.32%,
    45.98% {
      transform: translate3d(0, -9rem, 0);
    }

    49.98%,
    62.64% {
      transform: translate3d(0, -13.5rem, 0);
    }

    66.64%,
    79.3% {
      transform: translate3d(0, -18rem, 0);
    }

    83.3%,
    95.96% {
      transform: translate3d(0, -22.5rem, 0);
    }
  }

  #homepage_section3 h1 {
    font-size: 3.5em;
  }

  #homepage_section3 p {
    font-size: 1.5em;
  }

  #homepage_section3 .card {
    min-width: 45%;
    max-width: 46%;
  }

  #homepage_section3 .card-text {
    font-size: 1.2em;
    height: 150px;
  }

  #what_we_do_section2 {
    width: 95%;
  }

  #what_we_do_section3 {
    width: 95%;
  }


  #btmbanner p {
    font-size: 1.8em;
    text-shadow: 2px 2px 1px #000000;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  h2.section-title {
    font-size: 2.4rem;
  }

  div.wrapper-sm {
    max-width: 600px;
  }
  div.wrapper-sm h2 {
    font-size: 2.2rem;
  }
  div.wrapper-lg {
    width: 710px;
  }
  div.section-container {
    width: 80%;
  }
  div.section-container-lg {
    width: 95%;
  }
  
}


/*  custom width */
@media (min-width: 1500px) {
  #what_we_do_section2 {
    width: 80%;
  }

  #what_we_do_section3 {
    width: 80%;
  }
}

@media (min-width: 1550px) {
  #what_we_do_section1 {
    width: 90%;
  }
}

@media (min-width: 1700px) {
  #what_we_do_section1 {
    width: 80%;
  }
}