@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&display=swap');

@font-face {
  font-family: 'springwood_brush_demoregular';
  src: url('../fonts/springwood_brush_demo-webfont.woff2') format('woff2'),
       url('../fonts/springwood_brush_demo-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root{
 --color:#0B395D;
}


*{
  font-family: 'Poppins', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  /* text-transform: capitalize; */
  /* text-transform: uppercase; */
  transition: all .2s linear;
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 10px;
  
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(197, 197, 197); 
  border-radius: 10px;
}
 

::-webkit-scrollbar-thumb {
  background: #ca1f25; 
  border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
  background: #a0191e 
}


html{
  font-size: 52.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  
}

body{
  overflow-x: hidden;
  margin:0;
}

.heading{
  margin:2rem;
  padding-top: 6rem;
  display: inline-block;
  font-size: 2.6vw;
  color:var(--color);
  position: relative;
  letter-spacing: .2rem;
  font-family: cursive !important;
  
}

.heading::before, .heading::after{
  content: '';
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  border-top:.4rem solid var(--color);
  border-left:.4rem solid var(--color);
}

.heading::before{
  top:5.8rem; left: -2rem;
}

.heading::after{
  bottom:-.5rem; right: -2rem;
  transform: rotate(180deg);
}

.btn{
  outline: none;
  border: none;
  border-radius: 5rem;
  background: var(--color);
  color:#fff;
  cursor: pointer;
  height:3.5rem;
  width: 15rem;
  font-size: 1.7rem;
  box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

.btn:hover{
  letter-spacing: .1rem;
  opacity: .8;
}


.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding:0rem 1.2rem;
  position: fixed;
  top:0; left: 0;
  z-index: 100;
  background-color:none;
}

.header .logo{
  color:#ffffff;
}

.image-logo{
  margin-left: 10px !important;
  vertical-align: middle;
  margin-bottom: 5px;
   
}
.image-logo2{
  margin-left:1px !important;
  vertical-align: middle;
  margin-bottom: 7px;
  animation: rotate 1s;
  animation-delay: 2.4s;
}
@keyframes rotate {
  100% {
  transform: rotate(360deg);
  }
}
.header .logo i{
  padding:0 .5rem;
}

.header .navbar ul{
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header .navbar ul li{
  margin:0 1.5rem;
}

.header .navbar ul li a{
  font-size: 2.1rem;
  color:rgb(255, 255, 255);
  font-weight: 500;
}

.header .navbar ul li a:hover{
  color:#d48d19 !important;
}

header .navbar ul li a.active, 
header .navbar ul li a:hover {
  color: #f1a428 !important;
}

.header .fa-bars{
  color: black;
  cursor: pointer;
  font-size: 3rem;
  display: none;
}


.home{
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden !important;
}
@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}
.home .banner{
  margin-left: 5%;
  position: absolute;
  text-shadow: 2px 2px 11px #0f3a5dd4;
  margin-bottom: 12rem ;
}
.home .banner .line-1{
  border-right: 2px solid rgba(255,255,255,.75);
  white-space: nowrap;
  overflow: hidden;
  font-family: cursive;
  line-height:1.7em;
}
.wesal-it{
  cursor: pointer;
}
.wesal-it:hover{
  color: #5b9cd1d4 !important;
}
.wesal-it .arrow{
  color: #ffffff;
  margin: 1em 0;

}
.wesal-it:hover .arrow{
  color: #5b9cd1d4 !important;
  padding-left: 5px;

}
/* Animation */
.home .banner .anim-typewriter{
animation: typewriter 3s steps(64) 1s 1 normal both,
blinkTextCursor 500ms steps(64) infinite normal;
}
@keyframes typewriter{
from{
	width: 0;
	/*text-shadow: transparent;*/
	}
to{
	width: 67vw;
	/*text-shadow:0 0 3px #fff, 0 0 8px #4dceff, 0 0 8px #4dceff, 0 0 1px #4dceff, 0 0 9px #4dceff, 0 0 0px #4dceff, 0 0 6px #4dceff*/
	}
}
@keyframes blinkTextCursor{
from{border-right-color: rgb(248, 248, 248);}
to{border-right-color: transparent;}
}

.home .banner h1{
  color: #fff;
  font-size: 3vw;
  text-shadow: 0 0.3rem 0.5rem rgb(0 0 0 / 30%);
  
}
.home .banner span{
  font-size: 2.5vw;
}
.home h3{
  color: transparent;
  font-size: 2.6vw;
  font-weight: 400;
  font-family: 'springwood_brush_demoregular';
  animation: fade-down 2s infinite ;
  animation-delay: 3.4s;
  
}
@keyframes fade-down {
  from {
	  color: transparent;
	}

  to {
	  color:  #fff;
	}
}

#particles-js{
  /*height: 109vh;*/
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background:  linear-gradient(67deg,  #6e0b1c,#062c4b, #062c4b);
  /*linear-gradient(230deg, #fab84e,  #8b1025, #0B395D)*/
  background-size: 400% 400%;
  /*animation: gradient 7s cubic-bezier(0.25, 0.1, 1, 0.97) infinite; */
}
canvas{
  display:block;
  vertical-align:bottom;
}

.bg-bubbles {
  display: none;
}

.home .wave{
  position: absolute;
  bottom: -.5rem;
  left: 0;
  height:11rem;
  width: 100%;
  background: url(../images/wave.png);
  background-size: 100rem 11rem;
  background-repeat: repeat-x;
  animation:waves 10s linear infinite;
}

.home .wave2{
  animation-direction: reverse;
  opacity: .2;
}

.home .wave3{
  animation-duration: 4s;
  opacity: .5;
}

@keyframes waves{
  0%{
    background-position-x: 0;
  }
  100%{
    background-position-x: 100rem;
  }
}

.about{
  width: 100vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about .row{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding:0 4rem;
}

.about .row .content{
  text-align: left;
}

.about .row .image img{
  width: 34vw !important;
  margin-left: 7rem;
  margin-top: -12rem !important;
}

.about .row .image p{
  text-transform: uppercase;
  margin-right: 7rem;
  padding-left: 15rem;
  margin-left: 98rem;
  font-size: 4rem;
}

.about .row .content h3{
  font-size: 2.3vw;
  color: var(--color);
  margin-top: 51px;
  font-family: cursive;
  
}

.about .row .content p{
  font-size: 1.5vw;
  color: #333;
  padding:6rem 0;
  font-weight: 500;
}


/******** Read More  *********/
#readMore-sec{
  font-size: 1.17vw;
  padding: 5px 0;
  font-weight: 400;
  list-style: none;
  color: #141414;
  /* font-style: italic; */
  margin-bottom: 2rem;
  display: none;
}
.arrow-open-close {
  position: relative;
  width: 4vw;
  height: 20px;
  cursor: pointer;
}
.arrow-open-close:before, .arrow-open-close:after {
  transition: 0.15s all ease-in-out;
  position: absolute;
  content: "";
  width: 54%;
  height: 2px;
  background: #0b395d;
  top: 49%;
  border-radius: 5px;
}
.arrow-open-close:before {
  transform: rotate(-150deg);
  left: 0;  
}
.arrow-open-close:after {
  transform: rotate(150deg);
  right: 0;
}

.toggle-btn {
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2em;
  align-items: center;
}
.toggle-btn .arrow-open-close {
  margin: 6px;
}
.toggle-btn .toggle-wording {
  font-size: 1.25vw;
  font-weight: 600;
  color: #0a2d47;
}
.toggle-btn.hide-toggle .arrow-open-close:before {
  transform: rotate(-210deg);
  left: 0;
}
.toggle-btn.hide-toggle .arrow-open-close:after {
  transform: rotate(210deg);
  right: 0;
}

/******** Read More  *********/


.about::before, .about::after{
  content: '';
  position: absolute;
  z-index: -1;
  opacity:.25;
  border-radius: 50%;
}

.about::before{
  height:50rem;
  width:50rem;
  background:#fbb220;
  bottom:-10rem; left:-10rem;
}

.about::after{
  height:60rem;
  width:60rem;
  background:#ca1f25c9;
  top:-10rem; right:-10rem;
}
.video-container
{
  position: relative;
  background: #051929;
  box-sizing: border-box;
  border-radius: 1.5rem;
  padding: 10px 10px;
  transition: .5s;
  margin-bottom: 5vw;
  text-align: center;
  box-shadow: -10px 17px 10px rgb(8 8 8 / 52%);
  align-content: center;
  justify-content: center;
}
video {
  height: 70%;
  width: 920px;
}

  /****** Project Counter ********/
.counter{
  min-height: 80vh !important;
  background-color: #ffffff;
  text-align: center !important;
  position: relative;
  width: 100%;
  padding: 5.556rem 0;
  overflow: hidden;
  background-size: cover;
    background-position: center;
    padding-top: 9.444rem!important;
    padding-bottom: 9.444rem!important;
}
.counter .title{
  position: absolute;
}
.counter .title h3{
  font-size: 3vw;
  color: var(--color);
  margin: 4vh 19vw ;
}

.counter img {
  position: absolute;
  width: 100%;
  top: -34rem;
  opacity: 0.7;
  left: 45%;
  transform: translateX(-40%);
}

.project-counter-wrp {
  margin-top: 13rem;
}

.project-counter-wrp ul {
  list-style-type: none;
  display: flex;
}

.project-counter-wrp li {
  width: 33.33%;
  height: 100%;
  padding: 30px 0px;
  text-align: center;
  transition: 0.2s linear;
}

.project-counter-wrp li:hover {
  transform: scale(1.1);
}

.project-counter-wrp li p.number {
  font-size: 6vw;
  padding: 0;
  font-weight: bold;
  font-family: 'springwood_brush_demoregular';
}
#number1{color: #0b395d;}
#number2{color: #f9b11f;}
#number3{color: #ca1f25;}

.project-counter-wrp li p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.5vw;
  margin: 0;
  padding: 10px;
  font-weight: 600;
}

.project-counter-wrp li span {
  /* width: 7vw;*/
  width: 12vw;
  background: rgba(0, 0, 0, 0.8);
  height: 2px;
  display: block;
  margin: 0 auto;
}

.project-counter-wrp li i {
  vertical-align: middle;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.8);
}

.partners{
  min-height: 45vw;
  width: 100vw;
  text-align: center;
  margin-top: 10rem;
}
#first-row{
  margin-top: 10vh;
}
.partners .row{
  margin:2rem 0;
  padding:0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-img {
  margin: 0 9vw;
}
.partners-img img{
  width: 25vw;
  height: 9vh;
  margin-top: 6vh;
  cursor: pointer;
}
#yeastar{
  height: auto;
  width: 20vw;
}
#poly{
  height: 12vh;
}
.partners-img:hover {
  transform: scale(1.1); 
}
.service{
  min-height: 100vh;
  width: 96vw;
  text-align: center;
  margin-top: 10rem;
}

.service .row{
  margin:2rem 0;
  padding:0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service .row .content{
  text-align: left;
  padding:0 3rem;
}

.service .row .content h3{
  font-size: 3.4rem;
  color:var(--color);
  margin-top: 6rem;
  font-family: cursive !important;
}
.service .row .content ul{
  font-size: 1.1vw;
  margin-left: 4rem;
  font-weight: 500;
  color:#333;
  padding:1rem 0;
}

.service .row .content p{
  font-size: 1.9rem;
  color:#333;
  padding:2rem 0;
  font-weight: 500;
}


/* scheduling */
.scheduling{
  min-height: 60vh;
  width: 100vw;
  margin-left: 4vw;
}

h1.heading-scheduling{
  font-family: cursive !important;
  font-size: 1.5vw !important;
  text-align: center !important;
  font-weight: 200;
  margin-top: .5rem;
  color: #0b395d !important;
}

#para{
  font-size: 2.2vw !important;
  text-align: center !important;
  letter-spacing: 0.3rem !important;
  font-weight: 600;
  margin-top: 13rem;
  color: #0b395d !important;
}


/* scheduling */

/* stories */
.stories{
  min-height: 60vh;
  margin-top: 20rem;
  height: 46vw;
  background-size: 65%;
}
.stories .row{
  margin:2rem 0;
  padding:0 2rem;
  display: flex;
  justify-content: center;
}
.stories .heading-stories{
  font-family: 'springwood_brush_demoregular' !important;
    font-size: 3.4vw !important;
    letter-spacing: 0.2rem !important;
    text-align: center !important;
    color: #1b2d42 !important;
}

.stories .row .content {
  text-align: left;
  padding-right: 19vw;
}
.stories .row .content p{
  font-size: 1.6vw;
}
.stories .row .content .client-info p{
  color: #3f3f3f !important;
  font-size: 1.3vw !important;
}
.stories .row  .svg img{
  margin-top: 7rem;
  width: 32vw;
}
/* stories */
.btn-stories{
  outline: none;
  border: none;
  border-radius: 5rem !important;
  background: var(--color);
  color: #fff;
  cursor: pointer;
  height: 5rem !important;
  margin-top: 3rem;
  width: 18rem !important;
  font-size: 2rem !important;
  box-shadow: 0rem 0.4rem 2.3rem rgb(0 0 0 / 69%);
}

.btn-stories:hover{
  background-color:#021525;
  box-shadow: 0rem 0.4rem 2.3rem rgb(0 0 0 / 94%);
}
.cust-image{
  width: 80vw;
  padding: 5rem;
  margin-left: 1.5vw;
  box-shadow: 0px 4px 3rem #02152569;
  border-radius: 2rem;
}

.contact{
  min-height: 85vh;
  width: 100vw;
  text-align: center;
}

.contact .row{
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .row .image img{
  height: 46vh;
  /*margin-bottom: 25rem;*/
  width:50vw;
}

.contact .row .form-container{
  width: 50%;
  text-align: left;
  padding:0 5rem;
}

.contact .row .form-container input, textarea {
	outline: none;
	border: none;
	height: 5vh;
	background: none;
	border-radius: 6px;
  text-transform: none;
	box-shadow: 0.2px 1px 7px rgb(0 0 0 / 52%);
	padding: 0 1rem;
	margin: 1rem 0;
	font-size: .9vw;
}


.contact .row .form-container .inputBox{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.contact .row .form-container input{
  width: 100%;
}

.contact .row .form-container textarea{
  width: 100%;
  height:20rem;
  padding:1rem; 
  resize: none;
}
.contact .row .form-container .inputBox input[type="text"] {
  width: 49% !important;
}
.contact .row .form-container textarea:focus{
    box-shadow: 0px 2px 16px rgb(230 9 9 / 55%);
}
.contact .row .form-container input:focus{
    box-shadow: 0px 2px 16px rgb(230 9 9 / 55%);
}


#verfiy{
	display: unset;
    position: absolute;
    margin-top: -1rem;
    margin-left: 17rem;
}

.faq{
  min-height: 80vh;
  width: 100vw;
  text-align: center;
  padding:0 2rem;
}

.faq .row{
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0 2rem;
}

.faq .row .image img {
  height: 58vh;
  width:50vw;
}
.faq .row .accordion-container{
  width: 50%;
  text-align: left;
}

.faq .row .accordion-container .accordion .accordion-header{
  border-radius: .7rem;
  border-top-left-radius: 1.1rem;
  border-bottom-left-radius: 1.1rem;
  background-color: var(--color);
  margin:1rem 0;
  box-shadow: 8px 8px 10px rgb(0 0 0 / 45%);
  cursor: pointer;
  min-height: 3vw;
  transform: translate(0px);
    transition: transform 300ms;
}
  .faq .row .accordion-container .accordion .accordion-header:hover{
    /*transform: translate(0px,-8px);*/
    transition: transform 300ms;
  }
 .faq .row .accordion-container .accordion.active .accordion-header {
    transform: translate(0px);
    transition: transform 300ms;
  }
.faq .row .accordion-container .accordion .accordion-header span::before {
    content: "+";
    color: black;
	margin-right: 5px;
    font-size: 1.4vw;
}
.faq .row .accordion-container .accordion.active .accordion-header span::before {
    content: "-";
}
.faq .row .accordion-container .accordion .accordion-header span{
  display: inline-block;
  text-align: center;
  height: 3.01vw;
  width: 3vw;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  line-height: 3vw;
  font-size: 1.2vw;
  background: #fff;
  color: #333;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.faq .row .accordion-container .accordion .accordion-header h3{
  display: inline;
  color: #fff;
  font-weight: 400;
  padding-left: .5rem;
  font-size: 1vw;
}

.faq .row .accordion-container .accordion .accordion-body{
  padding: 0; 
  font-size: .5vw;
  overflow-y: auto;
  padding: 0; 
  height: 0;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
.faq .row .accordion-container .accordion.active .accordion-body{
  padding: 2rem; 
  font-weight: 500;
  border-radius: 1rem;
  color: #444;
  box-shadow: inset 0px 1px 10px rgb(0 0 0 / 60%);
  font-size: 1vw;
  height: auto;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  overflow-y: auto;
}
.faq .row .accordion-container .accordion.active .accordion-body .why-list{
  margin-left: 15px !important;
}
.faq .row .accordion-container .accordion.active .accordion-body .why-list .why-point{
  padding: 2px 0 !important;
}

/* media queries  */

@media (max-width:885px){

  html{
    font-size: 50%;
  }
  .header {
    padding: 0.1rem 4%;
    padding-top: .5vh;
  }
  .header .logo{
    font-size: 4.6rem !important;
  }
  .header .image-logo{
    width: 30px !important;
    height: 33px !important;
    margin-bottom: 11px !important;
    margin-left:5px !important;
    margin-top:5px !important;
  }
  .header .image-logo2{
    width: 39px !important;
    height: 41px !important;
    margin-bottom: 13px !important;
    margin-left:1px !important;
    margin-top:5px !important;
  }
  .header .fa-bars{
    display: block;
    color: rgb(255, 255, 255);
  }

  .header .navbar{
    position: fixed;
    top:-120%; left: 0;
    height: auto;
    width: inherit;
    background-color: #0b3a5da2;
    z-index: 1000;
    border-top: .1rem solid rgba(255, 255, 255, 0.3);
  }

  .header .navbar ul{
    height: 100%;
    width: 100%;
    flex-flow: column;
  }

  .header .navbar ul li{
    margin:1rem 0;
  }

  .header .navbar ul li a{
    color: white !important;
    font-size: 2.1rem !important;
    font-weight: 500;
  }

  .header .fa-times{
    transform: rotate(180deg);
  }

  .header .nav-toggle{
    top: 7.2rem;
  }
  .heading{
    margin:2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.8rem;
    color:var(--color);
    position: relative;
    letter-spacing: .2rem;
    font-family: 'Poppins' !important;
  }  

.home{
	height: 100vh;
    width: 100vw;
    background: linear-gradient(230deg, #fab84e, #8b1025, #0B395D);
    background-size: 400% 400%;
    animation: gradient 12s cubic-bezier(0.25, 0.1, 1, 0.97) infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden !important;
    color: #fff;

}

  .home .slogan{
    font-size: 1.7rem;
  }
  .home .banner{
    margin-left: 0% !important;
    position: absolute;

  }
  .home .banner .line-1{
    border-right: 2px solid rgba(255,255,255,.75);
    white-space: nowrap;
    overflow: hidden;
	font-family: 'Poppins' !important;
	  line-height:1.7em;
    margin-bottom: 1rem;
  }
  
  /* Animation */
  .home .banner .anim-typewriter{
  animation: typewriter 4s steps(64) 1s 1 normal both,
  blinkTextCursor 500ms steps(64) infinite normal;
  }
  @keyframes typewriter{
  from{
	  width: 0;
	  /*text-shadow: transparent;*/
	}
  to{
	  width: 100%;
	 /* text-shadow:0 0 3px #fff, 0 0 8px #4dceff, 0 0 8px #4dceff, 0 0 1px #4dceff, 0 0 9px #4dceff, 0 0 0px #4dceff, 0 0 6px #4dceff*/

	}
  }
  @keyframes blinkTextCursor{
  from{border-right-color: rgb(248, 248, 248);}
  to{border-right-color: transparent;}
  }
  .home .banner h1{
    color: #fff;
    font-size: 5.6vw;
    text-shadow: 0 0.3rem 0.5rem rgb(0 0 0 / 30%);
    
  }
  .home .banner span{
    font-size: 4vw;
  }
  .home h3{
    margin-top: 2rem;
    font-size: 4vw;
  }

  canvas{
    /*width: 100% !important;
    height: 100% !important;*/
	display: none;
  }
  #particles-js
  {
    display: none;
  }
  /*******************/
  .bg-bubbles {
  display:block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bg-bubbles li {
  position: absolute;
  list-style: none;
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  bottom: -160px;
  -webkit-animation: square 8s infinite;
  animation: square 8s infinite;
  transition-timing-function: linear;
}
.bg-bubbles li:nth-child(1) {
  left: 10%;
}
.bg-bubbles li:nth-child(2) {
  left: 20%;
  width: 80px;
  height: 80px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 40s;
          animation-duration: 10s;
}
.bg-bubbles li:nth-child(3) {
  left: 25%;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.bg-bubbles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  -webkit-animation-duration: 40s;
          animation-duration: 22s;
  background-color: rgba(255, 255, 255, 0.25);
}
.bg-bubbles li:nth-child(5) {
  left: 70%;
}
.bg-bubbles li:nth-child(6) {
  left: 80%;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-bubbles li:nth-child(7) {
  left: 32%;
  width: 160px;
  height: 160px;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
.bg-bubbles li:nth-child(8) {
  left: 55%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
}
.bg-bubbles li:nth-child(9) {
  left: 25%;
  width: 10px;
  height: 10px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 40s;
          animation-duration: 20s;
  background-color: rgba(255, 255, 255, 0.3);
}
.bg-bubbles li:nth-child(10) {
  left: 90%;
  width: 160px;
  height: 160px;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
@-webkit-keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-700px) rotate(600deg);
  }
}
@keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-700px) rotate(600deg);
  }
}
/*****************************/
  .about .row .content h3 {
    font-size: 2.6rem;

	font-family: 'Poppins' !important;
}
  .about .row{
    flex-flow: column-reverse;
    padding:0 2rem;
  }
  .about .row .content p {
    font-size: 2rem;
    color: #333;
    padding: 6rem 0;
    font-weight: 500;
}

  .about .row .image img{
    width: 91vw !important;
    margin-left: 0rem;
    height: 41vh !important;
    margin-top: -23px !important;
  }
  .about .row .content{
    margin-right: 0rem;
  }
   .video-container
  {
    padding: 8px 3px 2px 3px;
    margin-bottom: 10rem;
  }
  video {
    width: 96%;
    height: auto;
  }

  #readMore-sec{
    font-size: 15px;
    text-align: left;
  }
  .arrow-open-close {
    width: 42px;
  }
  .toggle-btn .toggle-wording {
    font-size: 2.1rem;
  }
  .arrow-open-close {
    width: 53px;
  }
  .service .row{
    flex-flow: column-reverse;
  }

  .service .row:nth-child(even){
    flex-flow: column;
  }
  .partners {
    min-height: 55vh;
  }
  .partners-img img {
    width: 39vw;
    height: 6vh;
    margin-right: -1rem;
    margin-left: -1rem;
    margin-top: 4vh;
    cursor: pointer;
}
#first-row{
  margin-top: 5vh;
}
#yeastar{
  margin-left: 2rem;
  width: auto;
  height: 11vw;
}
#poly{
  height: 7vh;
  margin-right: 1rem;
}

.wrapper{
  width: 100%;
  margin: unset !important;
}
.service {
  width: 100vw;
}
.centered{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-service {
  position: relative;
  width: 320px !important;
  height: 258px !important;
  /*left: calc(9% - 20px);*/
  background: #fff;
  box-sizing: border-box;
  border-radius: 1.5rem;
  padding: 8px 15px;
  transition: .5s;
  overflow: hidden;
  float: left;
  margin: 0 10px !important;
  margin-bottom: 30px !important;
  text-align: center;
 box-shadow: -10px 17px 10px rgb(8 8 8 / 52%);
}
.single-service h3 {
  font-size: 24px !important;
}
#dt-h3 {
  font-size: 20px !important;
}
.single-service p {
  font-size: 3.5vw !important;
  margin-top: 5px !important;
}
#dt-p{
  font-size: 3vw !important;
}
  .push{
    margin-bottom: 25vh !important;
  }
  /************* project numbers ******************/
  .counter {
    min-height: 64vh !important;
    max-width: 100% !important;
  }
  .counter img {
    top: 2rem;
    left: 33%;
}
.counter .title {
  left: -11vh !important;
    right: 1vh !important;
}
.counter .title h3 {
  font-size: 4rem !important;
   margin: 0px 0rem 0px 10rem !important;
   font-weight:300 !important;
       font-size: 7vw !important;
}
.project-counter-wrp {
  margin-top: 3rem !important;
  margin-right: 1rem !important;
}
.project-counter-wrp ul {
  list-style-type: none !important;
  display: flex !important;
  margin-left: 11rem !important;
}
.project-counter-wrp li {
  width: 33.33% !important;
  padding: 12px 19px 0px !important;
}
.project-counter-wrp li p.number {
  font-size: 4.5rem !important;
}
.project-counter-wrp li p {
  font-size: 13px !important;
  font-weight: 500 !important;
}
  /************* project numbers ******************/

/*  scheduling  */
.scheduling {
  margin-top: 20rem;
}
h1.heading-scheduling {
  font-size: 4.2vw !important;
  font-family: 'Poppins' !important;
  text-align: center !important;
  font-weight: 400;
  margin-top: 4rem;
  margin-right: 8vw;
}
#para {
  font-size: 5.3vw !important;
  text-align: center !important;
  letter-spacing: 0.3rem !important;
  font-weight: 600;
  margin-right: 3rem;
  margin-top: -8rem;
}

/*  scheduling  */

/* stories*/
.stories .heading-stories{
    font-size: 9vw !important;
}

.stories {
  background: none;
  height: 100% !important;
  max-width: 100%;
  background-size: 65%;
  display: flex;
  margin-top: unset;
  margin-bottom: 5% !important;
  width: 100vw;
  flex-direction: column;
}
.stories .row { 
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.stories .row .content {
  text-align: left;
  margin-top: 2rem;
  padding-right: 5.4rem !important;
}
.stories .row .content  p {
  margin-top: 0;
  font-size: 4vw;
  font-weight: 500;
}
.stories .row .content .client-info p {
  color: #3f3f3f !important;
  font-size: 3vw !important;
  margin-top: 3px;
}
.stories .row .svg img {
  display: none;
}
.btn-stories {
  height: 4rem !important;
  margin-top: 3rem;
  width: 14rem !important;
  font-size: 13px !important;
}

.btn-stories {
  margin-bottom: 23rem;
}
/* stories */

.faq{
  min-height: 80vh;
  width: 100vw;
  text-align: center;
  padding:0;
}

.faq .row{
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0 1rem;
  flex-flow: column;
}

.faq .row .image img {
  height: 38vh;
  width:100vw;
}

.faq .row .accordion-container{
  width:100%;
  text-align: left;
}
.faq .row .accordion-container .accordion .accordion-header{
  border-radius: .7rem;
  background-color: var(--color);
  margin:1rem 0;
  box-shadow: 5px 5px 10px rgb(0 0 0 / 46%);
  cursor: pointer;

}
.faq .row .accordion-container .accordion .accordion-header:hover{
	 transform: translate(0px);
    transition: transform 300ms;
}
.faq .row .accordion-container .accordion .accordion-header span::before {
    font-size: 4.4vw;
}

.faq .row .accordion-container .accordion .accordion-header span{
  display: inline-block;
  text-align: center;
  height:4rem;
  width:5rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  line-height: 4rem;
  font-size: 2rem;
  background:#fff;
  color:#333;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.faq .row .accordion-container .accordion .accordion-header h3{
  display: inline;
  color: #fff;
  font-weight: 400;
  padding-left: .5rem;
  font-size: 1.5rem;
}

.faq .row .accordion-container .accordion .accordion-body {
    padding: 0;
    font-weight: 500;
    border-radius: 1rem;
    color: #444;
    box-shadow: inset 0px 1px 10px rgb(0 0 0 / 60%);
    font-size: 2vw;
    height: 0;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    overflow-y: auto;
}
.faq .row .accordion-container .accordion.active .accordion-body {
    padding: 1.5rem;
    font-weight: 500;
    border-radius: 1rem;
    color: #444;
    box-shadow: inset 0px 1px 10px rgb(0 0 0 / 60%);
    font-size: 2.5vw;
    height: auto;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    overflow-y: auto;
}

.contact .row .form-container input, textarea {
	height: 4.5rem;
  font-size: 1.6rem;
}
  .contact .row{
    flex-flow: column;
  }

  .contact .row .image img{
    width: 100vw;
    height: 26vh;
  }

  .contact .row .form-container{
    width: 100%;
    padding:0 1.5rem;
  }
  #verfiy{
	display: none;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 25px;
  color: #fff;
  background-color: #031b2e;
  font-size: 2rem !important;

}
.l-footer img{
  vertical-align: middle;
  width: 40px !important;
  margin-bottom: 8px !important;
}
  .r-footer{
    margin-left: 3rem;
    display: block !important;
  }
  .sub-title{
    font-weight: 500;
    font-size: 2.7rem !important;
    padding-top: 1rem;
    padding-bottom: unset !important;
  }
  .l-footer p {
    font-weight: 500;
    font-size: 15.5px !important;
    margin-left: 2rem;
    color: #eee;
    padding-right: 0% !important;
    font-weight: 400 !important;
  }
  .box a {
    color: #eee;
    font-weight: 300;
    font-size: 2rem !important;
  }

}

@media (max-width:550px){

}

@media screen and (max-width: 600px) 
{
  .topnav a:not(:first-child) 
  {
    display: none;
  }
  .topnav a.icon 
  {
    float: right;
    display: block;
  }
}

.service-2{
  margin: 0;
  padding: 0;
  background-image: url(https://i.postimg.cc/dQZssk2d/1.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  height: 90vh;
  font-family: poppins;
}
/*
.wrapper {
  width: 95vw;
  margin: 3.5%;
}*/

.centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wrapper h2{
  text-transform: uppercase;
  font-family: poppins;
  font-weight: bold;
  text-align: center;
  font-size: 60px;
  color: #fff;
  margin: 0;
}

.single-service {
  position: relative;
  width: 25vw;
  height: 18vw;
  background: #fff;
  box-sizing: border-box;
  border-radius: 1.5rem;
  padding: 0px 15px;
  transition: .5s;
  overflow: hidden;
  float: left;
  margin-left: 5vw;
  display: flex;
  text-align: center;
  box-shadow: -10px 17px 10px rgb(8 8 8 / 52%);
  flex-direction: column;
  align-content: center;
  justify-content: center;
  opacity: 0.75;
}
.s2{
  margin-top: 3rem;
}
.line {
  width: 150px;
  height: 3px;
  background: #fff;
}
.line-2 {
height: 20vh;
}
.single-service p{            
  color: #262626;
  font-size: .9vw;
  font-weight: 500;
}

.single-service h3 {
  font-size: 1.5vw;
  text-transform: uppercase;
  font-family: poppins;
  letter-spacing: 1px;
  color: #262626;
}

.social {
width: 60px;
height: 60px;
background: #021b2f;
border-radius: 50%;
margin: 3.5% auto;
}

.social i {
font-size: 30px;
padding: 15px 0px 0px 0px;
  color: #fff;
}

.single-service:hover{
  box-shadow: 0 30px 35px rgba(230, 9, 9, 0.7);
  opacity: 1;
}

.s2:hover{
 /* box-shadow: 0 30px 35px #f9b11f9c !important;*/
}
.single-service span {
position: absolute;
top: 0;
left: -110%;
width: 100%;
height: 100%;
background: #0f3a5d9d;
transition: .5s;
transform: skewX(10deg);

}
.single-service:hover span{
  left: 110%;
}

@media (max-width:1000px)
{
  .wrapper {
  width: 100%;
  }
  .single-service {
    margin-bottom: 30px;
  }
  .wrapper h2 {
  font-size: 30px;
  }
}




  
.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 25px;
  color: #fff;
  background-color: #031b2e;
  font-size: 1.2vw;

}
  
  .footer > * {
  flex:  1 100%;
  }
  
  .l-footer {
  margin-right: 1.25em;
  margin-bottom: 2em;
  }
  .l-footer img{
    vertical-align: middle;
    width: 3.5vw;
    margin-bottom: 8px;
  }
  
  .sub-title {
    font-weight: 500;
    font-size: 1.5vw;
    padding-bottom: 3rem;
  }
  
  .footer ul {
  list-style: none;

  }
  
  .footer li {
   line-height: 2.4em;
  }
  
  .footer a {
    text-decoration: none;
    color: #eee;
  }
  .footer a:hover{
    color: #ffbc35;
  }
  
  .r-footer {
    display: flex;
    flex-flow: row wrap;
  }
  
  .r-footer > * {
    flex: 1 50%;
    margin-right: 1.25em;
  }
  
  .box a {
    color: #eee;
    font-weight: 300;
    font-size: 1.2vw;
  }
 
  
  .h-box {
    column-count: 1;
    column-gap: 1.25em;
  }
  
  .b-footer {
    text-align: center;
    color: #eee;
    display: block;
    font-weight: 400;
    padding: inherit;
    margin: 19px -3rem -25px -3rem;
    background-color: #092f4d;
  }
  
  .l-footer p {
    padding-right: 17%;
    color: #eee;
    font-weight: 500;
    font-size: 1.2vw;
    margin-left: 2rem;
  }   
  .icon{
    width: 4.2rem;
    font-size: 2.5rem;
    margin-left: -4rem;
  }
  .icon-social{
    width: 4.2rem;
    font-size: 2.2rem;
    margin-left: -4.5rem;
  }
  
  @media screen and (min-width: 800px) {
  .r-footer > * {
  flex: 1;
  }

  .features {
  flex-grow: 2;
  }
  
  .l-footer {
  flex: 1 0px;
  }
  
  .r-footer {
  flex: 2 0px;
  }
  }
  
