#my-polygon {
    min-height:100px;
  clip-path: polygon(0px 15%, 50% 0px, 100% 15%, 100% calc(100% - 20px), 50% 100%, 0px calc(100% - 20px));
  background-color:red;
  }

#menu-penta {
    min-height:500px;
    max-width: 660px;
    clip-path: polygon(3% 29%, 3% 67%, 38% 67%, 50% 49%, 43% 30%);
    background-color: blueviolet;
}

#menu-sidepenta{
    clip-path: polygon(38% 26%, 48% 43%, 35% 59%, 53% 60%, 61% 44%, 53% 26%);
}

.new-menu{
    display: flex;

    }

    .new-menu li{
        position:relative;
        border-style: none;
        list-style: none;

        }

        .new-menu li a{color:#333; text-decoration:none; text-align: center;   overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;}

.menu-inferior {
    position:absolute;
    top: 110px;
left: 0;
}


.new-menu ul{
    display: flex;
    float:left;
    border-style: none;
    list-style: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    }
.menu-inferior ul{
    margin-left: 135px;
    gap: 68px;
    font-size: 0.6em;
    font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
line-height: 22px;
text-align: center;

color: #FFFFFF;

}

.menu-superior ul{
    gap: 75px;
    margin-left: 270px;
}

.menu-superior {
    position: absolute;
    top: 5px;
    left: 100px;
    display: flex;
}

.lista-menu-superior{
    display: flex;
    justify-content: space-between;

}

.svg-div-dois {
    width: 100%;
    height: 50px;
    background-color: transparent;

    position:absolute;
	/* top: 115px; */
    top: 100px;
	/* left: 100px; */
	margin-bottom: 50px;

  }

  .svg-div-um {
    width: 100%;
    height: 35px;
    background-color: transparent;
    overflow: hidden;
    position:absolute;

    top: 8%;
    margin-left: 20%;
  }

  .svg-div-superior {
    width: 100%;
    height: 50px;
    background-color: transparent;
    overflow: hidden;
    position:absolute;

    top: 0%;
    margin-left: 12%;
  }


  .svg-div-superior a{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    color: #565657;

  }

  .svg-div-inferior a{
    font-family: 'Montserrat';
font-style: normal;
font-weight: 800;
font-size: 18px;
line-height: 20px;
text-align: center;
background-color: transparent;
color: #FFFFFF;
text-decoration: none;
  }


.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
}
.header .nav-menu{
	padding: 0 15px;
}
.menu-item{
	display: inline-block;
	margin-left: 30px;
	position: relative;
}
 .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 16px;
	color: #000000;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px;
	pointer-events: none;
}
.menu-item > a .plus:before,
 .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.menu-item:hover > a .plus:before,
 .menu-item:hover > a .plus:after{
   background-color: #DB2E20;
}
.menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);
}
 .menu-item > .sub-menu > .menu-item > a:hover,
 .menu-item:hover > a{
	color: #DB2E20;
}
 .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #DB2E20;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
	margin-top: 10px;
}
@media(min-width: 992px){
.menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }

 /*.header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);
 }*/

}

 .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
 .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
 .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
 .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.open-nav-menu span:before,
.open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.open-nav-menu span:before{
	top:-7px;
}
.open-nav-menu span:after{
	top:7px;
}
.close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
 .close-nav-menu img{
	width: 16px;
}
.menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/
.home-section{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-image: url('../img/home.jpg');
	background-position: center top;
	background-size: cover;
}


/* responsive */

@media(max-width: 991px){
	 .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	 .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	 .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	 .menu > .menu-item{
		display: block;
		margin:0;
	}
	.menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.menu > .menu-item > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	 .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;
	}
 	.menu > .menu-item > a .plus:before,
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	 .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	 .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	 .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	 .close-nav-menu,
	.open-nav-menu{
		display: flex;
	}
}
