::-webkit-scrollbar-track { background-color: #F4F4F4; }
::-webkit-scrollbar { width: 8px; background: #F4F4F4; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(71deg, rgba(218,26,71,1) 0%, rgba(180,14,53,1) 100%);
}

body { overflow-x: hidden; background: rgb(21, 26, 45); }
#top {
    padding-right: 1rem;
    padding-left: 1rem;
    overflow: hidden;
    background-image: linear-gradient(188deg, rgb(151 52 52) 94px, rgb(79, 5, 153) 327px, rgb(21, 26, 45) 540px, rgb(21, 26, 45) 100%);
}

.bg-nav { background: transparent; transition: background 1s ease; }
.bg-nav-with-color { background: rgba(21, 26, 45, .95); }

.nav-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .4px;
  display: block;
  display: inline-block;
  color: #F9F9F9!important;
  text-transform: unset!important;
  font-size: 17px!important;
}

.btnCall {
    list-style: none;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    position: relative;
    background: linear-gradient(71deg, rgba(218,26,71,1) 0%, rgba(180,14,53,1) 100%);
    border-radius: 30px;
    color: #ffffff;
    border: 0;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer !important;
    box-shadow: 0 0 15px 6px rgba(221,22,68,0.4);
    transition: all 300ms ease-in-out;
    display: block;
    height: 60px;
    padding: 20px 25px;
}

.btnCall:hover {
    box-shadow: 0 0 25px 10px rgb(221 22 68 / 40%);
    color: #fff;
}

.color-copyright { color: #5384b5; opacity: .65; }
.color-hover-copyright:hover { color: #5384b5; opacity: .65; }
.color-icon-form { color: rgb(59, 71, 120); }
.bg-contato { background: rgb(13, 16, 28); }

.bg-orange { background: rgb(255, 93, 42); }
.color-orange { color: rgb(255, 93, 42); }
.color-red { color: #fa055f; }
.color-icons { color: #c20404; opacity: .75; }
.color-icons:hover { color: #c20404; opacity: 1; }

.bg-red { background: #eb053e; }

.w-200px { width: 200px; }
.w-300px { width: 300px; }

.lead-form { color: #FFF!important; font-weight: 600; }
.lead-form:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 6px #67b168;
}

.lead-form::-webkit-input-placeholder {
    font-weight: bold;
    color:#FFF;
    opacity: .9;
}
.lead-form::-moz-placeholder {
    font-weight: bold;
    color:#FFF;
    opacity: .9;
}
.lead-form::-ms-input-placeholder {
    font-weight: bold;
    color:#FFF;
    opacity: .9;
}

@media (max-width: 768px) { 
    .justify-xs-content-center { justify-content: center; } 
    .w-xs-70px { width: 70px; }
    .h-xs-70px { height: 70px; }
    #top { padding-top: 110px; }

    .rotate img {
        opacity: .2;
        position: absolute;
    }
}

/* ICONS */
.header-icons a { 
    color:#FFF; 
    font-size: 18px;
    text-decoration: none;
}
.header-icons a:hover { text-decoration: none; color:#FFF!important; }

.header-icons a div {
    box-shadow: 3px 2px rgba(0, 0, 0, .4);
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    border:2px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: 4px;
    margin-right: 4px;
    -webkit-transition: 0.45s ease-in;
    -moz-transition: 0.45s ease-in;
    -o-transition: 0.45s ease-in;
    transition: 0.45s ease-in;
}

.header-icons a div:hover { background: linear-gradient(71deg, rgba(218,26,71,1) 0%, rgba(180,14,53,1) 100%); }


.h-110 {
    height: 110px!important;
}

.h-lg-375 { height: 375px; }

.square-160 { width: 160px; height: 160px; }


.filter-me {
	filter: grayscale(1.0) blur(3px);
	opacity: .2;
	cursor: pointer;
    transition: all 200ms ease-in-out;

}

.filter-me:hover {
    filter: grayscale(0) blur(0px);
    opacity: .7;
}

@media (min-width: 990px) { 
  .contact-methods-container { padding-right: 155px; } 
  .w-lg-125px { width: 125px; }
  .h-lg-125px { height: 125px; }
    .mb-lg-8 {
        margin-bottom: 6rem!important;
    }
  #top { padding-top: 25px; }  
}


.empresa {
    font-family: 'Poppins', sans-serif;
    color: #ededed;
}



.swing{
    -moz-animation: 20s ease 0s normal none infinite swing;
    -moz-transform-origin: center top;
    -webkit-animation:swing 20s infinite ease-in-out;
    -webkit-transform-origin:top;
}
@-moz-keyframes swing{
    0%{-moz-transform:rotate(-3deg)}
    50%{-moz-transform:rotate(3deg)}
    100%{-moz-transform:rotate(-3deg)}
}
@-webkit-keyframes swing{
    0%{-webkit-transform:rotate(-3deg)}
    50%{-webkit-transform:rotate(3deg)}
    100%{-webkit-transform:rotate(-3deg)}
}



.rotate {
  animation: rotate 70s infinite linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(100deg);
  }
}



.upAndDown {
    -webkit-animation: action 1s infinite  alternate;
    animation: action 1s infinite  alternate;
}

@-webkit-keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}


.border-icon-service {
    border: 2px solid #ccc;
}

.bg-gradient-pink-blue {
    background: -webkit-linear-gradient(-70deg, #ff0000 0%, #2188ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
}


.bg-red-line { background: linear-gradient(71deg, rgba(218,26,71,1) 0%, rgba(180,14,53,1) 100%); }


.wpp-pulse-button {

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    width: 85px;
    height: 85px;
    font-size: 1.25em;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 100px;
    letter-spacing: -1px;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: rgb(26 195 146 / 80%) 0px 0px 20px;
    -webkit-animation: pulse 1.5s infinite;

    position: relative;
    margin: auto; 
    border: double 7px transparent;
    border-radius: 50%;
    background: #1cad52;
    border:5px solid rgba(0,0,0,.1);

}

.wpp-pulse-button:hover {
  -webkit-animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  70% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(90, 153, 212, 0);
  }
  100% {
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}



.bg-base {
    background: linear-gradient(71deg, rgba(218,26,71,1) 0%, rgba(180,14,53,1) 100%)!important;
}

.btnSend {
    box-shadow: 0 0 15px 6px rgba(221,22,68,0.4)!important;
}

.btnSend:hover {
    box-shadow: 0 0 25px 10px rgb(221 22 68 / 40%)!important;
}

.border-profile { border: 7px solid #FFF; }

.bg-card-team { background: #f5f5f5; }


