.p-top {
  z-index: 100;
}

.p-top-menu {
  z-index: 200;
}

.top-menu {
	height: 90px;
}

.nota {
  font-size: 1em;
  color: #fff;
  text-transform:uppercase;
}

.publ {
  display: flex;
  height: 80vh;
  width: 65vw;
  min-height: 165px;
  min-width: 300px;
  padding-top: 20px;
  /* background: url('../images/publ-bg.jpg') no-repeat top left;
  background-size: cover; */
  font-size: 48px;
}

.publ-foto {
  position: absolute;
  bottom: 0;
  overflow: hidden;
}

.publ-texto {
  display: grid;
  grid-template-areas: 
   "topo"
   "meio"
   "rodape";
   grid-template-rows: 20% 20% 60%;
   margin-left: 40%;
   width: 100%;
   font-family: 'Comforter', cursive;
   font-size: 3em;
   color: #fff;
}

.topo, .meio, .rodape {
  display: flex;
  justify-content: center;
  align-items: center;
}

.topo {
  grid-area: topo;
	margin-top: 20%;
  /* background-color: aqua; */
}

.meio {
  grid-area: meio;
	margin-top: 20%;
  /* background-color: antiquewhite; */
}

.rodape {
  grid-area: rodape;
	margin-top: 20%;
  align-items: flex-start;
  /* align-items: flex-start; */
  /* background-color: blue; */
}

.rodape img {
  max-height: 100%;
}

/*********************/
/*     10. Video     */
/*********************/
.basic-2 {
	float: left;
	width: 100%;
	padding-top: 8rem;
	padding-bottom: 6.75rem;
	background-color: #f3f7fd;
	text-align: center;
}

.basic-2 .image-container {
	margin-bottom: 2rem;
}

.basic-2 .image-container img {
	border-radius: 0.75rem;
}

.basic-2 .video-wrapper {
	position: relative;
}

/* Video Play Button */
.basic-2 .video-play-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	display: block;
	box-sizing: content-box!important;
	width: 2rem;
	height: 2.75rem;
	padding: 1.125rem 1.25rem 1.125rem 1.75rem;
	border-radius: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.basic-2 .video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	display: block;
	width: 4.75rem;
	height: 4.75rem;
	border-radius: 50%;
	background: #ee4d4d;
	animation: pulse-border 1500ms ease-out infinite;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.basic-2 .video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: block;
	width: 4.375rem;
	height: 4.375rem;
	border-radius: 50%;
	background: #ee4d4d;
	transition: all 200ms;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.basic-2 .video-play-button span {
	position: relative;
	display: block;
	z-index: 3;
	top: 0.375rem;
	left: 0.25rem;
	width: 0;
	height: 0;
	border-left: 1.625rem solid #fff;
	border-top: 1rem solid transparent;
	border-bottom: 1rem solid transparent;
}
  
@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
/* end of video play button */ 

/*** Testimonial ***/
.testimonial {
	float: left;
	margin: 3em 0;
	width: 100%;
}

.testimonial h1 {
	font-weight: bold;
}

.testimonial-carousel .owl-dots {
	height: 40px;
	margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-carousel .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: 15px;
	height: 15px;
	background: transparent;
	border: 2px solid #000;
	transition: .5s;
}

.testimonial-carousel .owl-dot.active {
	width: 30px;
	height: 30px;
	background: yellow;
}

.testimonial-carousel .owl-item img {
	width: 150px;
	height: 150px;
}

.fs-4 {
	font-size: 1.5em;
}

.py-6 {
	padding-top: 6rem;
	padding-bottom: 6rem;
}
/*** End Testimonial ***/