@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&family=Josefin+Sans:wght@500&display=swap');
@import url("https://fonts.googleapis.com/css?family=Titillium+Web");
@import url('https://fonts.googleapis.com/css?family=Montserrat:600|Open+Sans');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');




/* Header 1*/

.header_1 {
  background:#fff;
}

.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  float: center;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #eee;
}

.btn-header {
  text-decoration: none;
  color: #000;
  border: 0.01rem grey solid;
  padding: 8px;
  text-transform: uppercase;
  background: #fff;
  font-weight:lighter;
  transition:0.5s ease-in;
  border-radius: 0.1rem;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.btn-header:hover {
  background:#000;
  color: #fff;
  text-decoration: none;
  
}
.container-head {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.container-head p {
  font-size: 3rem;
  padding: 0.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: left;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}
.container-head p span.typed-text {
  font-weight: normal;
  color: #6F8BA4;
}
.container-head p span.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.container-head p span.cursor.typing {
  animation: none;
}

.head-text {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight:lighter;
  font-size:0.8rem;
  float: left;
  text-align: left;
}


@keyframes blink {
  0%  { background-color: #ccc; }
  49% { background-color: #ccc; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #ccc; }
}

























.bg-white{
  background-color: #121212;
}


.bg-custom{
  background-color: #121212;
}

.container-services{
  background-color: #121212;
}
  
.navbar-brand {
    font-family: 'Be Vietnam Pro', sans-serif;
}

.navbar .navbar-brand {
  font-size: 20px;
  
}

.nav-item {
  font-size: 20px;
  text-transform: none;
}

#nav-btn {
  background: #353a40;
  border: 1px transparent solid;
  border-radius: 5px;
  padding: 8px;
}



.navbar .nav-link {
  font-size: 20px;
  margin-left: 10px;
  font-family: 'Roboto', sans-serif;
}
.fa-bars {
  color: #fff;
  font-size: 20px;
  transition: 0.8s;
}


@media  (max-width:870px)
{

  .header_1 {
    display: flex;
    justify-content: center;
    align-items: center;
  }



  .header {
    display: flex;
    flex-direction: column-reverse;
    justify-content:space-evenly;
    align-items: center;
    float: center;

  }
  .container-head {
    text-align: center;
    float: center;
    width: 63%;
  }
 #head-img  {

   width: 300px;
 }


}
/*Slider */


/* Services */






.center

a {
  text-decoration: none !important;
}
.center-heading {
text-align: center;
}



.center-heading .section-title {
font-weight: 400;
font-size: 28px;
color: #fff;
letter-spacing: 1.1px;
line-height: 38px;
margin-bottom: 20px;
}

.center-heading.colored .section-title {
color: #ffffff;
}

.center-text {
text-align: center;
font-weight: 400;
font-size: 16px;
color: #6F8BA4;
line-height: 28px;
letter-spacing: 1px;
margin-bottom: 50px;
}

.center-text.colored {
color: #C7E5FF;
}

.center-text p {
margin-bottom: 30px;
color: #fff;
}


:root{
  --background-dark: #2d3548;
  --text-light: rgba(255,255,255,0.6);
  --text-lighter: rgba(255,255,255,0.9);
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --width-container: 1200px;
}

*{
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

body{
  height: 100%;
}

.hero-section{
  align-items: flex-start;
  display: flex;
  min-height: 100%;
  justify-content: center;
  padding: var(--spacing-l) var(--spacing-xl);
}

.card-grid{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: var(--spacing-l);
  grid-row-gap: var(--spacing-l);
  max-width: var(--width-container);
  width: 100%;
}

@media(min-width: 540px){
  .card-grid{
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media(min-width: 960px){
  .card-grid{
    grid-template-columns: repeat(4, 1fr); 
  }
}

.card{
  list-style: none;
  position: relative;
}

.card:before{
  content: '';
  display: block;
  padding-bottom: 150%;
  width: 100%;
}

.card__background{
  background-size: cover;
  background-position: center;
  border-radius: var(--spacing-2);
  bottom: 0;
  filter: brightness(0.75) saturate(1.2) contrast(0.85);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  trsnsform: scale(1) translateZ(0);
  transition: 
    filter 200ms linear,
    transform 200ms linear;
}

.card:hover .card__background{
  transform: scale(1.05) translateZ(0);
}

.card-grid:hover > .card:not(:hover) .card__background{
  filter: brightness(0.5) saturate(0.1) contrast(1.2) blur(20px);

}

.card__content{
  left: 0;
  padding: var(--spacing-l);
  position: absolute;
  top: 0;
}

.card__category{
  color: var(--text-light);
  font-size: 2rem;
  margin-bottom: var(--spacing-s);
  text-transform: uppercase;
}

.card__heading{
  color: var(--text-lighter);
  font-size: 0.9rem;
  text-shadow: 2px 2px 20px rgb(0, 0, 0);
  line-height:1;
  font-weight: bolder;
  
}

/*About us */

.about {
  padding: 130px 0;
  background-color: #eee;
  max-width: 150vw;
}

.about .heading h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  padding: 0;

}

.about .heading h2 span {
  color: #F24259;
}

.about .heading p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #999999;
  margin: 20px 0 60px;
  padding: 0;
}

.about h3 {
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.about p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #999999;
  margin: 20px 0 15px;
  padding: 0;
}

.about h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 8px 0;
}

.about h4 i {
  color: #F24259;
  margin-right: 10px;
}

/*Clients CSS*/


#head-clients {
  text-align: center;
  color: #fff;
}

.clients-container {
  padding: 60px;
  padding-bottom: 50px;
}




body {
  background: #fff;
  font-size: 16px;padding: 0;margin: 0;
  font-family: 'proxima nova', 'open sans', 'Helvetica', sans-serif;
}
.Marquee {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-weight: 200;
  overflow: hidden;
}
.Marquee-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-animation: marquee 20s linear infinite running;
  -moz-animation: marquee 20s linear infinite running;
  -o-animation: marquee 20s linear infinite running;
  -ms-animation: marquee 20s linear infinite running;
  animation: marquee 20s linear infinite running;
}
.Marquee-content:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  -ms-animation-play-state: paused;
  animation-play-state: paused;
}
.Marquee-tag {
  width: 100%;
  margin: 0 0.5em;
  padding: 0.5em;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.Marquee-tag:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: pointer;
}
@-moz-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
@-o-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
.popup{width: 900px; margin: auto; text-align: center } 
.popup img{width: 200px; height: 200px; cursor: pointer } 
.show{z-index: 999; display: none; } 
.show .overlay{width: 120%; height: 100%; background: rgba(0,0,0,.66); position: absolute; top: 0; left: 0; } 
.show .img-show{width: 600px; height: 400px; background: #FFF; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); overflow: hidden } 
.img-show span{position: absolute; top: 0; right: 0; z-index: 99; cursor: pointer; color: #000; background: #fff; width: 35px; height: 35px; line-height: 35px; text-align: center;} 
.img-show img{width: 100%; height: 100%; position: absolute; top: 0; left: 0; }





/* Testimonals CSS*/

.fx-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fx-center-v {
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}
body {
background: #000;
}
h1,h2 {
font-family: 'Playfair Display', serif;
margin-bottom: 40px;
}
p, a {
font-family: 'Fauna One', serif;
font-size: 12px;
margin-bottom: 15px;
}
.info,
.button {
position: relative;
z-index: 9;
padding-bottom: 20px;
}
.info:nth-of-type(2) {
color: #eee;
}
.main-container {
position: relative;
max-width: 1049px;
width: 100%;
margin: 0 auto;
text-align: center;

color: #fff;
padding: 30px;
}
.main-container::before {
content:'';
position: absolute;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 250px;
background: #fff;
}
.heading {
position: relative;
padding-bottom: 54px;
}
/* .heading::before {
content:'';
position: absolute;
width: 50px;
height: 2px;
left: 50%;
-webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
bottom: -3px;
background: #eee;
} */
.review-tile {
margin: 5px 5px 45px 5px;
text-align: left;
}
.avatar {
padding: 0 10px 20px 0;
}
.avatar img {
background: #eee;
width: 70px;
height: 70px;
border-radius: 50%;
border: 3px solid #fff;
}
.review-tile_bottom {
position: relative;
background: #000000;  /* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

padding: 25px;
border-radius: 5px;
-webkit-box-shadow: 0px 11px 20px -8px rgba(0,0,0,0.75);
box-shadow: 0px 11px 20px -8px rgba(0,0,0,0.75);
-webkit-transition: .3s;
-o-transition: .3s;
transition: .3s;
}
.review-tile_bottom:hover {
-webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
        transform: translateY(-5px);
-webkit-box-shadow: 0px 15px 25px -8px rgba(0,0,0,0.8);
box-shadow: 0px 15px 25px -8px rgba(0,0,0,0.8);
}
.review-tile_bottom::before {
content: '';
position: absolute;
top: -10px;
left: 30px;
width: 0;
height: 0;
border-style: solid;
border-width: 0 10px 10px 10px;
border-color: transparent transparent #eee transparent;
}
/* .button {
display: block;
width: 150px;
padding: 15px;
margin: 0 auto;
background: #724a6c;
border-radius: 5px;
color: #fff;
text-decoration: none;
text-transform: uppercase;
-webkit-transition: .3s;
-o-transition: .3s;
transition: .3s;
}
.button:hover {
background: #442954;
} */

/*swiper override*/
.swiper-pagination-bullet-active {
background: #442954!important;
}
.swiper-wrapper,
.swiper-slide {
height:  auto;
}


/*Contact us */

