#pricing{
	height: 74vh;
}


#pricing .background{
    --size: 45px;
    --line: #34323d17;
    background: linear-gradient(90deg, var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size), linear-gradient(var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size);
    overflow: hidden;
    mask: linear-gradient(340deg, transparent 300px, white);
    position: absolute;
    top: 100px;
    width: 100%;
    height: 74vh;
}


#pricing .contentHolder{
	padding-top: 60px;
	width: 60%;
	margin: auto;
	height: 100%;
	text-align: center;
	z-index: 20;
	position: relative;
}

#pricing .pricingStructure{
	margin: 40px 0px;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
	
}

#pricing .pricingStructure .icon{
	font-size: 3em;
}

#pricing .pricingStructure .price{
	width: 250px;
    height: 250px;
    background: #fff;
    border-radius: 15px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


#pricing .pricingStructure .price:hover{
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

#pricing .pricingStructure .price .title{
	height:50px;
	background: var(--Main-Dark);
	align-content: center;
	font-size: 1.3em;
	font-weight: 600;
	color: #fff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

#pricing .pricingStructure .price .ammount{
	height: 180px;
    font-size: 1.1em;
    display: flex;
    justify-content: center;
    padding: 0px 30px;
    flex-direction: column;
    align-items: center;
}

#pricing .pricingStructure .price .ammount .pre{
	color: var(--Main-Light);
	margin: 10px 0px;
	font-weight: 600;
}

#pricing .pricingStructure .price .ammount .priceSubContainter{
	display: flex;
	height: 40%;
    align-items: center;
}

#pricing .pricingStructure .price .ammount .symbol{
	align-self: start;
	font-size: 1.3em;
}

#pricing .pricingStructure .price .ammount .cost{
	font-size: 4em;
	font-weight: 600;
	color: var(--Main-Orange);
}

#pricing .pricingStructure .price .ammount .post{
	color: var(--Main-Light);
	margin: 10px 0px;
    font-size: 0.9em;
}

#pricing .pricingStructure .price .subText{
	font-size: 1.1em;
}

#pricing .minPrice{
	margin-bottom: 20px;
	opacity: 0.8;
}


@media only screen and (max-width: 1460px) {
	#pricing{
		height: 80vh;
	}
}

@media only screen and (max-width: 1240px) {
	#pricing{
		height: 170vh;
	}
	
	#pricing .pricingStructure{
		flex-direction: column;
		gap: 30px;
	}
	

	#pricing .contentHolder{
		width: 90%;
		padding-top: 20px;
	}
	
	#pricing .pricingStructure .price{
		width: 100%;
		height: 100%;
		max-width: 300px;
	}
	
	#pricing .pricingStructure .price .title{
        font-size: 1.5em;
        height: 100%;
        padding: 10px 0px;
	}
	
	#pricing .pricingStructure .price .ammount {
		height: 230px;
		font-size: 1.3em;
		padding: 0px 30px 0px 30px;
	}
	#pricing .pricingStructure .price .ammount .symbol{
		margin-top:15px;
	}
	
	#pricing .pricingStructure .price .subText {
		font-size: 1.4em;
		margin-bottom: 20px;
	}
	
	#pricing .background{
		top: 0px;
		height: 125vh;
	}


	#pricing .backgroundImage{
		position: absolute;
		top:50%;
		left:0;
		height: 125vh;
	}
	
	#pricing .backgroundImage img{
		opacity: 0.2;
	}


}

@media only screen and (max-width: 850px) {
	#pricing{
		height: 180vh;
	}
}

@media only screen and (max-width: 520px) {
	#pricing{
		height: 190vh;
	}
}

@media only screen and (max-width: 400px) {
	#pricing{
		height: 200vh;
	}
}

#pricingFeatures{
	padding: 40px 0px;
}

#pricingFeatures table{
    width: 40%;
    max-width: 800px;
    min-width: 300px;
	margin: 20px auto;
	border: 1px solid var(--Main-Dark);
}

#pricingFeatures table tr th{
	background: var(--Main-Dark);
	color: #fff;
	padding-left:20px;
	font-size: 1.2em;
}


#pricingFeatures table tr td{
	border-top: 1px solid var(--Main-Dark);
}

#pricingFeatures table tr td:nth-child(1){
	padding: 5px 10px;
	font-weight: 400;
}

#pricingFeatures table tr td:nth-child(2){
	border-left: 1px solid var(--Main-Dark);
	text-align: center;
	width: 10%;
	color: var(--Main-Orange);
}

@media only screen and (max-width: 1240px) {
	#pricingFeatures table tr td:nth-child(1){
		padding: 10px 10px;
	}

	#pricingFeatures table tr td:nth-child(2){
		width: 20%;
	}
}