/*-----------Wufoo form HTML */



form#contact-form_8 {
    display: inline-block;
    border-radius: 5px;
    width: 50%;
    height: auto;
    border-radius: 5px;
    padding: 24px;
    background-color: #eeeef0;
    opacity: 0.8;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}



/*-----------  End here ----------- */


html{
  scroll-behavior: smooth;
  height: auto;
  overflow-x: hidden;
}

*{
  margin: 0px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
 }

nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 16vh;
  width: 100%;
  margin: auto;
  background-color: #fff;


}
ul{
  padding-left: 0px;
}

.nav-links{
  display: flex;
  justify-content: space-around;
  margin: 80px 0px 0px 0px;
  width: 100%;
}
.logo-call-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width:768px){
  .logo-call-wrap {
    flex-wrap: nowrap;
  }
}

.nav-links li{
  list-style: none;
}
#home .nav-links li.services-dropdown a.services-dropdown__link{
  position: relative;
  z-index: 3;
}

.nav-links a{
  position: relative;
  z-index: 0;
  color: #36454f;
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 18px;
  margin: 8px;
  font-weight: bold;
  white-space: nowrap;
}
.nav-links.footer-links a{
  z-index: 0;
}

.nav-links a:hover{
  color: black;
  cursor: pointer;
  text-decoration: underline;
  font-weight: bolder;

}

.burger{
  display: none;
}

.burger div{
  height: 3px;
  width: 25px;
  margin: 5px;
  background-color: #36454f;
  transition: all 0.3s ease;
}

/* Responsiveness - tablet & small devices */

@media screen and (max-width:768px){

  html{
    overflow-x: hidden;
  }

  body{
  overflow-x: hidden;
  }

  h2{
    font-size: 18px;
  }

  nav{
    /* justify-content: space-around; // Overwritten in additional.css*/
  }

  #home img{
    /* width: 70%;  // This is not needed when logo is display in grid, reference to additional.sass */
  }

  .nav-links{
    position: absolute;
    right: 0px;
    height: 35vh;
    top: 18vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(-200%);
    transition: transform 0.5s ease-in;
    background-color: #fff;
    z-index: 1;
    margin: 0px;
  }

  .nav-links a{
    font-size: 14px;
    font-weight: bold;
  }

  .nav-links li{
    opacity: 0;
  }

  .burger{
    display: block;
    cursor: pointer;
  }

  .navbar-but{
    display: none;
  }

  .banner h1{
    font-size: 2.5rem;
  }

  .banner h3{
    font-size: 1.5rem;
  }

  .banner-buttons{
    display: inline-flex;
    flex-direction: column;
  }

  .service-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  }

  .card-category{
    width: 100%
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
  }

  .footer .links-box .nav-links{
    display: none;
    overflow-x: hidden;
  }

  .copy{
    margin-bottom: 16px;
  }

  .container .card-product-infos{
    padding: 16px;
  }

  .review-section .review .review-text{
    font-size: 24px;
  }

  #engagements .tile-container{
    grid-template-columns: 1fr 1fr;
  }

  #contact .form-div #contact-form{
    width: 100%;
  }

  #contact .form-div #contact-form .form-group{
    flex-direction: column;
  }

  #contact .form-div #contact-form .form-group label{
    width: 100%;
    font-size: 16px;
  }

  #contact .form-div #contact-form .form-group .checkbox-label{
    font-size: 16px;
  }

  #engagements .fa-search{
    font-size: 2.5rem;
  }

  #engagements .fa-chart-line{
    font-size: 2.5rem;
  }

  #engagements .fa-handshake{
    font-size: 2.5rem;
  }

  #engagements .fa-users{
    font-size: 2.5rem;
  }

  #engagements .fa-piggy-bank{
    font-size: 2.5rem;
  }

  #engagements .fa-clipboard-check{
    font-size: 2.5rem;
  }
}

.nav-active{
  transform: translateX(-101%);
}

@keyframes navLinkFade{
  from{
    opacity: 0;
    transform: translateX(50px);
  }
  to{
    opacity: 1;
    transform: translateX(0px);

  }
}

.toggle .line1{
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2{
  opacity: 0;
}

.toggle .line3{
  transform: rotate(45deg) translate(-5px, -6px);
}

.img-logo{
  width: 400px;
  display: block;
  height: auto;
  margin-left: 32px;
}

.img-logo:hover{
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.nav-call{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: 32px;
  width: 200px;

}

.quote-button-small{
  opacity: 0.8;
  border-radius: 5px;
  border: none;
  color: #fff;
  z-index: 100;
  font-size: 16px;
}
@media screen and (max-width:850px){
  .quote-button-small{
    font-size: 10px;
  }
}

.quote-button-small:hover{
  opacity: 1;
  cursor: pointer;
}

.phone-redirect{
  text-decoration: none;
  color: #36454f;
  font-size: 18px;
}

.phone-redirect:hover{
  color: black;
  text-decoration: underline;
}

.fa-phone{
  color: #36454f;
  font-size: 18px;
}

.banner{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 88vh;
  text-align: center;
  margin:0 !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}


.banner-text{
  margin-bottom: 32px;
}

#wave-video{
  position: absolute;
  top: 16vh;
  right: 0;
  width: 100%;
  z-index: -1;
  height: 84vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}

h1{
  color:#fff;
  margin-bottom: 16px;
  font-size: 3rem;
}

h2{
  color: #36454f;
  font-size: 2rem;
}

h3 {
  color:#fff;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.container.services {
  width: 100%;
  margin: auto;
  text-align: center;
  margin-bottom: 32px;
  height: auto;
}

.service-container{
  display: flex;
  justify-content: space-around;

}

.text-top{
  padding: 10px;
  margin: 0px auto 32px auto;
}
@media screen and (max-width:768px){
  .text-top h2{
    font-size: 25px;
  }
}


.card-category {
  background-size: cover;
  background-position: center;
  height: 300px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  width: 100%;
  margin: 16px;
  padding: 8px;
  opacity: 0.8;
}

.card-category:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 1;
}

span{
  color: #042da9 ;
  background-color: #eeeef0;
  border-radius: 5px;
}

.review-section{
  width: 100%;
  height: auto;
  margin-top: 32px;
  margin-bottom: 32px;
  text-align: center;
  background-color: #eeeef0;
  padding: 16px;
}

.fa-quote-right{
  color: #042da9;
}

.review{
  margin: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-text{
  font-size: 32px;
  color: #515151;
  margin: 16px;
}

em{
  font-weight: bold;
}

.engagement-container{
  width: 100%;
  height: auto;
  text-align: center;
  padding: 40px 0px 40px 0px !important;
}

.tile-container{
  width: 70%;
  height: 60vh;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
@media screen and (max-width:768px){
  .tile-container{
    width: 100%;
    padding: 0 10px;
  }
}
.tile{
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.tile:hover{
  transform: rotateY(180deg);
}

.tile-ow .back {
  opacity: 0;
}
.tile-ow:hover .back {
  transform: initial;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: #b1cf4d;
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: #515151;
  color: #fff ;
  transform: rotateY(180deg);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100%;
  font-weight: bold;
  padding: 8px;
}

.fa-search{
  font-size: 4rem;
}

.fa-chart-line{
  font-size: 4rem;
}

.fa-handshake{
  font-size: 4rem;
}

.fa-users{
  font-size: 4rem;
}

.fa-piggy-bank{
  font-size: 4rem;
}

.fa-clipboard-check{
  font-size: 4rem;
}

.box{
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: 50% 50%;
  object-fit: cover;
  text-align: center;
  padding: 10px;
}
.contact-us .box{
  padding-top: 30vh;
  padding-bottom: 5vh;
}
@media screen and (min-width: 768px){
  .contact-us .box{
    padding-top: 40vh;
  }
}
@media screen and (min-width: 1300px){
  .contact-us .box{
    padding-top: 18vh;
  }
}
.footer{
  width: 100%;
  height: 120px;
  background-color: #36454f;
  padding: 10px;
}

#contact-form{
  display: inline-block;
  border-radius: 5px;
  width: 50%;
  height: auto;
  border-radius: 5px;
  padding: 24px;
  background-color: #eeeef0; opacity: 0.8;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.form-group {
  margin: 0 auto 1.25rem auto;
  padding: 0.25rem;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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;
  opacity: 1;
}

.form-control:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}


label {
 display: flex;
 align-items: center;
 margin-bottom: 0.5rem;
 color: #495057;
 width: 35%;
 font-size: 20px;
 text-align: left;
}

.input-checkbox {
  display: inline-block;
  margin-right: 0.625rem;
  min-height: 1.25rem;
  min-width: 1.25rem;
}

.checkbox-label{
  font-size: 18px;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  opacity: 1;
}
.contact-address-wrap {
  display: flex;
  margin: auto;
  width: 50%;
}
@media screen and (max-width: 768px){
  .contact-address-wrap {
    margin: initial;
    width: initial;
  }
}
.contact-address {
  font-weight: bold;
  text-align: left;
  background-color: #eeeef0;
  opacity: 0.8;
  padding: 10px;
  padding-bottom: 0;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 20px;
}
.contact-text{
  margin-bottom: 32px;
  text-align: center;
}

.footer{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #36454f;
}

.footer-logo{
  height: auto;
}

.fontawesome-box{
  font-size: 2rem;
  white-space: nowrap;
}

.copy{
  font-size: 1rem;
  color: #b1cf4d;
  font-weight: bolder;
}

.fa-instagram{
  color: #b1cf4d;
  margin-right: 16px;
}

.fa-instagram:hover{
  color: black;
  transform: scale(1.2);
}

.fa-twitter{
  color: #b1cf4d;
  margin-right: 16px;
}

.fa-twitter:hover{
  color: black;
  transform: scale(1.2);
}

.fa-linkedin{
  color: #b1cf4d;
  margin-right: 16px;
}

.fa-linkedin:hover{
  color: black;
  transform: scale(1.2);
}

.gotopbtn{
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 25px;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  color: #b1cf4d;
  font-size: 40px;
  z-index: 151;
}

.gotopbtn:hover{
  color: black;
}

.phone-box{
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.phone-box:hover{
  transform: scale(1.2);
}

.row{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.card-product {
    overflow: hidden;
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    margin: 0px auto 16px auto;
    overflow: hidden;
}

.card-product img {
  height: 100%;
  width: 250px;
  object-fit: cover;
  transition: transform .5s ease;
}

.card-product h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 16px;
  color: #042da9;
}

.card-product p {
  font-size: 16px;
  line-height: 1.4;
  opacity: .7;
  margin-bottom: 0;
  margin-top: 8px;
  text-align: justify;
}

.card-product .card-product-infos {
  padding: 16px;
}

.service-title{
  margin-bottom: 32px;
}

.paidadv{
  position: relative;
  right: 18px;
}

.market{
  position: relative;
  left: 32px;
}

.preferred-method{
  width: 80%;
}

.footer-links{
  margin: 0;
}

.footer-links a{
  color: #b1cf4d;
  margin: 8px;
  font-weight: bold;
}

@media screen and (max-width:1224px){
  .nav-links.footer-links a{
    font-size: 12px;
  }
}
/* our work template  */
.whitepane.our-work {
  padding-top: 20vh;
}
@media screen and (min-width:768px){
  .whitepane.our-work {
    padding-top: 26vh;
  }
}
@media screen and (min-width:1300px){
  .whitepane.our-work {
    padding-top: 16vh;
  }
}

/* ux design template styels */
.ux-design-banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 65vh;
}
@media screen and (min-width:568px){
  .ux-design-banner {
    min-height: 80vh;
  }
}
/* @media screen and (min-width:768px){
  .ux-design-banner {
    min-height: 90vh;
  }
} */
/* @media screen and (min-width:1024px){
  .ux-design-banner {
    min-height: 100vh;
  }
} */
.ux-red-box {
  margin-top: 116px;
  margin-bottom: 50px;
  padding: 20px 30px;
  color: white;
  background-color: #808080;
  font-size: 18px;
}
@media screen and (max-width:768px){
  .ux-red-box {
    margin: 0 10px;
  }
}
.ux-red-box h6 {
  font-weight: normal;
}

.ux-row {
  padding-top: 50px;
  padding-bottom: 50px;
  align-items: flex-start;
}

.ux-col-txt h2 {
  padding-bottom: 30px;
}
.ux-col-txt ul {
  padding-left: 60px;
}