

html {
  scroll-padding-top: 70px; /* height of sticky header, because the header hides the content when jumping to it */
}

/* TOP HEADER */
#topheader-01{
  background: var(--tophead-bg); 
  border-bottom: 1px solid #e9e9e9;
}

.list-top-header-2 {
  padding-right: 0px; margin-bottom: 0px;
}


/*MENU TOP */
#header_01 .dropdown-toggle::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-weight: 700;
  border-top: 0;
  vertical-align: middle;
  margin-left: 1px;
  padding-left: 0;
  border: 0;
  font-size: 14px;
}

#header_01 .dropdown:hover .dropdown-toggle::after, #header_01 .dropdown:hover .nav-link {
  color: var(--color-secondary);
  transition: all 0.2s;
}

#header_01.fixed-top {
  top: -40px;
  transform: translateY(40px);
  transition: transform .3s;
  margin-top: 0px !important;
}

#header_01.navbar {
  background: #000;
  padding: 5px 0;
  margin-top: 0;
}

#header_01 .navbar-brand img {
  max-height: 85px;
  max-width: 230px;
  margin-right: 100px;
}

.navbar-expand-lg .navbar-nav {
  justify-content: space-between !important; 
  width: 100% !important;
  
}

#header_01 .navbar-nav .nav-link {
  color: #FFF;
  font-size: var(--header-fs);
  text-transform: var(--header-tt);
  font-weight: var(--header-fw);
  padding: 0.9rem 0.5rem;
}


#header_01 .whatsapp {
    font-size: var(--header-fs);
    background: var(--whatsapp-bg);
    color: var(--whatsapp-color);
    padding: 8px 14px;
    border-radius: 3px;
    text-decoration: none;
    margin-left: 15px;
}
#header_01 .whatsapp small, #header_01 .emergencia24 small {
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  line-height: 11px;
}


#header_01 .whatsapp i {
    margin-right: 5px;
}

#header_01 .dropdown:hover > .dropdown-menu, #header_01 .dropdown-submenu:hover > #header_01 .dropdown-menu {
  display: block;
  margin-top: 0;
  -webkit-animation-name: slideInDownMenu;
  -moz-animation-name: slideInDownMenu;
  -o-animation-name: slideInDownMenu;
  animation-name: slideInDownMenu;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  -o-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

#header_01 .dropdown-menu {
  padding: 0.9rem;
  min-width: 240px;
  background: #FFF;
  margin: 0;
  border: 0;
  border-radius: 5px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1) !important;
}

#header_01 .dropdown-menu > li > a, #header_01  .megamenu-content-wrap ul li a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  position: relative;
  margin: 1px 0;
  transition: none;
}

#header_01 .dropdown-menu a, #header_01  .dropdown-menu li > a {
  font-size: 1rem;
  padding: 5px 15px 5px 35px;
  text-transform: capitalize;
  text-decoration: none;
}

#header_01 .dropdown-menu > li > a::before, #header_01 .megamenu-content-wrap ul li a::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: var(--color-secondary);
  width: 14px;
  height: 14px;
  left: 10px;
}

#header_01 .dropdown-item.active, #header_01 .dropdown-item:focus, #header_01 .dropdown-item:hover, #header_01 .dropdown-item:active, #header_01 .dropdown-menu > li.show > a {
  color: #ffF;
  text-decoration: none;
  background-color: var(--color-secondary);
  border-radius: 200px;
}

#header_01 .dropdown-menu > li > a:hover:before, #header_01 .dropdown-menu > li.show > a:before, #header_01 .megamenu-content-wrap ul li a:hover::before {
  background-color: #FFF;
}

#header_01 .dropdown-menu:after {
  position: absolute;
  top: -7px;
  left: 20px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent #FFF transparent;
}

#header_01 .navbar-toggler {
  background: transparent;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0px;
  cursor: pointer;
  transition: all .1s ease-in-out;
}

#header_01 .navbar-toggler .navbar-toggler-icon {
  width: 40px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  transition: all .1s ease-in-out;
}

#header_01 .navbar-toggler .navbar-toggler-icon::before,
#header_01 .navbar-toggler .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: all .1s ease-in-out;
}

#header_01 .navbar-toggler .navbar-toggler-icon::before {
  transform: translateY(-12px);
}

#header_01 .navbar-toggler .navbar-toggler-icon::after {
  transform: translateY(12px);
}

/* ANIMATION  MENU HAMBURGER*/
#header_01 .navbar-toggler.open .navbar-toggler-icon {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}

#header_01 .navbar-toggler.open .navbar-toggler-icon::before {
  transform: rotate(45deg) translate(35px, -35px);
}

#header_01 .navbar-toggler.open .navbar-toggler-icon::after {
  transform: rotate(-45deg) translate(35px, 35px);
}

#header_01 .navbar-toggler:focus, #header_01 .navbar-toggler:active, #header_01 .navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
	#header_01 .dropdown-menu li{ position: relative; 	}
	#header_01 .nav-item .submenu{ 
		display: none;
		position: absolute;
		left:100%; 
    top:-15px;
	}
	#header_01 .nav-item .submenu-left{ 
		right:100%; 
    left:auto;
	}

  #header_01 .submenu:after {
    display: none;
  }

  #header_01 .dropdown-menu > li:hover > a::before {
    background: #fff;
  }

  #header_01 .dropdown-menu > li:hover > a {
    color: #fff;
  }

	#header_01 .dropdown-menu > li:hover{     
    color: #fff;
    text-decoration: none;
    background-color: var(--color-secondary);
    border-radius: 200px;
  }

	#header_01 .dropdown-menu > li:hover > .submenu{ display: block; }
}	
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
  #header_01 .dropdown-menu .dropdown-menu{
      margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem;
  }
}	
/* ============ small devices .end// ============ */

@media only screen and (max-width : 992px) {
  #header_01 .navbar-toggler  {
    display: flex;
  }
}

@media only screen and (max-width : 768px) {
  #header_01 .whatsapp {
    display: none;
  }
}

@media (min-width: 992px) {
  .order-lg-last {
      order: 6!important;
  }
}


/* BANNER TECNOLOGIA */
#conceitual_tecnologia h2 {
  color: var(--color-secondary);
  font-size: 31px;
  font-weight: 600;
  margin-bottom: 25px;
}

#conceitual_tecnologia h1, #video_area h2, #reviews h2 {
  color: var(--color-primary);
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 25px;
}

.bold {
  font-weight: 600;
}

#conceitual_tecnologia .padding {
  padding: 0 80px;
  text-align: center;
}

#conceitual_tecnologia h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

#conceitual_tecnologia .subtitle {
  text-align: center;
  margin: 30px 0;
}

#conceitual_tecnologia .form-group {
display: inline-flex;
width: 49.5%;
}

.form-group {
  padding: 10px 7px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary) !important;
  background-color: #e8e8e8;
  background-clip: padding-box;
  border: 1px solid #e8e8e8;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 8px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

select, option {
  color: var(--color-primary) !important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-primary) !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--color-primary) !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--color-primary) !important;
}



.btn-primary  {
  background: #ffcd00;
  color: var(--fc-p);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  padding: 8px 30px;
  margin-top: 5px;
  width: fit-content;
}

#video_area .pdl-50 {
  padding-left: 50px;
}

/* CASES */
#case {
  background: #1a1b1b; 
}

#case .box_1 {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 24px;
  text-align: center;
}

#case .box_1:first-child {
   margin-bottom: 60px;
}

#case .box_2 {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 22px;
  margin-left: 20px;
  margin-top: 30px;
}

#case .box_2 p {
font-size: 15px;
}

#case .box_2 .avatar {
  display: flex;
  align-items: center;
}

#case .box_2 .avatar img {
  margin-right: 10px;
}

#case .btn-primary {
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 65px;
}

#case .box_1 h2 {
  font-size: 38px;
}

#case .box_1 p {
  font-size: 14px;
  margin: 10px 0 20px 0;
}

#case .box_1 img {
  max-width: 100%;
}

#case .data-white {
  padding-left: 40px;
}

#case .data-white h2 {
  color: #fff;
}

#case .data-white p {
  color: #fff;
}

#case .data-white .subtit {
  margin: 20px 0;
}

#case .box_3 {
  border: 1px solid #f5f6f7;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin: 10px 0px;
}

#case .box_3 img {
  margin-bottom: 15px;
}

#case .box_3 p {
  font-size: 14px;
}

#banner-2 .carousel-control-next, #banner-2 .carousel-control-prev {
  background: initial;
  border: 0;
}

/* FLOW */
#flow .bg {
  background-image: url(../img/lines-bg.png);
  background-position-y: 100px;
  background-repeat:no-repeat;
  z-index:1;  
  background-size:contain;
}

#flow .box {
  text-align: center;
  width: fit-content;
  margin: auto;
  padding: 15px;
  border-radius: 7px;
  margin-bottom: 25px;
  position: relative;
  background: #fff;
}

#flow h3{
  font-size: 20px;
}

#flow p{
  font-size: 15px;
}

#flow .data_1 {
  margin-top: 30px;
  text-align: center;
  padding: 20px;
}

#flow .data_2 {
  margin-top: 150px;
  text-align: center;
  padding: 20px;
}


#flow .box::after {
  content: '';
  border-top: 12px solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  bottom: -12px;
  position: absolute;
  left: 36px;
}

#flow .btn-primary {
  margin-top: 30px !important;
}

/* GOOGLE REVIEWS */
#reviews .max-100 {
  max-width: 100%;
  margin-top: 50px;
}

/*FOOTER TECNOLOGIA */
#footer_tecnologia {
  padding: 50px 0;
  background-color: #282828;
  margin-top: 100px;
}

#footer_tecnologia .logo {
  margin-bottom: 20px;
}

#footer_tecnologia p {
  color: #fff;
}

#footer_tecnologia h3 {
  color: #fff;
  font-size: 23px;
  margin-bottom: 25px;
}

#footer_tecnologia h5 {
  color: #fff;
  font-size: 18px;
}

#footer_tecnologia .store {
  display: inline-block;
  width: 45%;
  margin-right: 4%;
}

#footer_tecnologia .desktop_none {
  display: none;
}
  
  
.spamtext {
  background: rgb(245, 245, 245);
  text-align: center;
  color: var(--color-primary);
  position: relative;
}

.spamtext .container {
  border-top: 1px solid #DCDCDC;
  padding: 40px;
  text-align: justify;
}

.spamtext p {
  font-size: 12px;
}

.btn-primary:hover {
  background-color: var(--color-secondary);  
  color: #000;
  box-shadow: 0 0 0 0.15rem rgba(108, 108, 108, 0.1);
  opacity: 0.9;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.15rem rgba(108, 108, 108, 0.1);
}

.btn_phone {
  background: var(--color-primary);
  display: block;
  max-width: fit-content;
  padding: 10px 30px;
  margin: auto;
  margin-bottom: 30px;
}



/* MOBILE */
#header_01 .mobile {
  display: none;
}

@media only screen and (max-width : 991px) {

  html {
    scroll-padding-top: 40px; /* height of sticky header, because the header hides the content when jumping to it */
  }
  
  /*  HEADER */
  #header_01 .mobile {
    display: block;
  }

  #header_01 .desktop {
    display: none;
  }

  #header_01.navbar {
    background: #202021;
    margin-top: 0px;
    padding: 8px 0;
  }

  #header_01 .navbar-brand img {
    margin-right: 0px;
    max-width: 180px;
  }

  #header_01 .navbar-nav .nav-link {
    color: #fff;
  }

  /* CONCEITUAL */
  #conceitual_tecnologia h2 {
    font-size: 22px;
  }

  #conceitual_tecnologia h1, #video_area h2, #reviews h2, #conceitual_tecnologia h3, #case .data-white h2, #flow h2 {
    font-size: 25px;
    line-height: 35px;
  }

  /* FORM */
  #conceitual_tecnologia .padding {
    padding: 0px;
  }

  #conceitual_tecnologia .form-group {
    width: 100% !important;
  }

  #conceitual_tecnologia h3.padding {
    padding-top: 40px;
  }
  #conceitual_tecnologia .subtitle {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  /* VIDEO AREA */
  #video_area {
    padding: 0px;
  }

  #video_area video {
    padding-bottom: 30px;
  }

  #video_area .pdl-50 {
    padding-left: 15px;
  }

  /* CASE AREA */
  #case .data-white {
    padding-left: 15px;
  }

  #case .box_3 {
    padding: 15px 5px;
    min-height: 250px;
  }

  #case .box_3 p {
    font-size: 13px;
    margin-bottom: 0px;
  }

  #case .box_2 {
    margin-left: 0px;
    padding: 15px;
    margin-top: 0px;
  }

  #case .box_1 {
    padding: 10px;
  }

  #case .box_1:first-child {
    margin-bottom: 20px;
  }

  #case .box_1 h2 {
    font-size: 28px;
  }

  #case .box_1 p {
    font-size: 13px;
  }

  #case .box_2 p {
    font-size: 13px !important;
  }

  #case .mrg-mobile {
    margin-top: 30px;
  }

  /* FLUXO */
  #flow .data_1, #flow .data_2 {
    padding: 0px;
  }

  #flow {
    background: none;
  }

  #flow h3 {
    font-size: 15px;
  }

  #flow p {
    font-size: 13px;
  }

  /* Reviews */
  #video_area h2, #reviews h2 {
    text-align: center;
  }

  /*FOOTER */
  #footer_tecnologia .logo {
    max-width: 140px;
  }

  #footer_tecnologia p {
    color: #fff;
    font-size: 12px;
  }

  #footer_tecnologia .store {
    display: inline-block;
    width: 100%;
    margin-right: 0%;
    margin-bottom: 7px;
  }

  #footer_tecnologia h3 {
    margin-top: 0px;
    font-size: 18px;
  }

  #footer_tecnologia h5 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  #footer_tecnologia .desktop_none {
    display: block;
    max-width: 100px;
  }

  #footer_tecnologia .mobile_none {
    display: none;
  }

  /* CONTROLES GERAIS */
  p {
    font-size: 15px;
  }

  .btn-primary {
    padding: 8px 20px;
    margin-top: 5px;
    font-size: 14px;
  }

  /* ABOUT US */
  #aboutus_01 .about-home-one {
    width: 100%;
    padding: 15px;
  }
  #aboutus_01.ptb-75 {
    padding-top: 0px;
  }

  #aboutus_01 .about-home-one .about-video a {
    top: -20%;
    left: 0%;
    width: 100%;
    background: transparent;
  }

  #aboutus_01 .about-home-one .about-video a i {
    border-radius: 50px;
    padding: 18px 30px 13px 30px;
    background: var(--color-secondary);
  }

  #aboutus_02 ul li {
    width: 100%;
  }

  /* CENTRALIZAÇÃO ARROWS BLOG */
  #carrousel_01 .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #carrousel_01 .owl-carousel .owl-nav button.owl-prev {
      position: relative;
      top: unset;
      left: unset;
      }
      
  #carrousel_01 .owl-carousel .owl-nav button.owl-next {
      position: relative;
      top: unset;
      right: unset; 
  }

  /* FOOTER */
  .footer {
    text-align: center;
  }
  
  .footer ul {
    width: 100%;
    justify-content: center;
  }

  #sticky_area .sticky_data {
    margin-top: 0px !important;
  }

  #service-data .siderbar_interna {
    margin-top: 15px !important;
  }

  #subheader_01 {
    text-align: center;
  }

  #subheader_01 .breadcrumb {
    justify-content: center;
  }

  #subheader_01 h1 {
    margin: 20px 0 0 0;
  }

  .divider2::after {
    margin: auto;
    margin-top: 20px;
  }

  .siderbar_interna .list_service {
    display: none;
  }
  
  #assinatura {
    text-align: center;
  }

  #contact-page-01 .pq-form-box {
    width: 100%;
  }

  #reviews img {
    margin: auto;
    display: block;
  }

  #reviews .clients {
    margin-top: 50px;
  }

  #flow .bg {
    background: none;
  }

  .btn-primary {
    text-align: center;
  }

  #flow .data_1, #flow .data_2 {
    margin-top: 0px;
    margin-bottom: 30px;
  }
}