/*=========================
Globals
==========================*/
html * {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 500;
  scroll-behavior: smooth;
}

/*=========================
Spacing
==========================*/

.space-top {
  margin-top: 6em;
}

.space-bottom {
  margin-bottom: 6em;
}

.space-top-bottom {
  margin-top: 6em;
  margin-bottom: 6em;
}

/*=========================
Navbar 
==========================*/
.navbar-nav {
  float: none;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.navbar-nav>li {
  display: inline-block;
  float: none;
  text-transform: uppercase;
  font-size: 0.75em;
}

.nav-link {
  color: #000;
}

.nav-link:hover {
  color: grey;
}

/*=========================
Display Block Img
==========================*/
/*img {
  display: block;
  max-width: 100%;
  height: auto;
}
*/

/*=========================
Partner-Brands
==========================*/



/*=========================
Cover Heading h1
==========================*/
.above-line {
  height: 75vh;
}

.head-1 {
  color: black;
  margin-top: 4em;
  font-family: "Montserrat", sans-serif;
  font-size: 3em;
  font-weight: 400;
  text-transform: uppercase;
}

.head-1 a {
  color: black;
}

.head-2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  font-weight: 600;
}

.head-3 {
  font-size: 1.1em;
  font-weight: 700;
}

.arrow {
  margin-top: 4em;
  animation: bounce 1s ease-in-out 1s infinite alternate none;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

.bouncing {
  margin-top: 4em;
  animation: bouncing 1s ease-in-out 1s infinite alternate none;
}

@keyframes bouncing {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

/*=========================
Grey Containers
==========================*/

.grey {
  /*background-image: linear-gradient(#444343, #272727);*/
  background-color: rgb(250, 250, 250);
  min-height: 45vh;
  color: black;
}

.grey
/*=========================
HR Breaks
==========================*/

#nav-break {
  width: 55%;
  margin: auto;
}

@media (max-width: 992px) {
  #nav-break {
    display: none;
  }
}

.break {
  width: 55%;
  margin: auto;
}

.small-break {
  width: 10%;
  margin: auto;

}

/*=========================
Marks / Highlights
==========================*/

mark {
  background-color: rgb(186, 245, 233);
  border-radius: 6px;
}

.starting-at {
  font-size: smaller;
}

/*=========================
Typewriter Effect
==========================*/

.typeWrite {
  text-decoration: none;
}

/*=========================
Buttons
==========================*/

.btn-dark {
  border-radius: 40px;
}

.btn-dark:hover {
  background-color: white;
  color: black;
}

/*=========================
Service Cards
==========================*/

.card-header {
  background-color: rgb(250, 250, 250);
  font-weight: 600;
}

.card-title {
  padding-top: 1em;
  font-weight: 800;
}

.card-footer {
  background-color: rgb(250, 250, 250);
  font-size: smaller;
  font-weight: 600;
}

/*=========================
Testimonials
==========================*/
.testimonials {
  position: relative;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials::before {
  content: "";
  background-image: url(https://images.unsplash.com/photo-1445205170230-053b83016050?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1502&q=80);
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.15;
  z-index: -1;
}

/*=========================
Our Work Gallery
==========================*/
.photo-row {
  display: -ms-flexbox;
  /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap;
  /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.photo-column {
  -ms-flex: 25%;
  /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.photo-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .photo-column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .photo-column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

/*=========================
Footer
==========================*/

footer {
  min-height: 20vh;
  background-color: #000;
}


/*=========================
Particles
==========================*/

body {
  background: #ffffff;
}

.particle {
  position: absolute;
  border-radius: 50%;
}

@-webkit-keyframes particle-animation-1 {
  100% {
    transform: translate3d(20vw, 37vh, 62px);
  }
}

@keyframes particle-animation-1 {
  100% {
    transform: translate3d(20vw, 37vh, 62px);
  }
}

.particle:nth-child(1) {
  -webkit-animation: particle-animation-1 60s infinite;
  animation: particle-animation-1 60s infinite;
  opacity: 0.66;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
  transform: translate3d(81vw, 81vh, 93px);
  background: #4ad926;
}

@-webkit-keyframes particle-animation-2 {
  100% {
    transform: translate3d(42vw, 39vh, 21px);
  }
}

@keyframes particle-animation-2 {
  100% {
    transform: translate3d(42vw, 39vh, 21px);
  }
}

.particle:nth-child(2) {
  -webkit-animation: particle-animation-2 60s infinite;
  animation: particle-animation-2 60s infinite;
  opacity: 0.06;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
  transform: translate3d(78vw, 61vh, 47px);
  background: #2659d9;
}

@-webkit-keyframes particle-animation-3 {
  100% {
    transform: translate3d(56vw, 51vh, 78px);
  }
}

@keyframes particle-animation-3 {
  100% {
    transform: translate3d(56vw, 51vh, 78px);
  }
}

.particle:nth-child(3) {
  -webkit-animation: particle-animation-3 60s infinite;
  animation: particle-animation-3 60s infinite;
  opacity: 0.72;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
  transform: translate3d(30vw, 47vh, 23px);
  background: #d926c1;
}

@-webkit-keyframes particle-animation-4 {
  100% {
    transform: translate3d(80vw, 79vh, 47px);
  }
}

@keyframes particle-animation-4 {
  100% {
    transform: translate3d(80vw, 79vh, 47px);
  }
}

.particle:nth-child(4) {
  -webkit-animation: particle-animation-4 60s infinite;
  animation: particle-animation-4 60s infinite;
  opacity: 0.8;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
  transform: translate3d(90vw, 68vh, 81px);
  background: #d926c1;
}

@-webkit-keyframes particle-animation-5 {
  100% {
    transform: translate3d(48vw, 60vh, 95px);
  }
}

@keyframes particle-animation-5 {
  100% {
    transform: translate3d(48vw, 60vh, 95px);
  }
}

.particle:nth-child(5) {
  -webkit-animation: particle-animation-5 60s infinite;
  animation: particle-animation-5 60s infinite;
  opacity: 0.56;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  transform: translate3d(87vw, 34vh, 74px);
  background: #262fd9;
}

@-webkit-keyframes particle-animation-6 {
  100% {
    transform: translate3d(64vw, 66vh, 62px);
  }
}

@keyframes particle-animation-6 {
  100% {
    transform: translate3d(64vw, 66vh, 62px);
  }
}

.particle:nth-child(6) {
  -webkit-animation: particle-animation-6 60s infinite;
  animation: particle-animation-6 60s infinite;
  opacity: 0.71;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
  transform: translate3d(13vw, 25vh, 59px);
  background: #26d9b8;
}

@-webkit-keyframes particle-animation-7 {
  100% {
    transform: translate3d(79vw, 17vh, 94px);
  }
}

@keyframes particle-animation-7 {
  100% {
    transform: translate3d(79vw, 17vh, 94px);
  }
}

.particle:nth-child(7) {
  -webkit-animation: particle-animation-7 60s infinite;
  animation: particle-animation-7 60s infinite;
  opacity: 0.01;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -1.4s;
  animation-delay: -1.4s;
  transform: translate3d(4vw, 33vh, 59px);
  background: #8026d9;
}

@-webkit-keyframes particle-animation-8 {
  100% {
    transform: translate3d(34vw, 49vh, 27px);
  }
}

@keyframes particle-animation-8 {
  100% {
    transform: translate3d(34vw, 49vh, 27px);
  }
}

.particle:nth-child(8) {
  -webkit-animation: particle-animation-8 60s infinite;
  animation: particle-animation-8 60s infinite;
  opacity: 0.57;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -1.6s;
  animation-delay: -1.6s;
  transform: translate3d(24vw, 15vh, 45px);
  background: #d92650;
}

@-webkit-keyframes particle-animation-9 {
  100% {
    transform: translate3d(35vw, 52vh, 53px);
  }
}

@keyframes particle-animation-9 {
  100% {
    transform: translate3d(35vw, 52vh, 53px);
  }
}

.particle:nth-child(9) {
  -webkit-animation: particle-animation-9 60s infinite;
  animation: particle-animation-9 60s infinite;
  opacity: 0.01;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -1.8s;
  animation-delay: -1.8s;
  transform: translate3d(16vw, 3vh, 43px);
  background: #d9262f;
}

@-webkit-keyframes particle-animation-10 {
  100% {
    transform: translate3d(85vw, 2vh, 44px);
  }
}

@keyframes particle-animation-10 {
  100% {
    transform: translate3d(85vw, 2vh, 44px);
  }
}

.particle:nth-child(10) {
  -webkit-animation: particle-animation-10 60s infinite;
  animation: particle-animation-10 60s infinite;
  opacity: 0.33;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
  transform: translate3d(23vw, 23vh, 83px);
  background: #2677d9;
}

@-webkit-keyframes particle-animation-11 {
  100% {
    transform: translate3d(22vw, 6vh, 98px);
  }
}

@keyframes particle-animation-11 {
  100% {
    transform: translate3d(22vw, 6vh, 98px);
  }
}

.particle:nth-child(11) {
  -webkit-animation: particle-animation-11 60s infinite;
  animation: particle-animation-11 60s infinite;
  opacity: 0.84;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -2.2s;
  animation-delay: -2.2s;
  transform: translate3d(25vw, 68vh, 76px);
  background: #2668d9;
}

@-webkit-keyframes particle-animation-12 {
  100% {
    transform: translate3d(79vw, 29vh, 90px);
  }
}

@keyframes particle-animation-12 {
  100% {
    transform: translate3d(79vw, 29vh, 90px);
  }
}

.particle:nth-child(12) {
  -webkit-animation: particle-animation-12 60s infinite;
  animation: particle-animation-12 60s infinite;
  opacity: 0.84;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
  transform: translate3d(57vw, 4vh, 78px);
  background: #d92656;
}

@-webkit-keyframes particle-animation-13 {
  100% {
    transform: translate3d(59vw, 81vh, 86px);
  }
}

@keyframes particle-animation-13 {
  100% {
    transform: translate3d(59vw, 81vh, 86px);
  }
}

.particle:nth-child(13) {
  -webkit-animation: particle-animation-13 60s infinite;
  animation: particle-animation-13 60s infinite;
  opacity: 0.26;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -2.6s;
  animation-delay: -2.6s;
  transform: translate3d(27vw, 17vh, 49px);
  background: #26d935;
}

@-webkit-keyframes particle-animation-14 {
  100% {
    transform: translate3d(83vw, 68vh, 60px);
  }
}

@keyframes particle-animation-14 {
  100% {
    transform: translate3d(83vw, 68vh, 60px);
  }
}

.particle:nth-child(14) {
  -webkit-animation: particle-animation-14 60s infinite;
  animation: particle-animation-14 60s infinite;
  opacity: 0.57;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -2.8s;
  animation-delay: -2.8s;
  transform: translate3d(45vw, 11vh, 99px);
  background: #26d9bb;
}

@-webkit-keyframes particle-animation-15 {
  100% {
    transform: translate3d(68vw, 41vh, 50px);
  }
}

@keyframes particle-animation-15 {
  100% {
    transform: translate3d(68vw, 41vh, 50px);
  }
}

.particle:nth-child(15) {
  -webkit-animation: particle-animation-15 60s infinite;
  animation: particle-animation-15 60s infinite;
  opacity: 0.87;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -3s;
  animation-delay: -3s;
  transform: translate3d(45vw, 10vh, 99px);
  background: #26d9c1;
}

@-webkit-keyframes particle-animation-16 {
  100% {
    transform: translate3d(53vw, 52vh, 90px);
  }
}

@keyframes particle-animation-16 {
  100% {
    transform: translate3d(53vw, 52vh, 90px);
  }
}

.particle:nth-child(16) {
  -webkit-animation: particle-animation-16 60s infinite;
  animation: particle-animation-16 60s infinite;
  opacity: 0.17;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -3.2s;
  animation-delay: -3.2s;
  transform: translate3d(71vw, 77vh, 4px);
  background: #2697d9;
}

@-webkit-keyframes particle-animation-17 {
  100% {
    transform: translate3d(53vw, 69vh, 86px);
  }
}

@keyframes particle-animation-17 {
  100% {
    transform: translate3d(53vw, 69vh, 86px);
  }
}

.particle:nth-child(17) {
  -webkit-animation: particle-animation-17 60s infinite;
  animation: particle-animation-17 60s infinite;
  opacity: 0.29;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -3.4s;
  animation-delay: -3.4s;
  transform: translate3d(23vw, 61vh, 65px);
  background: #26d9ca;
}

@-webkit-keyframes particle-animation-18 {
  100% {
    transform: translate3d(61vw, 70vh, 27px);
  }
}

@keyframes particle-animation-18 {
  100% {
    transform: translate3d(61vw, 70vh, 27px);
  }
}

.particle:nth-child(18) {
  -webkit-animation: particle-animation-18 60s infinite;
  animation: particle-animation-18 60s infinite;
  opacity: 0.57;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -3.6s;
  animation-delay: -3.6s;
  transform: translate3d(32vw, 33vh, 90px);
  background: #7dd926;
}

@-webkit-keyframes particle-animation-19 {
  100% {
    transform: translate3d(31vw, 10vh, 24px);
  }
}

@keyframes particle-animation-19 {
  100% {
    transform: translate3d(31vw, 10vh, 24px);
  }
}

.particle:nth-child(19) {
  -webkit-animation: particle-animation-19 60s infinite;
  animation: particle-animation-19 60s infinite;
  opacity: 0.04;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -3.8s;
  animation-delay: -3.8s;
  transform: translate3d(13vw, 82vh, 64px);
  background: #d92641;
}

@-webkit-keyframes particle-animation-20 {
  100% {
    transform: translate3d(7vw, 59vh, 65px);
  }
}

@keyframes particle-animation-20 {
  100% {
    transform: translate3d(7vw, 59vh, 65px);
  }
}

.particle:nth-child(20) {
  -webkit-animation: particle-animation-20 60s infinite;
  animation: particle-animation-20 60s infinite;
  opacity: 0.43;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -4s;
  animation-delay: -4s;
  transform: translate3d(25vw, 34vh, 25px);
  background: #80d926;
}

@-webkit-keyframes particle-animation-21 {
  100% {
    transform: translate3d(26vw, 74vh, 79px);
  }
}

@keyframes particle-animation-21 {
  100% {
    transform: translate3d(26vw, 74vh, 79px);
  }
}

.particle:nth-child(21) {
  -webkit-animation: particle-animation-21 60s infinite;
  animation: particle-animation-21 60s infinite;
  opacity: 0.07;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -4.2s;
  animation-delay: -4.2s;
  transform: translate3d(81vw, 69vh, 79px);
  background: #26d9ca;
}

@-webkit-keyframes particle-animation-22 {
  100% {
    transform: translate3d(12vw, 42vh, 49px);
  }
}

@keyframes particle-animation-22 {
  100% {
    transform: translate3d(12vw, 42vh, 49px);
  }
}

.particle:nth-child(22) {
  -webkit-animation: particle-animation-22 60s infinite;
  animation: particle-animation-22 60s infinite;
  opacity: 0.82;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -4.4s;
  animation-delay: -4.4s;
  transform: translate3d(62vw, 81vh, 33px);
  background: #5cd926;
}

@-webkit-keyframes particle-animation-23 {
  100% {
    transform: translate3d(68vw, 32vh, 97px);
  }
}

@keyframes particle-animation-23 {
  100% {
    transform: translate3d(68vw, 32vh, 97px);
  }
}

.particle:nth-child(23) {
  -webkit-animation: particle-animation-23 60s infinite;
  animation: particle-animation-23 60s infinite;
  opacity: 0.74;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -4.6s;
  animation-delay: -4.6s;
  transform: translate3d(1vw, 84vh, 99px);
  background: #7d26d9;
}

@-webkit-keyframes particle-animation-24 {
  100% {
    transform: translate3d(62vw, 44vh, 78px);
  }
}

@keyframes particle-animation-24 {
  100% {
    transform: translate3d(62vw, 44vh, 78px);
  }
}

.particle:nth-child(24) {
  -webkit-animation: particle-animation-24 60s infinite;
  animation: particle-animation-24 60s infinite;
  opacity: 0.29;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -4.8s;
  animation-delay: -4.8s;
  transform: translate3d(70vw, 46vh, 24px);
  background: #b226d9;
}

@-webkit-keyframes particle-animation-25 {
  100% {
    transform: translate3d(67vw, 40vh, 47px);
  }
}

@keyframes particle-animation-25 {
  100% {
    transform: translate3d(67vw, 40vh, 47px);
  }
}

.particle:nth-child(25) {
  -webkit-animation: particle-animation-25 60s infinite;
  animation: particle-animation-25 60s infinite;
  opacity: 0.48;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -5s;
  animation-delay: -5s;
  transform: translate3d(41vw, 34vh, 28px);
  background: #8826d9;
}

@-webkit-keyframes particle-animation-26 {
  100% {
    transform: translate3d(84vw, 59vh, 91px);
  }
}

@keyframes particle-animation-26 {
  100% {
    transform: translate3d(84vw, 59vh, 91px);
  }
}

.particle:nth-child(26) {
  -webkit-animation: particle-animation-26 60s infinite;
  animation: particle-animation-26 60s infinite;
  opacity: 0.19;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -5.2s;
  animation-delay: -5.2s;
  transform: translate3d(85vw, 58vh, 25px);
  background: #26d971;
}

@-webkit-keyframes particle-animation-27 {
  100% {
    transform: translate3d(22vw, 28vh, 42px);
  }
}

@keyframes particle-animation-27 {
  100% {
    transform: translate3d(22vw, 28vh, 42px);
  }
}

.particle:nth-child(27) {
  -webkit-animation: particle-animation-27 60s infinite;
  animation: particle-animation-27 60s infinite;
  opacity: 0.46;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -5.4s;
  animation-delay: -5.4s;
  transform: translate3d(70vw, 22vh, 71px);
  background: #d9bb26;
}

@-webkit-keyframes particle-animation-28 {
  100% {
    transform: translate3d(24vw, 35vh, 78px);
  }
}

@keyframes particle-animation-28 {
  100% {
    transform: translate3d(24vw, 35vh, 78px);
  }
}

.particle:nth-child(28) {
  -webkit-animation: particle-animation-28 60s infinite;
  animation: particle-animation-28 60s infinite;
  opacity: 0.16;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -5.6s;
  animation-delay: -5.6s;
  transform: translate3d(87vw, 33vh, 3px);
  background: #9a26d9;
}

@-webkit-keyframes particle-animation-29 {
  100% {
    transform: translate3d(82vw, 68vh, 61px);
  }
}

@keyframes particle-animation-29 {
  100% {
    transform: translate3d(82vw, 68vh, 61px);
  }
}

.particle:nth-child(29) {
  -webkit-animation: particle-animation-29 60s infinite;
  animation: particle-animation-29 60s infinite;
  opacity: 0.94;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -5.8s;
  animation-delay: -5.8s;
  transform: translate3d(6vw, 78vh, 52px);
  background: #d9c726;
}

@-webkit-keyframes particle-animation-30 {
  100% {
    transform: translate3d(59vw, 22vh, 20px);
  }
}

@keyframes particle-animation-30 {
  100% {
    transform: translate3d(59vw, 22vh, 20px);
  }
}

.particle:nth-child(30) {
  -webkit-animation: particle-animation-30 60s infinite;
  animation: particle-animation-30 60s infinite;
  opacity: 0.91;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -6s;
  animation-delay: -6s;
  transform: translate3d(33vw, 56vh, 66px);
  background: #d92674;
}