/*==================
RESET
==================*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*==================
GENERAL
==================*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Lato", sans-serif;
  color: #333333;
  background: #002F54;
  font-size: 16px;
}
@media (min-width: 576px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  body {
    font-size: 20px;
  }
}
@media (min-width: 2560px) {
  body {
    font-size: 22px;
  }
}

.contain-all {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}

h1 {
  font-family: "Merriweather", serif;
  font-size: 1.375em;
  line-height: 1.3;
  font-weight: 700;
}

h2 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  margin: 0;
}

p {
  font-size: 1.375em;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  p {
    font-size: 1.625em;
    line-height: 1.3;
  }
}

img {
  width: 100%;
}

/*******************
BUTTONS
*******************/
.button {
  /*border-bottom: 2px solid $gtu-c4;*/
  color: #333333;
  font-family: "Merriweather", serif;
  margin: 2.5em auto 0;
  font-size: 1.125em;
  line-height: 1.3;
  display: inline-block;
  border-bottom: 0.0625em solid;
  font-weight: 300;
}
.button:hover ~ .arrow {
  animation: arrow 0.5s infinite alternate;
}

.arrow {
  color: #009adf;
  position: relative;
  left: 0;
  font-size: 1.625em;
  vertical-align: bottom;
}

@-webkit-keyframes arrow {
  0% {
    left: 0;
  }
  100% {
    left: 0.375rem;
  }
}
/*==================
NAVIGATION
==================*/
.gtu-nav {
  position: fixed;
  z-index: 100;
  width: 100%;
  max-width: 1920px;
}
.gtu-nav .logo {
  display: inline-block;
}
.gtu-nav .logo img {
  height: 2.5em;
}
.gtu-nav .logo .gtu-logo-2 {
  display: none;
}
.gtu-nav .gtu-nav-bar {
  padding: 1em;
}
@media (min-width: 992px) {
  .gtu-nav .gtu-nav-bar {
    position: relative;
    z-index: 1;
    overflow: visible;
  }
}
.gtu-nav .gtu-nav-menu-open {
  float: right;
  cursor: pointer;
  color: #FFFFFF;
}
.gtu-nav .gtu-nav-menu-open i {
  font-size: 1.75em;
}
@media (min-width: 992px) {
  .gtu-nav .gtu-nav-menu-open {
    display: none;
  }
}
.gtu-nav .gtu-nav-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1em;
  cursor: pointer;
}
.gtu-nav .gtu-nav-menu-close i {
  font-size: 2.25em;
}
@media (min-width: 992px) {
  .gtu-nav .gtu-nav-menu-close {
    display: none;
  }
}
.gtu-nav .gtu-nav-menu {
  text-align: center;
  margin: 0 auto;
  padding: 1em 0;
  font-weight: 500;
  text-align: center;
  display: none;
  position: fixed; /* Stay in place */
  z-index: 500; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  .gtu-nav .gtu-nav-menu {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    float: right;
    overflow: visible;
  }
}
.gtu-nav .gtu-nav-menu .menu-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25em;
  width: 100%;
}
.gtu-nav .gtu-nav-menu .menu-content .m-menu-link {
  color: #333333;
}
@media (min-width: 992px) {
  .gtu-nav .gtu-nav-menu .menu-content .m-menu-link {
    color: #FFFFFF;
  }
}
.gtu-nav .gtu-nav-menu .menu-content .d-menu-link {
  color: #333333;
}
@media (min-width: 992px) {
  .gtu-nav .gtu-nav-menu .menu-content .d-menu-link {
    color: #333333;
  }
}
@media (min-width: 992px) {
  .gtu-nav .gtu-nav-menu .menu-content {
    position: static;
    font-size: 0.875em;
    transform: translate(0);
    text-transform: uppercase;
  }
}
.gtu-nav .gtu-nav-menu .menu-content ul {
  padding: 0;
  margin: 0;
}
.gtu-nav .gtu-nav-menu .menu-content li {
  padding: 1.25rem 1.25rem;
  display: block;
  float: none;
}
@media (min-width: 992px) {
  .gtu-nav .gtu-nav-menu .menu-content li {
    padding: 0 1.25em;
    display: inline-block;
  }
}
.gtu-nav .gtu-nav-menu .menu-content li a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.gtu-nav .gtu-nav-menu .menu-content li a:hover {
  color: #009adf;
  transition: 0.3s ease-in-out;
}

.gtu-nav-solid {
  background: #FFFFFF;
  position: fixed;
  top: -3.75em;
  animation: nav-solid 0.3s linear forwards;
}

@-webkit-keyframes nav-solid {
  0% {
    top: -3.75em;
  }
  100% {
    top: 0;
  }
}
/*==================
HERO
==================*/
.gtu-hero {
  position: relative;
  display: table;
  width: 100%;
  padding: 12.5em 0;
  background: url("../assets/home/gtu-img1.jpg") no-repeat center center;
  background-size: cover;
}
@media (min-width: 992px) {
  .gtu-hero {
    height: 100vh;
  }
}
@media (min-width: 2560px) {
  .gtu-hero {
    height: 100%;
    padding: 18.75em 0;
  }
}
.gtu-hero .video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: auto;
}
.gtu-hero .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gtu-hero .overlay {
  background: rgba(0, 69, 124, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.gtu-hero .hero {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}
.gtu-hero .hero-title {
  width: 100%;
  padding: 0 1.25em;
  text-align: center;
}
.gtu-hero .hero-title h1 {
  font-size: 2.1875em;
  line-height: 1.3;
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gtu-hero .hero-title h1 {
    font-size: 3.125em;
    line-height: 1.3;
    width: 90%;
  }
}
@media (min-width: 992px) {
  .gtu-hero .hero-title h1 {
    width: 60%;
  }
}
.gtu-hero .hero-title .button {
  border-bottom: 0.1875em solid #009adf;
  color: #FFFFFF;
  font-family: "Merriweather", serif;
  animation: button 1s infinite alternate;
  margin: 2.5em auto 0;
  font-size: 137.5%;
  display: inline-block;
  padding: 0 0 0.3125em;
}
@media (min-width: 768px) {
  .gtu-hero .hero-title .button {
    font-size: 156.25%;
  }
}
.gtu-hero .hero-title .button:hover ~ .arrow {
  color: #009adf;
}
@-webkit-keyframes button {
  0% {
    border-bottom: 0.1875em solid #FFFFFF;
  }
  100% {
    border-bottom: 0.1875em solid #009adf;
  }
}
.gtu-hero .hero-title .arrow {
  color: #FFFFFF;
  transition: all 0.3s ease;
  position: relative;
  left: 0;
  top: -0.25em;
  font-size: 187.5%;
}
.gtu-hero .hero-title .arrow:hover {
  color: #009adf;
}

/*========================
HOME - BRAND AMB / WORK / TEAM
=========================*/
.home-sec1 {
  background: #f2f2f2;
  padding: 0;
}
.home-sec1 .content {
  padding: 1.625em 1em;
  margin: 3.75em auto;
  text-align: center;
}
@media (min-width: 992px) {
  .home-sec1 .content {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding: 0 3.75em;
    margin: 0;
  }
}
.home-sec1 h1 {
  font-size: 1.375em;
  line-height: 1.3;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.home-sec1 .img1, .home-sec1 .img2, .home-sec1 .img3 {
  height: 21.875em;
  width: 100%;
}
@media (min-width: 992px) {
  .home-sec1 .img1, .home-sec1 .img2, .home-sec1 .img3 {
    height: 37.5em;
  }
}
.home-sec1 .img1 {
  background: url("../assets/home/gtu-img1.jpg") no-repeat center top;
  background-size: cover;
}
.home-sec1 .img2 {
  background: url("../assets/home/gtu-img2.jpg") no-repeat center center;
  background-size: cover;
}
.home-sec1 .img3 {
  background: url("../assets/home/gtu-img3.jpg") no-repeat center center;
  background-size: cover;
}

/*========================
HOME - EVENTS / TEAM ***
=========================*/
.home-sec2 {
  background: #FFFFFF;
  padding: 2.5rem 1.5625rem 2.5rem;
}
@media (min-width: 768px) {
  .home-sec2 {
    padding: 5rem 0;
  }
}
.home-sec2 .content {
  margin: 4.375rem auto;
  text-align: center;
}
@media (min-width: 768px) {
  .home-sec2 .content {
    margin: 2.5rem auto 0;
  }
}
.home-sec2 h1 {
  font-size: 112.5%;
  line-height: 1.5rem;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
}
.home-sec2 p {
  font-size: 137.5%;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  .home-sec2 p {
    padding: 0 1.25rem;
  }
}
.home-sec2 .button {
  margin: 1.875rem auto 0;
}
.home-sec2 .img3, .home-sec2 .img4 {
  height: 35vh;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-sec2 .img3, .home-sec2 .img4 {
    height: 55vh;
    width: 95%;
    padding: 0 0.625rem;
  }
}
.home-sec2 .img3 {
  background: url("../assets/home/gtu-img3.jpg") no-repeat center center;
  background-size: cover;
}
.home-sec2 .img4 {
  background: url("../assets/home/gtu-img4.jpg") no-repeat center center;
  background-size: cover;
}

/*========================
HOME - CLIENTS
=========================*/
.move {
  animation: MoveUpDown 1s ease-in-out infinite;
  position: relative;
}

@keyframes MoveUpDown {
  0%, 100% {
    bottom: 0;
  }
  50% {
    bottom: 8px;
  }
}
.home-sec3 {
  background: #FFFFFF;
  padding: 5em 0 0;
}
@media (min-width: 768px) {
  .home-sec3 {
    padding: 6.25em 0 0;
  }
}
.home-sec3 .content {
  margin: 0 auto;
  text-align: center;
}
.home-sec3 h1 {
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.home-sec3 h2 {
  font-size: 1em;
  line-height: 1.3;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
  margin: 5em auto 0;
}
.home-sec3 .logos {
  margin: 0 auto 4.375em;
}
.home-sec3 .logos img {
  width: 6.25em;
  margin: 1.5625em;
}
.home-sec3 .logos .w40 {
  width: 2.5em;
}
.home-sec3 .logos .w50 {
  width: 3.125em;
}
.home-sec3 .logos .w60 {
  width: 3.75em;
}
.home-sec3 .logos .w70 {
  width: 4.375em;
}
.home-sec3 .logos .w80 {
  width: 5em;
}
.home-sec3 .logos .w100 {
  width: 6.25em;
}
.home-sec3 .logos .w120 {
  width: 7.5em;
}

/*========================
HOME - TESTIMONIALS
=========================*/
.home-sec4 {
  background: #f2f2f2;
  padding: 5em 0.625em 3.75em;
}
@media (min-width: 768px) {
  .home-sec4 {
    padding: 6.25em 0 5em;
  }
}
.home-sec4 .content {
  margin: 0 auto;
  text-align: center;
}
.home-sec4 .tgroup {
  margin: 0 auto 3.75em;
}
.home-sec4 .tgroup:last-child {
  margin: 0 auto;
}
.home-sec4 h1 {
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
  margin: 0 0 1.875em;
}
.home-sec4 .testimonial {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 1.25em;
  line-height: 1.5;
  margin: 1.25em 0;
}
@media (min-width: 768px) {
  .home-sec4 .testimonial {
    width: 49%;
    margin: 0 0 1.5625em;
    text-align: left;
  }
}
.home-sec4 .logo {
  display: inline-block;
  background: #FFFFFF;
  vertical-align: top;
}
@media (min-width: 768px) {
  .home-sec4 .logo {
    width: 13.75em;
    margin: 0 1.875em 0 0;
    height: 8.75em;
  }
}
.home-sec4 .logo img {
  text-align: center;
  padding: 1.25em;
  width: 10em;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-sec4 .logo img {
    text-align: center;
    padding: 1.875em;
    width: 100%;
  }
}
.home-sec4 .person {
  margin: 1.25em 0 0;
}
.home-sec4 .person .name {
  font-weight: 800;
}
.home-sec4 .slider {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-sec4 .slider {
    width: 80%;
  }
}

/*========================
WHAT WE DO - HERO
=========================*/
.gtu-wwd-hero {
  position: relative;
  display: table;
  width: 100%;
  padding: 12.5em 0;
}
@media (min-width: 992px) {
  .gtu-wwd-hero {
    height: 100vh;
    padding: 0;
  }
}
@media (min-width: 2560px) {
  .gtu-wwd-hero {
    height: 50em;
  }
}
.gtu-wwd-hero .img1, .gtu-wwd-hero .img2, .gtu-wwd-hero .img3 {
  width: 100%;
  position: absolute;
  top: 0;
  padding: 12.5em 0;
  height: 100%;
}
@media (min-width: 992px) {
  .gtu-wwd-hero .img1, .gtu-wwd-hero .img2, .gtu-wwd-hero .img3 {
    height: 100vh;
  }
}
@media (min-width: 2560px) {
  .gtu-wwd-hero .img1, .gtu-wwd-hero .img2, .gtu-wwd-hero .img3 {
    height: 50em;
  }
}
.gtu-wwd-hero .img1 {
  background: url("../assets/whatwedo/img1.jpg") center center;
  background-size: cover;
}
@media (min-width: 992px) {
  .gtu-wwd-hero .img1 {
    animation: pic-rotation 6s 0s ease-in-out infinite;
    opacity: 0;
  }
}
.gtu-wwd-hero .img2 {
  background: url("../assets/whatwedo/img2.jpg") center center;
  background-size: cover;
  display: none;
}
@media (min-width: 992px) {
  .gtu-wwd-hero .img2 {
    animation: pic-rotation 6s 2s ease-in-out infinite;
    opacity: 0;
    display: inline;
  }
}
.gtu-wwd-hero .img3 {
  background: url("../assets/whatwedo/img3.jpg") center center;
  background-size: cover;
}
@media (min-width: 992px) {
  .gtu-wwd-hero .img3 {
    animation: pic-rotation 6s 4s ease-in-out infinite;
    opacity: 0;
    display: inline;
  }
}
@-webkit-keyframes pic-rotation {
  0% {
    opacity: 0;
  }
  11.11% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  44.44% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.gtu-wwd-hero .overlay {
  background: rgba(0, 69, 124, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.gtu-wwd-hero .hero {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}
.gtu-wwd-hero .hero-title {
  width: 100%;
  padding: 1.875em;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .gtu-wwd-hero .hero-title {
    width: 80%;
  }
}
.gtu-wwd-hero .hero-title h1 {
  font-size: 2.1875em;
  line-height: 1.2;
  margin: 0 auto 0.625em;
}
@media (min-width: 992px) {
  .gtu-wwd-hero .hero-title h1 {
    font-size: 3.125em;
    line-height: 1.2;
  }
}
.gtu-wwd-hero .hero-title p {
  font-size: 1.5em;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .gtu-wwd-hero .hero-title p {
    font-size: 1.75em;
  }
}

/*========================
WHAT WE DO - PROCESS
=========================*/
.wwd-sec1 {
  padding: 5em 1em;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .wwd-sec1 {
    padding: 5em 0;
  }
}
.wwd-sec1 .content {
  text-align: center;
}
.wwd-sec1 h1 {
  font-size: 1.125em;
  line-height: 1.3;
  margin: 0 auto 0.3125em;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.wwd-sec1 p {
  color: #333333;
  margin: 0 auto;
  font-size: 1.25em;
  line-height: 1.3;
}
.wwd-sec1 .highlight {
  color: #333333;
  margin: 1.25em 0 0;
}
.wwd-sec1 .points-icon {
  width: 6.875em;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .wwd-sec1 .points-icon {
    display: table-cell;
    text-align: left;
  }
}
.wwd-sec1 .points-icon img {
  width: 100%;
}
.wwd-sec1 .points-container {
  margin: 3.75em 0 0;
}
.wwd-sec1 .points-container .points {
  text-align: center;
  margin: 0.625em 0 0;
}
@media (min-width: 768px) {
  .wwd-sec1 .points-container .points {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    margin: 0;
    padding: 0 0 0 0.9375em;
  }
}
.wwd-sec1 .points-container .points h2 {
  font-size: 1em;
  line-height: 1.3;
  margin: 0 auto 0.3125em;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.wwd-sec1 .points-container .points p {
  color: #333333;
  margin: 0 auto;
  font-size: 1.125em;
  line-height: 1.4;
}

/*========================
WHAT WE DO - CAPABILITIES
=========================*/
.wwd-sec2 {
  padding: 5em 0 0;
  background: #f2f2f2;
}
@media (min-width: 768px) {
  .wwd-sec2 {
    padding: 5em 0;
  }
}
.wwd-sec2 .content {
  text-align: center;
  margin: 0 0 5em;
}
@media (min-width: 768px) {
  .wwd-sec2 .content {
    margin: 0 0 2.5em;
  }
}
.wwd-sec2 h1 {
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 auto 0.3125em;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.wwd-sec2 p {
  color: #333333;
  margin: 0 auto;
  font-size: 1.25em;
  line-height: 1.4;
}
.wwd-sec2 .learn-button {
  text-align: center;
  font-weight: 700;
  color: #00457C;
  font-size: 0.875em;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.0625em;
  text-decoration: underline;
}
.wwd-sec2 .learn-button:hover {
  color: #00457C;
}
.wwd-sec2 .points {
  margin: 0 0 5em;
  text-align: center;
}
@media (min-width: 768px) {
  .wwd-sec2 .points {
    text-align: left;
    margin: 1.875em 0 3.75em;
    display: table-cell;
    vertical-align: middle;
    padding: 0 2.5em;
  }
}
.wwd-sec2 .points h2 {
  font-size: 1em;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 auto 0.3125em;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.wwd-sec2 .points p {
  color: #333333;
  margin: 0 auto;
  font-size: 1.125em;
  line-height: 1.4;
}
.wwd-sec2 .point-imgs {
  width: 100%;
  margin: 0 auto 1.25em;
}
.wwd-sec2 a {
  line-height: 2;
}

/*========================
WORK - HERO
=========================*/
.gtu-wk-hero {
  position: relative;
  display: table;
  width: 100%;
  padding: 12.5em 0;
}
@media (min-width: 992px) {
  .gtu-wk-hero {
    height: 100vh;
    padding: 0;
  }
}
@media (min-width: 2560px) {
  .gtu-wk-hero {
    height: 50em;
  }
}
.gtu-wk-hero .img1, .gtu-wk-hero .img2, .gtu-wk-hero .img3 {
  width: 100%;
  position: absolute;
  top: 0;
  padding: 12.5em 0;
  height: 100%;
}
@media (min-width: 992px) {
  .gtu-wk-hero .img1, .gtu-wk-hero .img2, .gtu-wk-hero .img3 {
    height: 100vh;
  }
}
@media (min-width: 2560px) {
  .gtu-wk-hero .img1, .gtu-wk-hero .img2, .gtu-wk-hero .img3 {
    height: 50em;
  }
}
.gtu-wk-hero .img1 {
  background: url("../assets/work/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 6s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-hero .img2 {
  background: url("../assets/work/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 6s 2s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-hero .img3 {
  background: url("../assets/work/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 6s 4s ease-in-out infinite;
  opacity: 0;
}
@-webkit-keyframes pic-rotation {
  0% {
    opacity: 0;
  }
  11.11% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  44.44% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.gtu-wk-hero .overlay {
  background: rgba(0, 69, 124, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.gtu-wk-hero .hero {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}
.gtu-wk-hero .hero-title {
  width: 100%;
  padding: 1.875em;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .gtu-wk-hero .hero-title {
    width: 80%;
  }
}
.gtu-wk-hero .hero-title h1 {
  font-size: 2.1875em;
  line-height: 1.2;
  margin: 0 auto 0.625em;
}
@media (min-width: 992px) {
  .gtu-wk-hero .hero-title h1 {
    font-size: 3.125em;
    line-height: 1.2;
  }
}
.gtu-wk-hero .hero-title p {
  font-size: 1.5em;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .gtu-wk-hero .hero-title p {
    font-size: 1.75em;
  }
}

/*========================
WORK - TILES
=========================*/
.wk-sec1 {
  padding: 5em 0 1.25em;
  background: #f2f2f2;
}
@media (min-width: 768px) {
  .wk-sec1 {
    padding: 5em 0;
  }
}
.wk-sec1 h2 {
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.wk-sec1 p {
  color: #333333;
  margin: 0 auto;
  font-size: 1.0625em;
  line-height: 1.3;
}
.wk-sec1 a {
  color: #333333;
}
.wk-sec1 .work {
  width: 100%;
  margin: 0 0 2.5em;
  background: #FFFFFF;
  text-align: left;
  overflow: hidden;
}
@media (min-width: 768px) {
  .wk-sec1 .work {
    margin: 0 0 1.25em;
  }
}
.wk-sec1 .work .work-image {
  overflow: hidden;
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
}
.wk-sec1 .work .work-image img {
  width: 100%;
}
.wk-sec1 .work .work-image:hover {
  transform: scale(1.3);
  filter: grayscale(1);
}
.wk-sec1 .work .work-icon {
  position: absolute;
  z-index: -1;
  left: -99999px;
  font-size: 1.875em !important;
}
.wk-sec1 .work .work-text {
  padding: 1.25em 1.25em 1.5625em;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  background: #FFFFFF;
}
@media (min-width: 992px) {
  .wk-sec1 .work .work-text {
    text-align: left;
    min-height: 11.25em;
  }
}
.wk-sec1 .work .work-image:hover .work-icon {
  position: absolute;
  color: #FFFFFF;
  width: 1.875em;
  height: 1.875em;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.wk-sec2 {
  padding: 5em 0;
  background: #00457C;
  color: #FFFFFF;
}
.wk-sec2 .work-next {
  text-align: center;
}
.wk-sec2 .work-next h2 {
  margin: 0 auto 1.25em;
  text-align: center;
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.wk-sec2 .work-next .land {
  padding: 1.25em 0;
}
.wk-sec2 .work-next .land .title {
  font-size: 1.125em;
  line-height: 1.3;
  margin: 0 auto 0.3125em;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
}
.wk-sec2 .work-next .land .button {
  margin: 0.3125em auto;
  color: #FFFFFF;
}

/*========================
WORK - HEROES
=========================*/
.gtu-wk-t-hero {
  position: relative;
  display: table;
  width: 100%;
  padding: 12.5em 0;
}
@media (min-width: 992px) {
  .gtu-wk-t-hero {
    height: 100vh;
    padding: 0;
  }
}
@media (min-width: 2560px) {
  .gtu-wk-t-hero {
    height: 50em;
  }
}
.gtu-wk-t-hero .bhm-img1, .gtu-wk-t-hero .bhm-img2, .gtu-wk-t-hero .bhm-img3, .gtu-wk-t-hero .lny-img1, .gtu-wk-t-hero .lny-img2, .gtu-wk-t-hero .lny-img3, .gtu-wk-t-hero .cs-img1, .gtu-wk-t-hero .cs-img2, .gtu-wk-t-hero .cs-img3, .gtu-wk-t-hero .em-img1, .gtu-wk-t-hero .em-img2, .gtu-wk-t-hero .em-img3,
.gtu-wk-t-hero .fab-img1, .gtu-wk-t-hero .fab-img2, .gtu-wk-t-hero .fab-img3, .gtu-wk-t-hero .fi-img1, .gtu-wk-t-hero .fi-img2, .gtu-wk-t-hero .fi-img3, .gtu-wk-t-hero .hh-img1, .gtu-wk-t-hero .hh-img2, .gtu-wk-t-hero .hh-img3, .gtu-wk-t-hero .jcb-img1, .gtu-wk-t-hero .jcb-img2, .gtu-wk-t-hero .jcb-img3,
.gtu-wk-t-hero .tk-img1, .gtu-wk-t-hero .tk-img2, .gtu-wk-t-hero .tk-img3, .gtu-wk-t-hero .ts-img1, .gtu-wk-t-hero .ts-img2, .gtu-wk-t-hero .ts-img3, .gtu-wk-t-hero .uw-img1, .gtu-wk-t-hero .uw-img2, .gtu-wk-t-hero .uw-img3, .gtu-wk-t-hero .v-img1, .gtu-wk-t-hero .aapi-img1, .gtu-wk-t-hero .aapi-img2, .gtu-wk-t-hero .aapi-img3, .gtu-wk-t-hero .jt-img1, .gtu-wk-t-hero .jt-img2, .gtu-wk-t-hero .jt-img3, .gtu-wk-t-hero .mf-img1, .gtu-wk-t-hero .mf-img2, .gtu-wk-t-hero .mf-img3, .gtu-wk-t-hero .ln-img1, .gtu-wk-t-hero .ln-img2, .gtu-wk-t-hero .ln-img3, .gtu-wk-t-hero .jj-img1, .gtu-wk-t-hero .jj-img2, .gtu-wk-t-hero .jj-img3, .gtu-wk-t-hero .st-img1, .gtu-wk-t-hero .st-img2, .gtu-wk-t-hero .st-img3, .gtu-wk-t-hero .bbb-img1, .gtu-wk-t-hero .bbb-img2, .gtu-wk-t-hero .bbb-img3, .gtu-wk-t-hero .ws-img1, .gtu-wk-t-hero .ws-img2, .gtu-wk-t-hero .ws-img3 {
  width: 100%;
  position: absolute;
  top: 0;
  padding: 12.5em 0;
  height: 100%;
}
@media (min-width: 992px) {
  .gtu-wk-t-hero .bhm-img1, .gtu-wk-t-hero .bhm-img2, .gtu-wk-t-hero .bhm-img3, .gtu-wk-t-hero .lny-img1, .gtu-wk-t-hero .lny-img2, .gtu-wk-t-hero .lny-img3, .gtu-wk-t-hero .cs-img1, .gtu-wk-t-hero .cs-img2, .gtu-wk-t-hero .cs-img3, .gtu-wk-t-hero .em-img1, .gtu-wk-t-hero .em-img2, .gtu-wk-t-hero .em-img3,
  .gtu-wk-t-hero .fab-img1, .gtu-wk-t-hero .fab-img2, .gtu-wk-t-hero .fab-img3, .gtu-wk-t-hero .fi-img1, .gtu-wk-t-hero .fi-img2, .gtu-wk-t-hero .fi-img3, .gtu-wk-t-hero .hh-img1, .gtu-wk-t-hero .hh-img2, .gtu-wk-t-hero .hh-img3, .gtu-wk-t-hero .jcb-img1, .gtu-wk-t-hero .jcb-img2, .gtu-wk-t-hero .jcb-img3,
  .gtu-wk-t-hero .tk-img1, .gtu-wk-t-hero .tk-img2, .gtu-wk-t-hero .tk-img3, .gtu-wk-t-hero .ts-img1, .gtu-wk-t-hero .ts-img2, .gtu-wk-t-hero .ts-img3, .gtu-wk-t-hero .uw-img1, .gtu-wk-t-hero .uw-img2, .gtu-wk-t-hero .uw-img3, .gtu-wk-t-hero .v-img1, .gtu-wk-t-hero .aapi-img1, .gtu-wk-t-hero .aapi-img2, .gtu-wk-t-hero .aapi-img3, .gtu-wk-t-hero .jt-img1, .gtu-wk-t-hero .jt-img2, .gtu-wk-t-hero .jt-img3, .gtu-wk-t-hero .mf-img1, .gtu-wk-t-hero .mf-img2, .gtu-wk-t-hero .mf-img3, .gtu-wk-t-hero .ln-img1, .gtu-wk-t-hero .ln-img2, .gtu-wk-t-hero .ln-img3, .gtu-wk-t-hero .jj-img1, .gtu-wk-t-hero .jj-img2, .gtu-wk-t-hero .jj-img3, .gtu-wk-t-hero .st-img1, .gtu-wk-t-hero .st-img2, .gtu-wk-t-hero .st-img3, .gtu-wk-t-hero .bbb-img1, .gtu-wk-t-hero .bbb-img2, .gtu-wk-t-hero .bbb-img3, .gtu-wk-t-hero .ws-img1, .gtu-wk-t-hero .ws-img2, .gtu-wk-t-hero .ws-img3 {
    height: 100vh;
  }
}
@media (min-width: 2560px) {
  .gtu-wk-t-hero .bhm-img1, .gtu-wk-t-hero .bhm-img2, .gtu-wk-t-hero .bhm-img3, .gtu-wk-t-hero .lny-img1, .gtu-wk-t-hero .lny-img2, .gtu-wk-t-hero .lny-img3, .gtu-wk-t-hero .cs-img1, .gtu-wk-t-hero .cs-img2, .gtu-wk-t-hero .cs-img3, .gtu-wk-t-hero .em-img1, .gtu-wk-t-hero .em-img2, .gtu-wk-t-hero .em-img3,
  .gtu-wk-t-hero .fab-img1, .gtu-wk-t-hero .fab-img2, .gtu-wk-t-hero .fab-img3, .gtu-wk-t-hero .fi-img1, .gtu-wk-t-hero .fi-img2, .gtu-wk-t-hero .fi-img3, .gtu-wk-t-hero .hh-img1, .gtu-wk-t-hero .hh-img2, .gtu-wk-t-hero .hh-img3, .gtu-wk-t-hero .jcb-img1, .gtu-wk-t-hero .jcb-img2, .gtu-wk-t-hero .jcb-img3,
  .gtu-wk-t-hero .tk-img1, .gtu-wk-t-hero .tk-img2, .gtu-wk-t-hero .tk-img3, .gtu-wk-t-hero .ts-img1, .gtu-wk-t-hero .ts-img2, .gtu-wk-t-hero .ts-img3, .gtu-wk-t-hero .uw-img1, .gtu-wk-t-hero .uw-img2, .gtu-wk-t-hero .uw-img3, .gtu-wk-t-hero .v-img1, .gtu-wk-t-hero .aapi-img1, .gtu-wk-t-hero .aapi-img2, .gtu-wk-t-hero .aapi-img3, .gtu-wk-t-hero .jt-img1, .gtu-wk-t-hero .jt-img2, .gtu-wk-t-hero .jt-img3, .gtu-wk-t-hero .mf-img1, .gtu-wk-t-hero .mf-img2, .gtu-wk-t-hero .mf-img3, .gtu-wk-t-hero .ln-img1, .gtu-wk-t-hero .ln-img2, .gtu-wk-t-hero .ln-img3, .gtu-wk-t-hero .jj-img1, .gtu-wk-t-hero .jj-img2, .gtu-wk-t-hero .jj-img3, .gtu-wk-t-hero .st-img1, .gtu-wk-t-hero .st-img2, .gtu-wk-t-hero .st-img3, .gtu-wk-t-hero .bbb-img1, .gtu-wk-t-hero .bbb-img2, .gtu-wk-t-hero .bbb-img3, .gtu-wk-t-hero .ws-img1, .gtu-wk-t-hero .ws-img2, .gtu-wk-t-hero .ws-img3 {
    height: 50em;
  }
}
.gtu-wk-t-hero .bhm-img1 {
  background: url("../assets/work/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .bhm-img2 {
  background: url("../assets/work/bhm/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .bhm-img3 {
  background: url("../assets/work/bhm/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .jt-img1 {
  background: url("../assets/work/jt/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .jt-img2 {
  background: url("../assets/work/jt/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .jt-img3 {
  background: url("../assets/work/jt/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .lny-img1 {
  background: url("../assets/work/lny/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .lny-img2 {
  background: url("../assets/work/lny/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .lny-img3 {
  background: url("../assets/work/lny/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .aapi-img1 {
  background: url("../assets/work/aapi/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .aapi-img2 {
  background: url("../assets/work/aapi/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .aapi-img3 {
  background: url("../assets/work/aapi/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .cs-img1 {
  background: url("../assets/work/cs/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .cs-img2 {
  background: url("../assets/work/cs/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .cs-img3 {
  background: url("../assets/work/cs/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .em-img1 {
  background: url("../assets/work/em/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .em-img2 {
  background: url("../assets/work/em/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .em-img3 {
  background: url("../assets/work/em/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .fab-img1 {
  background: url("../assets/work/fab/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .fab-img2 {
  background: url("../assets/work/fab/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .fab-img3 {
  background: url("../assets/work/fab/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .fi-img1 {
  background: url("../assets/work/fi/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .fi-img2 {
  background: url("../assets/work/fi/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .fi-img3 {
  background: url("../assets/work/fi/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .hh-img1 {
  background: url("../assets/work/hh/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .hh-img2 {
  background: url("../assets/work/hh/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .hh-img3 {
  background: url("../assets/work/hh/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .mf-img1 {
  background: url("../assets/work/mf/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .mf-img2 {
  background: url("../assets/work/mf/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .mf-img3 {
  background: url("../assets/work/mf/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .ln-img1 {
  background: url("../assets/work/ln/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .ln-img2 {
  background: url("../assets/work/ln/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .ln-img3 {
  background: url("../assets/work/ln/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .jj-img1 {
  background: url("../assets/work/jj/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .jj-img2 {
  background: url("../assets/work/jj/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .jj-img3 {
  background: url("../assets/work/jj/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .jcb-img1 {
  background: url("../assets/work/jcb/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .jcb-img2 {
  background: url("../assets/work/jcb/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .jcb-img3 {
  background: url("../assets/work/jcb/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .tk-img1 {
  background: url("../assets/work/tk/img4.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .tk-img2 {
  background: url("../assets/work/tk/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .tk-img3 {
  background: url("../assets/work/tk/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .ts-img1 {
  background: url("../assets/work/ts/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .ts-img2 {
  background: url("../assets/work/ts/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .ts-img3 {
  background: url("../assets/work/ts/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .uw-img1 {
  background: url("../assets/work/uw/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .uw-img2 {
  background: url("../assets/work/uw/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .uw-img3 {
  background: url("../assets/work/uw/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .v-img1 {
  background: url("../assets/work/v/v-bg.jpg") center center;
  background-size: cover;
}
.gtu-wk-t-hero .st-img1 {
  background: url("../assets/work/st/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .st-img2 {
  background: url("../assets/work/st/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .st-img3 {
  background: url("../assets/work/st/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .bbb-img1 {
  background: url("../assets/work/bbb/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .bbb-img2 {
  background: url("../assets/work/bbb/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .bbb-img3 {
  background: url("../assets/work/bbb/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .ws-img1 {
  background: url("../assets/work/ws/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .ws-img2 {
  background: url("../assets/work/ws/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
.gtu-wk-t-hero .ws-img3 {
  background: url("../assets/work/ws/img3.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
@-webkit-keyframes pic-rotation {
  0% {
    opacity: 0;
  }
  11.11% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  44.44% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.gtu-wk-t-hero .overlay {
  background: rgba(0, 69, 124, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.gtu-wk-t-hero .hero {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}
.gtu-wk-t-hero .hero-title {
  width: 100%;
  padding: 1.875em;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .gtu-wk-t-hero .hero-title {
    width: 80%;
  }
}
.gtu-wk-t-hero .hero-title h1 {
  font-size: 1.875em;
  line-height: 1.3;
  margin: 0 auto 0.625em;
}
@media (min-width: 992px) {
  .gtu-wk-t-hero .hero-title h1 {
    font-size: 3.125em;
    line-height: 1.2;
  }
}
.gtu-wk-t-hero .hero-title p {
  font-size: 1.5em;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .gtu-wk-t-hero .hero-title p {
    font-size: 1.75em;
  }
}

/*========================
WORK - PAGE TEMPLATE
=========================*/
.wk-t-sec1 {
  padding: 5em 0 1.25em;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .wk-t-sec1 {
    padding: 5em 0;
  }
}
.wk-t-sec1 h2 {
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.wk-t-sec1 p {
  color: #333333;
  margin: 0 auto;
  font-size: 1.125em;
  line-height: 1.3;
}
.wk-t-sec1 .content {
  margin: 0 0 2.5em;
  text-align: center;
}
.wk-t-sec1 .content:last-child {
  margin: 0 0 5em;
}
@media (min-width: 768px) {
  .wk-t-sec1 .content {
    text-align: left;
  }
  .wk-t-sec1 .content:last-child {
    margin: 0;
  }
}
.wk-t-sec1 .lp {
  margin: 0.9375em 0 0;
}
.wk-t-sec1 .lp span {
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.0625em;
}
.wk-t-sec1 .lp a {
  color: #009adf;
  text-decoration: underline;
  line-height: 1.4;
  font-size: 1.0625em;
}
@media (min-width: 768px) {
  .wk-t-sec1 .oneoff {
    margin: 2.5em 0 0;
  }
}
.wk-t-sec1 .video {
  margin: 0;
}
.wk-t-sec1 .video iframe {
  height: 18.75em;
  width: 100%;
}
@media (min-width: 768px) {
  .wk-t-sec1 .video iframe {
    height: 27.5em;
  }
}
@media (min-width: 992px) {
  .wk-t-sec1 .video iframe {
    height: 21.875em;
    width: 90%;
  }
}

.wk-t-sec2 {
  padding: 5em 0;
  background: #f2f2f2;
}
.wk-t-sec2 .gap {
  margin: 5em 0 0;
}
.wk-t-sec2 .slider {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .wk-t-sec2 .slider {
    width: 80%;
  }
}
.wk-t-sec2 .slider h2 {
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
  text-align: center;
  margin: 0 0 1.25em;
}
.wk-t-sec2 .slider p {
  text-align: center;
  font-size: 1em;
  line-height: 1.3;
  margin: 0.625em 0;
}
@media (min-width: 768px) {
  .wk-t-sec2 .slider p {
    margin: 0.625em 0 1.25em;
  }
}
.wk-t-sec2 .slider a {
  color: #333333;
  text-decoration: underline;
}
.wk-t-sec2 .slider img {
  width: 100%;
  margin: 0 auto;
}
.wk-t-sec2 .slide {
  margin: 0 auto 3.75em;
}
.wk-t-sec2 .back {
  text-align: center;
  margin: 2.5em auto 0;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
}
.wk-t-sec2 .back:hover {
  color: #00457C;
}
.wk-t-sec2 .back .goingback {
  margin: 0 0.3125em 0 0;
  vertical-align: middle;
  display: inline-block;
  color: #009adf;
}

/*========================
TEAM - HERO
=========================*/
.gtu-tm-hero {
  position: relative;
  display: table;
  width: 100%;
  padding: 12.5em 0;
}
@media (min-width: 992px) {
  .gtu-tm-hero {
    height: 100vh;
    padding: 0;
  }
}
@media (min-width: 2560px) {
  .gtu-tm-hero {
    height: 50em;
  }
}
.gtu-tm-hero .img1, .gtu-tm-hero .img2, .gtu-tm-hero .img3 {
  width: 100%;
  position: absolute;
  top: 0;
  padding: 12.5em 0;
  height: 100%;
}
@media (min-width: 992px) {
  .gtu-tm-hero .img1, .gtu-tm-hero .img2, .gtu-tm-hero .img3 {
    height: 100vh;
  }
}
@media (min-width: 2560px) {
  .gtu-tm-hero .img1, .gtu-tm-hero .img2, .gtu-tm-hero .img3 {
    height: 50em;
  }
}
.gtu-tm-hero .img1 {
  background: url("../assets/home/gtu-img4.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 0s ease-in-out infinite;
  opacity: 0;
}
.gtu-tm-hero .img2 {
  background: url("../assets/team/img1.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 3s ease-in-out infinite;
  opacity: 0;
}
.gtu-tm-hero .img3 {
  background: url("../assets/team/img2.jpg") center center;
  background-size: cover;
  animation: pic-rotation 9s 6s ease-in-out infinite;
  opacity: 0;
}
@-webkit-keyframes pic-rotation {
  0% {
    opacity: 0;
  }
  11.11% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  44.44% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.gtu-tm-hero .overlay {
  background: rgba(0, 69, 124, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.gtu-tm-hero .hero {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}
.gtu-tm-hero .hero-title {
  width: 100%;
  padding: 1.875em;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .gtu-tm-hero .hero-title {
    width: 80%;
  }
}
.gtu-tm-hero .hero-title h1 {
  font-size: 2.1875em;
  line-height: 1.2;
  margin: 0 auto 0.625em;
}
@media (min-width: 992px) {
  .gtu-tm-hero .hero-title h1 {
    font-size: 3.125em;
    line-height: 1.2;
  }
}
.gtu-tm-hero .hero-title p {
  font-size: 1.5em;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .gtu-tm-hero .hero-title p {
    font-size: 1.75em;
  }
}

/*========================
TEAM - HISTORY
=========================*/
.tm-sec1 {
  padding: 5em 1em;
  background: #FFFFFF;
}
@media (min-width: 992px) {
  .tm-sec1 {
    padding: 5em 0;
  }
}
.tm-sec1 .content {
  margin: 0 0 3.75em;
  text-align: center;
}
@media (min-width: 992px) {
  .tm-sec1 .content {
    margin: 0 0 2.5em;
    text-align: left;
  }
}
.tm-sec1 h2 {
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  margin: 1.25em 0 0.3125em;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
@media (min-width: 992px) {
  .tm-sec1 h2 {
    margin: 0;
  }
}
.tm-sec1 p {
  color: #333333;
  margin: 0 auto 1.25em;
  font-size: 1.125em;
  line-height: 1.4;
}
.tm-sec1 .tm-hist-imgs {
  width: 100%;
  margin: 0 auto;
}
.tm-sec1 .button {
  font-size: 112.5%;
  line-height: 1.5rem;
  margin: 1.25rem 0 0;
}

/*========================
TEAM - PEOPLE
=========================*/
.tm-sec2 {
  background: #f2f2f2;
  padding: 1.25em 0;
  text-align: center;
}
@media (min-width: 768px) {
  .tm-sec2 {
    padding: 5em 0 1.25em;
  }
}
.tm-sec2 .content {
  margin: 0 0 2.5em;
}
.tm-sec2 .person, .tm-sec2 .modal-person {
  margin: 0 auto 3.75em;
  text-align: center;
}
.tm-sec2 .person .name, .tm-sec2 .modal-person .name {
  font-size: 1.125em;
  line-height: 1.3;
  font-family: "Merriweather", serif;
  font-weight: 700;
  margin: 0.5em 0 0;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.tm-sec2 .person .title, .tm-sec2 .modal-person .title {
  color: #333333;
  margin: 0 auto;
  font-size: 1.125em;
  line-height: 1.3;
}
.tm-sec2 .person button.close, .tm-sec2 .modal-person button.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.8125em;
  font-size: 1.25em;
}
.tm-sec2 .modal-person {
  text-align: left;
  margin: 0;
  padding: 1em;
  border-bottom: 0.0625em solid #909090;
}
.tm-sec2 .modal-person .contain {
  display: inline-block;
}
.tm-sec2 .modal-person .name {
  margin: 1.25em 0 0.1875em;
}
.tm-sec2 .modal-person .title {
  display: inline-block;
  position: relative;
  top: -0.25em;
}
.tm-sec2 .modal-person .icon {
  position: relative;
  display: inline-block;
  bottom: -0.3125em;
}
.tm-sec2 .modal-person .icon img {
  width: 1.5625em;
}
.tm-sec2 .modal-person-desc {
  padding: 1em 1.25em 2.5em;
}
.tm-sec2 .modal-person-desc img {
  width: 100%;
  margin: 0 0 1.25em;
}
@media (min-width: 768px) {
  .tm-sec2 .modal-person-desc img {
    float: left;
    max-width: 18.75em;
    margin: 0 1.25em 0 0;
  }
}
.tm-sec2 .modal-person-desc p {
  font-size: 1.125em;
  line-height: 1.4;
  margin: 0 0 0.75em;
  text-align: center;
}
@media (min-width: 768px) {
  .tm-sec2 .modal-person-desc p {
    text-align: left;
  }
}
.tm-sec2 .button {
  font-size: 1em;
  line-height: 1.3;
  margin: 1em 0 0;
  cursor: pointer;
}
.tm-sec2 .arrow {
  font-size: 1.25em;
}
.tm-sec2 .pri-name1 img {
  width: 9.0625em;
  margin: 0 auto -0.1875em;
}
.tm-sec2 .pri-name2 img {
  width: 9.375em;
  margin: 0 auto -0.1875em;
}

/*========================
CONTACT - HERO
=========================*/
.gtu-ct-hero {
  position: relative;
  display: table;
  width: 100%;
  padding: 8.125em 0 6.25em;
  background: #00457C;
}
@media (min-width: 992px) {
  .gtu-ct-hero {
    height: 100vh;
    padding: 0;
  }
}
@media (min-width: 2560px) {
  .gtu-ct-hero {
    height: 50em;
  }
}
.gtu-ct-hero .hero {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}
.gtu-ct-hero .hero-title {
  width: 100%;
  padding: 1.875em;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .gtu-ct-hero .hero-title {
    width: 80%;
  }
}
.gtu-ct-hero .hero-title .page-title {
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
  font-family: "Merriweather", serif;
  margin: 0 0 0.3125em;
}
.gtu-ct-hero .hero-title h1 {
  font-size: 2.1875em;
  line-height: 1.2;
  margin: 0 auto 0.625em;
}
@media (min-width: 992px) {
  .gtu-ct-hero .hero-title h1 {
    font-size: 3.125em;
    line-height: 1.2;
  }
}

/*========================
CONTACT - FORM
=========================*/
.ct-sec1 {
  padding: 2.5em 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .ct-sec1 {
    padding: 15.625em 0 5em;
  }
}
.ct-sec1 #gtu-contact-general, .ct-sec1 #gtu-contact-jobs, .ct-sec1 #gtu-contact-ba {
  display: none;
}
.ct-sec1 .ba-only {
  display: none;
}
.ct-sec1 .question {
  font-size: 1.5625em;
  font-family: "Merriweather", serif;
  line-height: 1.3;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.5em;
}
.ct-sec1 .question-menu {
  position: relative;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}
.ct-sec1 .question-menu .menu {
  width: 100%;
  background: #FFFFFF;
  margin: 0 auto 2.5em;
  padding: 1em 0 0;
  height: 3.5em;
  position: relative;
}
.ct-sec1 .question-menu .menu p {
  font-size: 1.125em;
  line-height: 1.3;
  text-indent: 0.6875em;
  margin: 0;
  color: #333333;
}
.ct-sec1 .question-menu .menu p i {
  position: absolute;
  color: #009adf;
  right: 0.3125rem;
  font-size: 1.875rem;
}
.ct-sec1 .question-menu .menu ul.nav {
  text-align: left;
  width: 100%;
  display: none;
  text-indent: 1em;
  color: #FFFFFF;
  margin: 1em 0;
  border-bottom: 0.0625em solid #f2f2f2;
}
.ct-sec1 .question-menu .menu ul.nav li {
  background: #FFFFFF;
  padding: 0.9375em 0;
  font-size: 1.125em;
  border-top: 0.0625em solid #f2f2f2;
  color: #333333;
}
.ct-sec1 .question-menu .menu ul.nav li:hover {
  border-bottom: 0.125em solid #009adf;
}
.ct-sec1 .contact {
  position: relative;
}
.ct-sec1 .contact label {
  display: block;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  font-size: 1.125em;
  margin: 0 0 0.3125em;
}
.ct-sec1 .contact input[type=text], .ct-sec1 .contact input[type=email], .ct-sec1 .contact select {
  width: 100%;
  height: 3.5em;
  padding: 0.625em;
  font-size: 1.125em;
  border-radius: 0;
  margin: 0 0 2.5em;
  outline: none;
  border: 0;
  transition: border 0.3s;
}
.ct-sec1 .contact input[type=text]:focus, .ct-sec1 .contact input[type=email]:focus, .ct-sec1 .contact select:focus {
  border-bottom: 0.375em solid #009adf;
}
.ct-sec1 .contact input[type=file] {
  color: #FFFFFF;
}
.ct-sec1 .contact textarea {
  resize: none;
  width: 100%;
  line-height: 1.3;
  margin: 0 0 1.875em;
  border-radius: 0;
  border: 0;
  padding: 1em;
}
.ct-sec1 .contact .upload {
  display: block;
  margin: 0 0 2.5em;
}
.ct-sec1 .contact select:focus {
  border-bottom: 0;
}
.ct-sec1 .contact .form-button {
  text-align: center;
  width: 100%;
  border: 0;
  border-radius: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  outline: 0;
  background: #009adf;
  color: #FFFFFF;
  height: 3.125em;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  margin: 0 auto;
  transition: all 0.3s ease;
  margin: 0 0 3.75em;
}
@media (min-width: 768px) {
  .ct-sec1 .contact .form-button {
    width: 18.75em;
    margin: 0.8125em 0 0;
  }
}
@media (min-width: 768px) {
  .ct-sec1 .contact-text {
    margin: 0 0 0 1em;
  }
}
.ct-sec1 .contact-text a {
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.ct-sec1 .contact-text a:hover {
  color: #009adf;
}
.ct-sec1 .contact-text .label {
  font-family: "Merriweather", serif;
  font-size: 1em;
  color: #FFFFFF;
  font-weight: 700;
  border-bottom: 0.0625em solid;
  padding: 1em 0;
}
.ct-sec1 .contact-text .label:last-child {
  border-bottom: 0;
}
.ct-sec1 .contact-text .label .icons {
  position: relative;
  top: 0.4375em;
  padding: 0.625em;
}
.ct-sec1 .contact-text .label .text {
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  font-weight: 400;
}

/*========================
MISC - LINKS TO OTHER PGS
=========================*/
.misc-links {
  padding: 3.75em 0 0;
  text-align: center;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .misc-links {
    padding: 5em 0;
  }
}
.misc-links h2 {
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
}
.misc-links p {
  color: #333333;
  margin: 0 auto;
  font-size: 1.125em;
  line-height: 1.3;
}
.misc-links .button {
  font-size: 1.125em;
  line-height: 1.3;
  margin: 1.875rem 0 0;
}
.misc-links .arrow {
  vertical-align: middle;
}
.misc-links .content {
  margin: 0 0 3.75rem;
}
@media (min-width: 992px) {
  .misc-links .content {
    margin: 0;
  }
}
.misc-links .pg-imgs {
  width: 100%;
  margin: 0 auto 1.875em;
}

/*========================
CONTACT - THANKS
=========================*/
.gtu-thanks {
  position: relative;
  display: table;
  width: 100%;
  height: 95vh;
}
@media (min-width: 768px) {
  .gtu-thanks {
    height: 100vh;
  }
}
.gtu-thanks .img1 {
  height: 95vh;
  width: 100%;
  position: absolute;
}
@media (min-width: 768px) {
  .gtu-thanks .img1 {
    height: 100vh;
  }
}
.gtu-thanks .img1 {
  background: url("../assets/whatwedo/img3.jpg") center center;
  background-size: cover;
}
.gtu-thanks .overlay {
  background: rgba(0, 69, 124, 0.8);
  position: absolute;
  height: 95vh;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .gtu-thanks .overlay {
    height: 100vh;
  }
}
.gtu-thanks .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}
.gtu-thanks h1 {
  font-size: 112.5%;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
}
.gtu-thanks p {
  margin: 0 auto;
  font-size: 137.5%;
  line-height: 1.75rem;
}
.gtu-thanks .check {
  font-size: 3.75rem;
  margin: 0 0 1.25rem;
}
.gtu-thanks .back {
  text-align: center;
  margin: 5rem auto 0;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}
.gtu-thanks .back:hover {
  color: #009adf;
}
.gtu-thanks .back .goingback {
  margin: 0 0.3125rem 0 0;
  vertical-align: middle;
  display: inline-block;
  color: #009adf;
}

/*========================
FOOTER - SOCIAL
=========================*/
.footer-sec1 {
  background: #FFFFFF;
  padding: 5em 1.25em;
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer-sec1 h1 {
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  color: #00457C;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
.footer-sec1 p {
  color: #333333;
  margin: 0 auto 2em;
  max-width: 64em;
  font-size: 1.375em;
  line-height: 1.3;
}
.footer-sec1 .social img {
  width: 3.125em;
  margin: 0 0.3125em;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .footer-sec1 .social img {
    margin: 0 0.1875em;
  }
}
.footer-sec1 .social img:hover {
  transform: scale(1.3);
}

/*========================
FOOTER - CONTACT
=========================*/
.footer-sec2 {
  padding: 5em 1.25em;
  background: #00457C;
  text-align: center;
  color: #FFFFFF;
}
.footer-sec2 h1 {
  font-size: 1.25em;
  line-height: 1.5;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
}
@media (min-width: 768px) {
  .footer-sec2 h1 {
    font-size: 1.375em;
    line-height: 1.625em;
  }
}
.footer-sec2 p {
  color: #FFFFFF;
  margin: 0.3125em auto 1.25em;
  font-size: 1.375em;
  line-height: 1.3;
  padding: 0 1em;
}
.footer-sec2 .button {
  border-bottom: 0.1875em solid #009adf;
  color: #FFFFFF;
  font-family: "Merriweather", serif;
  animation: button 1s infinite alternate;
  margin: 0 auto 0;
  font-size: 1.25em;
  display: inline-block;
  padding: 0 0 0.3125em;
}
.footer-sec2 .button:hover ~ .arrow {
  color: #009adf;
}
@-webkit-keyframes button {
  0% {
    border-bottom: 0.1875em solid #FFFFFF;
  }
  100% {
    border-bottom: 0.1875em solid #009adf;
  }
}
.footer-sec2 .arrow {
  color: #FFFFFF;
  transition: all 0.3s ease;
  position: relative;
  left: 0;
  top: -0.25em;
  font-size: 1.75em;
}
.footer-sec2 .arrow:hover {
  color: #009adf;
}

/*========================
FOOTER - MADE BY
=========================*/
.footer-sec3 {
  background: #333333;
  color: #FFFFFF;
  padding: 0.5em 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer-sec3 p {
  font-size: 0.8125em;
}

/*==================
COOKIE CONSENT
==================*/
/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  border-radius: 0;
  line-height: 1.5;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: white;
  background: #024982;
  border-top: 0.0625em solid #002F54;
}

.alert {
  border: 0;
  padding: 1em;
}

.cookiealert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.cookiealert a {
  text-decoration: underline;
  color: white;
}

.cookiealert .acceptcookies {
  vertical-align: baseline;
  display: block;
  font-size: 0.875em;
  line-height: 1.5;
}

.acceptcookies {
  padding: 0.625em;
  text-align: center;
  margin: 1em auto 0;
  border-radius: 0;
  background: #009adf;
  width: 6.875em;
  color: white;
  border: 0;
}

@media (min-width: 768px) {
  .alert {
    padding: 0 0 0.9375em;
  }
  .cookiealert .acceptcookies {
    margin-left: 1.875em;
    display: inline;
  }
}