/* (c)Copyright 2014 - 2021 Vivus Hub and Seun Oboite All rights reserved */


/* General css */

.column-align-text p,
h3 {
  text-align: center;
}


/*homepage*/


/* Making sure HTML 5 oiroperties works in older browsers */

header,
section,
footer,
aside,
nav,
main,
article,
figure {
  display: block;
}

.error {
  color: red;
  font-size: 80%;
}

body {
  font-family: 'Open Sans', sans-serif;
  padding: 80px 10px 0px;
  opacity: 0.9;
}


/* vertical and horizontal alignment of text in full screen image */

.fill-text h3 {
  text-align: center;
  color: #fff;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 300%;
}

.main-page a:hover {
  text-decoration: none;
}

.vertical-line {
  border-bottom: thick solid #0f0f0f;
}

.navbar {
  margin-bottom: 0px;
  padding: 30px 15px;
  transition: 1s all;
  -webkit-transition: all 0.5s;
}

.navbar img {
  width: 70%;
  height: 70%;
  max-height: 120px;
  max-width: 120px;
}

@media (max-width: 400px) {
  .navbar-header {
    position: relative;
  }
  .navbar img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 70%;
    height: 100%;
  }
}

.navbar a {
  transition: 1s all;
  -webkit-transition: 1s all;
}

.navbar a:hover {
  opacity: 0.4;
  letter-spacing: .3em;
  transition: 1s all;
  -webkit-transition: 1s all;
}

.text-banner a {
  transition: 1s all;
  -webkit-transition: 1s all;
}

.text-banner a:hover {
  opacity: 0.4;
  letter-spacing: .3em;
  transition: .7s all;
}

.cbp-af-header-shrink {
  padding: 5px 0px;
  opacity: 0.9;
}

.fill-screen {
  background-size: cover;
  background-position: center;
}

.down-button {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
}

.down-button i {
  color: white;
}

.fixed-attachment {
  background-attachment: scroll;
}

.home-intro h3 {
  color: #fff;
  text-align: center;
  font-family: 'Poiret One', cursive;
  margin: auto;
  position: relative;
  top: 40%;
  transform: translateY(-60%);
  font-size: 250%;
}


/*@media screen and (max-width: 320px) and (max-height: 480px) {
    .home-intro h3 (
    font-size: 150%;
    )
}
@media screen and (min-width: 1024px) and (min-height: 768px){
	.home-intro h3 {
    font-size: 400%;
    }
}*/

.home-intro span {
  color: #5cb85c;
}


/**************************************************/


/******************* Project **********************/


/**************************************************/

.technology {
  padding: 30px 0px;
}

.eyecatcher {
  color: #e51b1b;
  font-size: 90%;
}

.technology h2 {
  text-align: center;
  font-size: 300%;
  color: #5cb85c;
}

.technology a:hover {
  text-decoration: none;
}

.technology h3 {
  text-align: center;
}

.technology img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/**************************************************/


/******************** Media ***********************/


/**************************************************/

.media {
  padding: 30px 0px;
}

.media h2 {
  font-size: 300%;
  text-align: center;
}

.media img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.media h3 {
  text-align: center;
}

.yours {
  background: #7ad4b7;
}

.yours h3 {
  font-size: 2500%;
  text-align: center;
}

@media (max-width: 900px) {
  .yours h3 {
    font-size: 1000%;
  }
}

@media (max-width: 720px) {
  .yours h3 {
    font-size: 800%;
  }
}


/**************************************************/


/********************* Connect ********************/


/**************************************************/

.connect {
  padding: 20px;
}

.connect img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.connect h2 {
  text-align: center;
}

@media (max-width: 720px) {
  .connect h3 {
    text-align: center;
  }
}

.connect a:hover {
  text-decoration: none;
}

.iframe {
  text-align: center;
}

.iframe-main {
  box-shadow: 1px 10px 10px #0f0f0f;
}


/**************************************************/


/******************* Portfolio ********************/


/**************************************************/

.portfolio {}

.portfolio h4 {
  text-align: center;
}

.btn {
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}


/**************************************************/


/*********************** Blog *********************/


/**************************************************/

.blog {
  padding: 40px 0px;
}

.blog h2 {
  font-size: 300%;
  text-align: center;
}

.blog-link:hover {
  background: #000;
  color: #fff;
  opacity: 0.8;
  letter-spacing: .1em;
  transition: .5s all;
  -webkit-transition: .5s all;
}

.blog-link {
  transition: .5s all;
  -webkit-transition: .5s all;
}


/**************************************************/


/********************* footer  ********************/


/**************************************************/

footer {
  background-color: #000;
  color: #ddd;
  padding: 5px;
  text-align: center;
}


/***** Heart *****/

.blink_me {
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blinker;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blinker;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
  0% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.0;
  }
  100% {
    opacity: 1.0;
  }
}

@-webkit-keyframes blinker {
  0% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.0;
  }
  100% {
    opacity: 1.0;
  }
}

@keyframes blinker {
  0% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.0;
  }
  100% {
    opacity: 1.0;
  }
}

#bs-example-navbar-collapse-1 a {
  color: #bbb;
  opacity: 0.4;
  transition: 1.2s all;
}

#bs-example-navbar-collapse-1 a:hover {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #000;
  letter-spacing: .3em;
  transition: 1s color, 1s letter-spacing;
}

.text-banner {
  text-align: center;
  margin: 2px 2px;
}

.text-banner h2 {
  font-size: 50px;
}

.text-banner p {
  font-size: 18px;
}

.contact-us {
  margin: 5px;
  text-align: center;
  padding-top: 80px;
  align-content: center;
  color: #fff;
}

.agreements a {
  font-size: 0.75em;
  align-content: center;
  color: #808080;
}

.agreements a:hover {
  color: #359;
}

.fa-twitter {
  color: #00aced;
}

.fa-youtube-play {
  color: #bb0000;
}

.fa-facebook-official {
  color: #3b5998;
}

.fa-github-square {
  color: #333333;
}

.star-gold {
  color: #e6ac39;
}

.social-icon a:hover {
  text-decoration: none;
}

.package ul {
  list-style-image: url('images/addition-icon.png')
}

.package a {
  color: #000;
  text-decoration: none;
}

.icons {
  padding: 10px 10px;
}

.last-page-content {
  font-size: 0.75em;
  background-color: #000;
  color: #ddd;
  padding: 5px;
  text-align: center
}

.btn-danger,
.twitter-follow-button {
  box-shadow: 1px 2px 2px #0f0f0f;
}

.fa-comments1,
.fa-cog1,
.fa-camera-retro1 {
  color: #000;
}


/* CONNECT */

.connect-header {
  text-align: center;
  padding-top: 10px;
}

.terms-of-use,
.privacy-policy,
.uni-surrey,
.term-help {
  padding-top: 70px;
}

.terms-of-use li {
  padding: 3px 3px;
}

.heart {
  color: #bb0000;
}

.copyright {
  font-size: .65em;
}

.align-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.highlight h3 {
  color: #9ba7ff;
}

.md-padding {
  padding-top: 25px;
  padding-bottom: 25px;
}

.template-list {
  background-color: #0f0f0f;
  box-shadow: 0px 10px 10px #0f0f0f;
}

.four-grid img {
  width: 50px;
  height: 50px;
  max-height: 40px;
  max-width: 40px;
}


/* Pulse Shrink */

@-webkit-keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  background-color: #7d6199;
  color: #fff;
}


/*  _______________________________________________ */


/*          Animate transitions for links */


/*  _______________________________________________ */

.hvr-pulse-shrink:hover,
.hvr-pulse-shrink:focus,
.hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  background-color: #7d6199;
  color: #fff;
}


/*  _______________________________________________ */


/*           code for animated blinking cursor */


/*  _______________________________________________ */

.typed-cursor {
  opacity: 1;
  font-weight: 100;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  -ms-animation: blink 0.7s infinite;
  -o-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

@-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/**************************************************/


/***************** Connect setup  *****************/


/**************************************************/

.setup p {
  text-align: justify;
  color: #fff;
}

.setup > .resources h3 {
  text-align: center;
}

.setup img {
  text-align: center;
}


/**************************************************/


/***************** Connect Home  ******************/


/**************************************************/

.pixels {
  text-align: center;
  position: relative;
  top: 40%;
  transform: translateY(-60%);
  color: #fff;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) { .pixels h3 {font-size: 300%;} }

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) { .pixels h3 {font-size: 300%;} }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) { .pixels h3 {font-size: 350%;} }

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) { .pixels h3 {font-size: 500%;} }

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { .pixels h3 {font-size: 500%;} }


.pixels a {
  color: #d11111;
  font-family: 'Poiret One', cursive;
}

.pixels a:hover {
  text-decoration: none;
}


/***************** Connect Home  ******************/

.served {
  padding-top: 30px;
}

n {
  font-size: 300%;
  font-family: 'Raleway', sans-serif;
}

e {
  font-size: 70%;
}


/***************** Connect Home  ******************/

.work h3 {
  text-align: center;
}


/***************** Connect Home  ******************/

.tour h3 {
  text-align: center;
}


/************** Connect storyboard  ******************/

.story-board-one {
  text-align: center;
}

.story-board-one hr {
  border: 0;
  height: 0.8px;
  background: #333;
  background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.story-board-one img {
  margin: auto;
}


/***************** Connect Home  ******************/

.network h3 {
  text-align: center;
  font-size: 200%;
}

.network h4 {
  margin: auto;
}

.network h5 {
  text-align: center;
  font-family: 'Lobster', cursive;
  font-size: 200%;
  font-weight: 300;
}


/***************** Connect Home  ******************/

.try {
  border-radius: 5px 20px 5px;
  background: #BADA55;
  width: 100px;
  height: 100px;
  text-align: center;
  padding: 40px;
}


/***************** Portfolio *********************/

.portfolio h3 {
  text-align: center;
  font-size: 300%;
}

.portfolio p {
  text-align: center;
}

.grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 320px;
  max-width: 480px;
  max-height: 360px;
  width: 48%;
  height: auto;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
}

.grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}

.buy {
  color: #fff;
  text-align: center;
}

.buy h3 {
  font-size: 200%;
}

.verticalline {
  border-left: thick solid red;
}

.guest {
  padding: 100px 0px;
}

.guest h3 {
  font-size: 200%;
}

.guest-one p {
  font-size: 120%;
}

.guest-one two {
  font-size: 80%;
}

.connect-contact {
  padding: 100px;
  color: #fff;
}

/***************** Terms  ******************/ 
.term-of-agreement {
    text-align: justify;
    font-size: 90%;
    }