* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
body {
  margin: 0;
  padding: 0;
  background: white;
  font-family: 'Poppins', sans-serif;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    padding: 15px 2%;
    background: transparent;
    /* position: sticky;  */
    /* using sticky for header hence not using fixed */
    top: 0;
    z-index: 11;
}

.logo {
    margin-right: auto;
    text-decoration: none;
}

.nav__links {
    list-style: none;
    display: flex;
}

.nav__links a,
.cta,
.overlay__content a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
}

.nav__links li {
    padding: 0px 20px;
}

.nav__links li a {
    transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
    color: #f89718ce;
}

.cta {
    font-size: 15px;
    margin-left: 20px;
    padding: 9px 25px;
    background-color: #F89718;
    border: 2px solid transparent;
    color: #edf0f1;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

    .dropdown-toggle{
        text-decoration: none;
        color: black;
    }
    
.cta:hover {
    background-color: rgba(255, 255, 255);
    border-color: #F89718;
    color:#F89718;
    }
    
    /* Mobile Nav */
    
    .menu {
        display: none;
    }
    
    .overlay {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 12;
        left: 0;
        top: 0;
        background-color: #ffffff;
        overflow-x: hidden;
        transition: all 0.5s ease 0s;
    }
    
    .overlay--active {
        width: 100%;
        color: #ffffff;
}

.overlay__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay a {
    color: #F89718;
    padding: 15px;
    font-size: 25px;
    display: block;
    transition: all 0.3s ease 0s;
}

.overlay a:hover,
.overlay a:focus {
    color: #000000;
}
.overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #F89718;
    cursor: pointer;
}
@media only screen and (max-width: 960px) {
    .nav__links{
        font-size: 13px;
    }
    .cta {
        font-size: 12px;
        margin-left: 15px;
        padding: 6px 10px;
}}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px;
    }
    .overlay .close {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

@media only screen and (max-width: 800px) {
    .nav__links,
    .cta {
        display: none;
    }
    .menu {
        display: initial;
    }
}




/* landing page */



.one{
    height: 90vh;
    overflow: hidden;
    position: relative;
    
  }
  .lp-h1, .lp-h2, .lp-p{
    /* padding-left: 40px; */
    margin: 0;
    color: black;
    text-shadow: 0px 0px 1px rgb(0, 0, 0);
    
  }
  
  h1 {
    font-size: 4vw;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .orange{
    color:#F89718;
  }
  .blob {
    position: absolute;
    top: 0;
    left: 0;
    fill: #F89718;
    width: 50vmax;
    z-index: -1;
    animation: move 10s ease-in-out infinite;
    transform-origin: 50% 50%;
  }
  
  @keyframes move {
    0%   { transform: scale(1)   translate(10px, -30px); }
    38%  { transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg); }
    40%  { transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg); }
    78%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg); }
    80%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg); }
    100% { transform: scale(1)   translate(10px, -30px); }
  }
  
  /* .lp-txt{
    transform: translateY(50%);
  } */


  /* form design */


  .lp-container{
      display: flex;
      justify-content: space-around;
      transform: translateY(15%);
      align-items: center;
  }

  
  .container-form {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    /* color: var(--color-darkblue); */
    margin: 0;
  }
  
  /* mobile friendly alternative to using background-attachment: fixed */
  .container-form::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
  
  }
  p {
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  label {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  input,
  button,
  select,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  button {
    border: none;
  }
  
  .container-form {
    width: 80%;
  }
  
  @media (min-width: 800px) {
    .container-form {
      max-width: 40%;
    }
  }
  
  @media (min-width: 768px) {
    .container-form {
      max-width: 35%;
    }
  }
  
  .header {
    padding: 0 0.625rem;
    margin-bottom: 1.875rem;
  }
  
  .description {
    font-style: italic;
    font-weight: 200;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  }
  
  .clue {
    margin-left: 0.25rem;
    font-size: 0.9rem;
    /* color: --color-darkblue-alpha; */
  }
  
  .text-center {
    text-align: center;
  }
  
  /* form */

  
  form {
    padding: 2.5rem 0.625rem;
    border-radius: 0.25rem;
  }
  
  #appbeans-form{
    border: 1px solid rgb(0, 0, 0);

  }
  
  @media (min-width: 480px) {
    form {
      padding: 1.5rem;
    }
  }
  
  .form-group {
    margin: 0 auto 1.25rem auto;
    padding: 0.25rem;
  }
  
  .form-control {
    display: block;
    width: 100%;
    height: 2.375rem;
    padding: 0.375rem 0.75rem;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .form-control:focus {
    border-color: #F89718;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #f897189a;
  }
  
  
  .submit-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: rgb(0, 0, 0);
    color: white;
    border-radius: 2px;
    cursor: pointer;
  }
  
  @media only screen and (max-width: 800px) {
    .lp-container{
        flex-wrap: wrap;
        transform: translateY(1%);
    }
    .lp-txt{
      margin: 1%;
    }
    h1{
      font-size: 6vw;
    }
}


 /* client scroll */


.container {
    overflow: hidden;
}
.container .slider {
    animation: slidein 30s linear infinite;
    white-space: nowrap;
}
.container .slider .logos {
    width: 100%;
    display: inline-block;
    margin: 0px 0;
}
.container .slider .logos .fab {
    width: calc(100% / 5);
    animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
}
@keyframes slidein {
    from {
        transform: translate3d(0, 0, 0);
   }
    to {
        transform: translate3d(-100%, 0, 0);
   }
}
@keyframes fade-in {
    0% {
        opacity: 0;
   }
    100% {
        opacity: 1;
   }
}



/* scroll button */



/* VVV Everything you need VVV */

#scroll-down-animation {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  
  
  .mouse {
    margin: 0 auto;
    display: block;
    border-radius: 50px;
    border: 2px solid black;
    height: 100px;
    width: 50px;
    position: relative;
  }
  
  .movemouse {
    position: absolute;
    background-color: black;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: movemouse 2s linear infinite;
  }
  
  @keyframes movemouse {
    0% {
      transform: translate(-50%,10px);
      opacity: 0;
    }
    50% {
      transform: translate(-50%,40px);
      opacity: 1;
    }
    100% {
      transform: translate(-50%,80px);
      opacity: 0;
    }
  }


  @media only screen and (max-width: 800px) {
    .mouse {
        display: none;
      }
      
      .movemouse {
        display: none;
      }
      .one{
          height: 100vh;
      }

}


/* services */


        /* service section start here */
        .servicehead{
          font-weight: bold;
          font-size: 30px;
          line-height: 34px;
          color: #F89718;
          margin: 10px 20%;
        }
        .servicedescrip{
          font-size: 15px;
          line-height: 19px;
          margin: 10px 20%;
          color: #6F6F6E;
        }

        
        .background {
          padding: 0 25px 25px;
          position: relative;
          width: 100%;
        }
        
        .background::after {
          content: '';
          background: #F89718;
          /* background: -moz-linear-gradient(top, #60a9ff 0%, #4394f4 100%);
          background: -webkit-linear-gradient(top, #60a9ff 0%,#4394f4 100%);
          background: linear-gradient(to bottom, #60a9ff 0%,#4394f4 100%); */
          /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#60a9ff', endColorstr='#4394f4',GradientType=0 ); */
          height: 400px;
          left: 0;
          position: absolute;
          top: 0;
          width: 100%;
          z-index: 1;
        }
        
        @media (min-width: 900px) {
          .background {
            padding: 0 0 25px;
          }
        }
        
        .container {
          margin: 0 auto;
          padding: 50px 0 0;
          max-width: 960px;
          width: 100%;
        }
        
        .panel {
          background-color: #fff;
          border-radius: 10px;
          padding: 15px 25px;
          position: relative;
          width: 100%;
          z-index: 10;
        }
        
        .pricing-table {
          box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
          display: flex;
          flex-direction: column;
        }
        
        @media (min-width: 900px) {
          .pricing-table {
            flex-direction: row;
          }
        }
        
        .pricing-table * {
          text-align: center;
          text-transform: uppercase;
        }
        
        .pricing-plan {
          border-bottom: 1px solid #e1f1ff;
          padding: 25px;
        }
        
        .pricing-plan:last-child {
          border-bottom: none;
        }
        
        @media (min-width: 900px) {
          .pricing-plan {
            border-bottom: none;
            border-right: 1px solid #e1f1ff;
            flex-basis: 100%;
            padding: 25px 50px;
          }
        
          .pricing-plan:last-child {
            border-right: none;
          }
        }
        
        .pricing-img {
          margin-bottom: 25px;
          max-width: 100%;
        }
        
        .pricing-header {
          font-size: 15px;
          color: #888;
          font-weight: 600;
          letter-spacing: 1px;
        }
        
        .pricing-features {
          color: #F89718;
          font-weight: 600;
          letter-spacing: 1px;
          margin: 25px 0 25px;
        }
        
        .pricing-features-item {
          border-top: 1px solid #F89718;
          font-size: 12px;
          line-height: 1.5;
          padding: 15px 0;
        }
        
        .pricing-features-item:last-child {
          border-bottom: 1px solid #F89718;
        }
        
        .pricing-price {
          color: #F89718;
          display: block;
          font-size: 32px;
          font-weight: 700;
        }
        
        .pricing-button {
          border: 1px solid #f89718a4;
          border-radius: 10px;
          color: #F89718;
          display: inline-block;
          margin: 25px 0;
          padding: 15px 35px;
          text-decoration: none;
          transition: all 150ms ease-in-out;
        }
        
        .pricing-button:hover,
        .pricing-button:focus {
          background-color: #f8971871;
        }
        
        .pricing-button.is-featured {
          background-color: #F89718;
          color: #fff;
        }
        
        .pricing-button.is-featured:hover,
        .pricing-button.is-featured:active {
          background-color: #f89718ea;
        }

        a:hover {
          color: #000000;
      }
.service-txt{
  margin-top: 5%;
}
li{
  list-style: none;
}


/* our work */
/* .portfolio-heading{
  font-size: 22px;
} */
.wrap
{
  margin:50px auto 0 auto;
  width:100%;
  display:flex;
  align-items:space-around;
  max-width:1200px;
}
.tile
{
  width:380px;
  height:380px;
  margin:10px;
  background-color:#F89718;
  display:inline-block;
  background-size:cover;
  position:relative;
  cursor:pointer;
  transition: all 0.4s ease-out;
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.44);
  overflow:hidden;
  color:white;
  font-family:'poppins';
  
}
.tile img
{
  height:100%;
  width:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:0;
  transition: all 0.4s ease-out;
}
.tile .text
{
/*   z-index:99; */
  position:absolute;
  padding:30px;
  height:calc(100% - 60px);
  color: rgb(255, 255, 255);
}
.tile h1
{
  color: #000000;
  font-size: 25px;
    font-weight: 600;
  margin:0;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.tile h2
{
  font-size: 18px;
  font-weight:100;
  margin:20px 0 0 0;
   transform: translateX(200px);
}
.tile p
{
  font-size: 18px;
  font-weight:300;
  margin:20px 0 0 0;
  line-height: 25px;
/*   opacity:0; */
  transform: translateX(-200px);
  transition-delay: 0.2s;
}
.animate-text
{
  opacity:0;
  transition: all 0.6s ease-in-out;
}
.tile:hover
{
/*   background-color:#99aeff; */
box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
  transform:scale(1.05);
}
.tile:hover img
{
  opacity: 0.2;
}
.tile:hover .animate-text
{
  transform:translateX(0);
  opacity:1;
}
.dots
{
  position:absolute;
  bottom:20px;
  right:30px;
  margin: 0 auto;
  width:30px;
  height:30px;
  color:currentColor;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-around;
  
}

.dots span
{
    width: 5px;
    height:5px;
    background-color: currentColor;
    border-radius: 50%;
    display:block;
  opacity:0;
  transition: transform 0.4s ease-out, opacity 0.5s ease;
  transform: translateY(30px);
 
}

.tile:hover span
{
  opacity:1;
  transform:translateY(0px);
}

.dots span:nth-child(1)
{
   transition-delay: 0.05s;
}
.dots span:nth-child(2)
{
   transition-delay: 0.1s;
}
.dots span:nth-child(3)
{
   transition-delay: 0.15s;
}


@media (max-width: 1000px) {
  .wrap {
   flex-direction: column;
    width:400px;
  }
}
@media only screen and (max-width: 420px) {
  .wrap
{
  margin:50px auto 0 auto;
  width:100%;
  display:flex;
  align-items:space-around;
  width:300px;
}
.tile
{
  width:300px;
  height:300px;
  
}
}



      /* here starts the contact us form */

      @import url('https://fonts.googleapis.com/css?family=Poppins:200i,400&display=swap');

:root {
  --color-white: #f3f3f3;
  --color-darkblue: #1b1b32;
  --color-darkblue-alpha: rgba(27, 27, 50, 0.8);
  --color-green: #37af65;
}

.formcontainer-form2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: black;
}

/* mobile friendly alternative to using background-attachment: fixed */


.form-h1text-form2 {
  color:#F89718;
  font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 28px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    margin-bottom: 0px;
    margin-left: 10px;
}

.form-text-form2 {
  font-style: normal;
    font-weight: normal;
    font-size: 15px;
    /* line-height: 23px; */
    margin-left: 10px;
    margin-bottom: 0px;
}

  .input-area-form2{
    width: 220px;
  }

.form-h1text-form2,
.form-text-form2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

label {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  border: none;
}

.formcontainer-form2 {
  width: 100%;
  margin: 5.125rem auto 0 auto;
}

@media (min-width: 576px) {
  .formcontainer {
    max-width: 540px;
  }
  
}

@media (min-width: 768px) {
  .formcontainer-form2 {
    max-width: 720px;
  }
}


/* form */
.entertwo-form2{
  display:flex;
  flex-flow: row wrap;
    justify-content: space-between;
}
#contact-us-form2 {
  padding: 1.5rem 0.625rem;
  border-radius: 0.25rem;
}

@media (max-width: 600px) {
  .entertwo-form2{
    flex-direction: column;
  }
  .input-area-form2 {
    width: 100%;
}
}

@media (min-width: 480px) {
  #contact-us-form2 {
    padding: 1.5rem;
  }
}

.form-group-form2 {
  margin-bottom: 1.25rem;
  padding: 0.25rem;
}

.form-control-form2 {
  display: block;
  width: 100%;
  height: 2.375rem;
  padding: 0.375rem 0.75rem;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-form2:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-radio-form2,
.input-checkbox-form2 {
  display: inline-block;
  margin-right: 0.625rem;
  min-height: 1.25rem;
  min-width: 1.25rem;
}

.input-textarea-form2 {
  min-height: 120px;
  width: 100%;
  padding: 0.625rem;
  resize: vertical;
}

.submit-button-form2 {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #F89718;
  color: inherit;
  border-radius: 2px;
  cursor: pointer;
}

.contact-us-form2{
  border: none;
}




.faq {
	color: black;
	margin: 0 auto;
	padding: 100px 0 0;
	max-width: 600px;
}


.faq__question {
	max-width: 600px;
	margin: 30px auto;
}

.faq__toggle {
	list-style: none;
	font-size: 1.5em;
	cursor: pointer;
	transition: opacity .3s;
}

.faq__toggle:hover {
	opacity: 0.7;
}

.faq__answer {
	overflow: hidden;
	color: #747474;
	font-size: 0.9em;
}

.faq__question[open] .faq__answer {
	transform: translateX(0);
}


@keyframes reveal {
	0% 		{ transform:translateY(0);  }
	100% 	{ transform:translateY(200%);  }
}

.faq__question[open] .faq__answer {
  animation: sweep .5s ease-in-out;
}

@keyframes sweep {
  0%    { opacity: 0; margin-top: -10px; }
  100%  { opacity: 1; margin-top: 0px; }
}

@media (max-width: 600px) {
  .faq {
    width: 90%;
  }
  
  
  .faq__question {
    width: 90%;
  }
}


/* testimonials */

.team-section{
  width: 80%;
    margin: 0 auto;
    background-color: #F89718;
    padding: 1%;
}
.h1-responsive{
  color: white;
}


  /* footer */
      
  .list-unstyled a{
    text-decoration: none;
}
.darkk{
    background-color: #000!important;
}