.img-icone{
  height: 89px;
  display: block;
	max-width: 300px;
	margin: 20px auto 40px auto;
	transition: .3s;
	
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray; /* IE */
}
.img-icone:hover {
	-webkit-filter: none;	
	filter: none;	
}

.img-fluid {
  max-width: 100%;
  height: auto
}

.item {
  height: 90vh;
  width: 120%;
}

.item img {
  width: 120%;
  height: 100%;
  object-fit: cover;
}

.cover {
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;

}

.header-content {
  position: relative;
  padding: 56px;
}

.header-content h2 {
  color: white;
  font-weight: 300;
  font-size: 35px;
}

.header-content h1 {
  color: white;
  font-weight: 600;
  font-size: 56px;
  word-spacing: 3px;
}

.header-content h4 {
  color: white;
  font-weight: 300;
  font-size: 24px;
  word-spacing: 10px;
}

.header-content .line {
  content: "";
  width: 100%;
  height: 100%;
  margin: 20px;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid white;
  clip-path: polygon(0 0, 85% 0, 32% 100%, 0% 100%);

}

.line-2 {
  content: "";
  width: 100%;
  height: 100%;
  margin: 20px;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid rgb(67, 15, 151);
  clip-path: polygon(100% 1%, 83% 0%, 51% 51%, 19% 0%, 0% 0%, 0% 19%, 57% 48%, 0 81%, 0 100%, 18% 100%, 55% 39%, 81% 100%, 100% 100%, 100% 81%, 51% 49%, 56% 49%, 63% 47%, 51% 43%, 100% 19%);

}

.active .line {
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-delay: 0.3s;
  animation-duration: 1s;
  animation-name: fadeInLeft;
}



.active h1 {
  animation-fill-mode: both;
  animation-delay: 0.3s;
  animation-duration: 1s;
  animation-name: fadeInDown;
}

.active h2 {
  animation-fill-mode: both;
  animation-delay: 0.3s;
  animation-duration: 1s;
  animation-name: fadeInDown;
}

.active h4 {
  animation-fill-mode: both;
  animation-delay: 0.3s;
  animation-duration: 1s;
  animation-name: fadeInDown;
}

.text-img {
  justify-content: center;
}

header .header-nav {
  background: rgba(151, 118, 118, 0);
  padding-top: 20px;
  padding-bottom: 50px;
  position: fixed;
  color: white;
  top: 0;
  left: 0;
  z-index: 1030;
  right: 0;
}

header .header-nav .wrap {
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative
}

header .header-nav .logo {
  flex-grow: inherit;
  top: 0
}

header .header-nav .logo a {
  display: block;
  max-width: 180px
}

header .header-nav .logo .logo-fix {
  display: none
}

header .header-nav .menu {
  padding: 0 30px;
  justify-content: space-between;
  flex-grow: 1;
  display: inline;
  align-items: center
}

header .header-nav .menu .nav {
  padding: 0;
  float: right
}

header .header-nav .menu .nav ul {
  margin: 0;
  padding: 0
}

header .header-nav .menu .nav ul li {
  display: inline-block
}

header .header-nav .menu .nav ul li>a {
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
  line-height: 50px;
  position: relative;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase
}

header .header-nav .menu .nav ul li>a:before {
  content: "";
  position: absolute;
  left: 12px;
  right: 17px;
  bottom: 5px;
  margin: auto;
  background-color: #ffffff;
  height: 3px;
  transform-origin: right center;
  -webkit-transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -khtml-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -khtml-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -moz-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -ms-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -o-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85)
}

header .header-nav .menu .nav ul li>a.active,
header .header-nav .menu .nav ul li>a:hover {
  color: #e9e9e9
}

header .header-nav .menu .nav ul li>a.active:before,
header .header-nav .menu .nav ul li>a:hover:before {
  transform-origin: left center;
  -webkit-transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1)
}

header .header-nav .sidemenu_btn {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 35px;
  position: relative;
  margin-right: 20px
}

header .header-nav .sidemenu_btn span {
  height: 3px;
  width: 100%;
  background: #ffffff;
  display: block
}

header .header-nav .sidemenu_btn span:nth-child(2) {
  margin: 5px 0
}

header .header-nav-pages {
  border-bottom: 1px solid #ddd;
  background: #fff
}

header .header-nav-pages .menu {
  border-left: 1px solid #ddd
}

header .header-nav-pages .menu .nav ul li>a {
  color: #333
}


header .side-menu {
  width: 50%;
  position: fixed;
  right: 0;
  top: 0;
  background: #ffffff;
  z-index: 9999;
  height: 100%;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  overflow: hidden
}

header .side-menu .navbar-brand {
  margin: 0 0 2.5rem 0
}

header .side-menu .btn-close {
  height: 33px;
  width: 33px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 30px;
  right: 25px;
  cursor: pointer
}

header .side-menu .btn-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

header .side-menu .btn-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

header .side-menu .inner-wrapper {
  padding: 3.5rem 2rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

header .side-menu .side-nav {
  margin-bottom: 30px;
  display: block
}

header .side-menu p {
  margin-top: 0.5rem;
  margin-bottom: 0
}

header .side-menu.left {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0)
}

header .side-menu.before-side {
  width: 280px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

header .side-menu.before-side .btn-close {
  display: none
}

header .side-menu.side-menu-active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

header .side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1
}

header .pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1
}


header .fixed-menu {
  background: rgb(20, 1, 51);
  position: fixed;
  padding: 0px;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
  -webkit-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

header .fixed-menu .logo .logo-main {
  display: none
}

header .fixed-menu .logo .logo-fix {
  display: block;
  width: 9em
}

header .fixed-menu .menu {
  padding: 0
}

header .fixed-menu .sidemenu_btn span {
  background: #000
}

.faixa {
  background: red;
}

footer {
  background-image: linear-gradient(#00001c, #161111, #00004c);
  background-size: cover;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}


.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.floating-smi {
  position: fixed;
  z-index: 9;
  top: 40%;
  right: 15px
}

.floating-smi .floating-smi-wrap .floating-smi-list {
  display: block
}

.floating-smi .floating-smi-wrap .floating-smi-list li {
  display: block;
  border-radius: 18px;
  width: 36px;
  height: 36px;
  margin-bottom: 10px
}

.floating-smi .floating-smi-wrap .floating-smi-list li:nth-child(1) {
  display: block;
  margin-bottom: 45px
}

.floating-smi .floating-smi-wrap .floating-smi-list li:nth-child(1):before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%
}

.floating-smi .floating-smi-wrap .floating-smi-list li:nth-child(1):after {
  height: 41px
}

.floating-smi .floating-smi-wrap .floating-smi-list li:nth-last-child(1):after {
  display: none
}

.floating-smi .floating-smi-wrap .floating-smi-list li>em,
.floating-smi .floating-smi-wrap .floating-smi-list li>a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border: 1px solid linear-gradient(#00004c, #5e5151, #00004c);
  background: linear-gradient(#00004c, #5e5151, #00004c);
  color: white;
  font-size: 22px;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out
}

.floating-smi .floating-smi-wrap .floating-smi-list li>em>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%
}

.safari .floating-smi .floating-smi-wrap .floating-smi-list li>em,
.safari .floating-smi .floating-smi-wrap .floating-smi-list li>a {
  border-color: #F3931F
}

.floating-smi .floating-smi-wrap .floating-smi-list li>em:hover,
.floating-smi .floating-smi-wrap .floating-smi-list li>a:hover {
  background: white;
  border-color: #000000;
  color: #000000
}

.copy {
  background: rgb(20, 1, 51);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.rounded {
  border-radius: .25rem !important
}

.rounded-0 {
  border-radius: 0 !important
}

.rounded-1 {
  border-radius: .2rem !important
}

.rounded-2 {
  border-radius: .25rem !important
}

.rounded-3 {
  border-radius: .3rem !important
}

.rounded-circle {
  border-radius: 50% !important
}

.rounded-pill {
  border-radius: 50rem !important
}

.rounded-top {
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important
}

.rounded-end {
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
  border-bottom-right-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important
}

.rounded-start {
  border-bottom-left-radius: .25rem !important;
  border-top-left-radius: .25rem !important
}

#footer .bottom-footer {
  background: #22536E;
  padding: 10px 20px;
  color: #fff;
  height: 100%;
}




/* the below is irrelevant to the 3D effect */
.box {
  cursor: pointer;
  margin: 29px;
}

.box h2 {
 
  text-align: center;
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  font-family: sans-serif;
  transform: translateY(350%);
  transition: .8s;
}


.box:hover h2 {
  transform: translateY(0%);
  transition: .8s .2s;
}

.circulo {
  margin: 20px 0 0 0;
  list-style: none;
  text-align: center;
  width: 100%;
  background: #eee;
  padding: 35px;
}

.circulo li {
  width: 220px;
  height: 220px;
  display: inline-block;
  margin: 30px 20px;
  position: relative;
}

.img-1 {
  background: url(https://betasolucao.com.br/images/img_circulo1.png);
}

.img-2 {
  background: url(https://betasolucao.com.br/images/img_circulo2.png);
}

.img-3 {
  background: url(https://betasolucao.com.br/images/img_circulo3.png);
}

.circulo-item {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  cursor: default;
}

.circulo-content {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 20px;
  background: #eee;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, .5);
  transition: all .4s ease-in-out;
}

.circulo-info {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: absolute;
  transition: all .4s ease-in-out;

  transform-style: preserve-3d;
}

.circulo-info>div {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  background-position: center center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.circulo-info-desc {
  background: rgb(38 9 108);
  transform: rotate3d(0, 1, 0, 180deg);
}

.circulo-info-desc h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 15px;
  padding-top: 45px;
}

.circulo-info-desc p {
  color: #fff;
  font-size: 12px;
  margin: 0 20px;
  padding: 10px 0;
  border-top: 1px solid #ccc;
}

.circulo-info-desc p a {
  display: block;
  color: #eee;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

.circulo-info-desc p a:hover {
  color: #fff222;
}

.circulo-item:hover .circulo-content {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
}

.circulo-item:hover .circulo-info {
  transform: rotate3d(0, 1, 0, -180deg);
}

.bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: linear;
}

.boxx2 {
  align-self: flex-end;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}

@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.layout-pb-xl {
  padding-bottom: 4rem;
}

.layout-pt-xl {
  padding-top: 10rem;
}

.sectionHeading__subtitle {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: black;
}

.sectionHeading__subtitle {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: black;
}

.sectionHeading__subtitle.-light {
  color: white;
}

.sectionHeading.-sm .sectionHeading__title {
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 2.5rem;
}

@media (max-width: 991px) {
  .sectionHeading.-sm .sectionHeading__title {
    font-size: 2.375rem;
  }
}

@media (max-width: 767px) {
  .sectionHeading.-sm .sectionHeading__title {
    font-size: 1.75rem;
  }
}


.sectionHeading.-lg .sectionHeading__title {
  line-height: 1.1;
  font-weight: 700;
  font-size: 2.85rem;
}

@media (max-width: 991px) {
  .sectionHeading.-md .sectionHeading__title {
    font-size: 3.25rem;
  }
}

@media (max-width: 767px) {
  .sectionHeading.-md .sectionHeading__title {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .sectionHeading.-md .sectionHeading__title {
    font-size: 2.75rem;
  }
}

.sectionHeading.-lg .sectionHeading__title {
  line-height: 1.1;
  font-weight: 700;
  font-size: 2.85rem;
}

@media (max-width: 991px) {
  .sectionHeading.-lg .sectionHeading__title {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .sectionHeading.-lg .sectionHeading__title {
    font-size: 3.125rem;
  }
}

@media (max-width: 575px) {
  .sectionHeading.-lg .sectionHeading__title {
    font-size: 3rem;
  }
}

.sectionHeading.-xl .sectionHeading__title {
  line-height: 1.2;
  font-weight: 700;
  font-size: 5.625rem;
}

@media (max-width: 1229px) {
  .sectionHeading.-xl .sectionHeading__title {
    font-size: 4.75rem;
  }
}

@media (max-width: 991px) {
  .sectionHeading.-xl .sectionHeading__title {
    font-size: 3.5rem;
  }
}

@media (max-width: 575px) {
  .sectionHeading.-xl .sectionHeading__title {
    font-size: 3rem;
  }
}

button {
  padding: unset;
  margin: unset;
  border: unset;
  border-radius: unset;
  background-color: unset;
}

.button {
  display: inline-block;
  border: 0;
  transition: background-color 300ms cubic-bezier(0.165, 0.84, 0.44, 1), color 300ms cubic-bezier(0.165, 0.84, 0.44, 1), border 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button.-sm {
  min-width: 7.5rem;
  padding: 0.9375rem 1.6875rem;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}

.button.-md {
  min-width: 8.25rem;
  padding: 1.125rem 1.875rem;
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .button.-md {
    padding: 0.9375rem 1.5rem;
    font-size: 0.875rem;
  }
}

.button.-lg {
  min-width: 8.75rem;
  padding: 1.125rem 2rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .button.-lg {
    padding: 1.125rem 2rem;
    font-size: 0.875rem;
  }
}

.button.-outline-white,
.button.-outline-black,
.button.-white,
.button.-black {
  text-align: center;
  border-radius: 3.75rem;
}

@media (max-width: 767px) {

  .button.-outline-white,
  .button.-outline-black,
  .button.-white,
  .button.-black {
    min-width: 7.75rem;
  }
}

.button.-white {
  background-color: white;
  border: 0.0625rem solid white;
}

.button.-white:hover {
  background-color: transparent;
  color: white;
}

.button.-black {
  background-color: #121212;
  border: 0.0625rem solid #121212;
}

.button.-black:hover {
  background-color: transparent;
  color: #121212;
}

.button.-outline-black {
  background-color: transparent;
  border: 0.0625rem solid #121212;
}

.button.-outline-black:hover {
  background-color: #121212;
  color: white;
}

.button.-outline-white {
  background-color: transparent;
  border: 0.225rem solid #ffffff;
}

.button.-outline-white:hover {
  background-color: white;
  color: black !important;
}

.button.-underline {
  position: relative;
  padding-bottom: 0.125rem;
  transition: color 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button.-underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: currentColor;
  transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: left;
  transform: scaleX(0);
}

.button.-underline:hover::before {
  transform: scaleX(1);
}

.button.-icon .icon {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button.-icon:hover .icon {
  transform: translateX(0.375rem);
}

.onda {
  height: 500px;
  background: rgb(20, 1, 51);
}

.absolut {
  position: absolute;
}

.txt-branco {
  color: white;
}

.onda1 {
  animation: moveOnda1 3s ease-in-out infinite alternate;
}
.onda2 {
  animation: moveOnda2 2s ease-in-out infinite alternate;
}
.onda3 {
  animation: moveOnda3 2.5s ease-in-out infinite alternate;
}

@keyframes moveOnda1 {
  from {
    transform: translateX(-50px);
  }

}
@keyframes moveOnda2 {
  from {
    transform: translateX(75px);
  }

}
@keyframes moveOnda3 {
  from {
    transform: translateX(50px);
  }

}

.hover {
  --c:  rgb(20, 1, 51);
  
  color: #0000;
  background: 
    linear-gradient(90deg,#fff 50%,var(--c) 0) calc(100% - var(--_p,0%))/200% 100%,
    linear-gradient(var(--c) 0 0) 0% 100%/var(--_p,0%) 100% no-repeat;
  -webkit-background-clip: text,padding-box;
          background-clip: text,padding-box;
  transition: 0.5s;
}
.hover:hover {
  --_p: 100%
}
.imagem6{
  transition: all .5s;
  border: 10px solid #eeeeee;
  transform:perspective(2000px)   ;
}
.imagem6:hover{
  border: 10px solid #781f40;
  border-radius: 50%;
  -webkit-filter: drop-shadow(15px 7px 1px rgba(0,0,0,.5));
  filter: drop-shadow(15px 7px 1px rgba(0,0,0,.5));
  -webkit-transform: rotateZ(-360deg) scale(1.5);
  transform: rotateZ(-360deg) scale(1.5)  ;
}
.bg-ebony-clay.rd-parallax {
    color: rgba(255, 255, 255, 1);
}
.bg-image {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
.bg-ebony-clay {
    background: #2b2f40;
    fill: #2b2f40;
}
.bg-ebony-clay {
    color: #666c84;
}
.icon-box-vertical *+.icon-box-header {
    margin-top: 25px;
}
.row-50 {
    margin-bottom: -50px;
}   

.row-50>* {
    margin-bottom: 50px;
}

.icon-box-vertical-sm {
    max-width: 330px;
}
.nossos-diferenciais p {
    font-size: 17px;
    text-shadow: 0 0 5px #00000080;
}
*+.row {
    margin-top: 74px;
}

.text-center {
    text-align: center !important;
    line-height: 0.88889;
    font-size: 45px;
}