*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f5f7fa;
    padding:60px 20px;
}

.wrapper{
    max-width:1100px;
    margin:auto;
}

h1{
    margin-bottom:30px;
    font-size:38px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Poppins", "Rubik", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 600;
  line-height: 1.2;
  color: #14183E;
}

.pricing-grid{
    display:flex;
    flex-direction:row;
    gap:25px;
}

.price-card{
    background:#7AE6F3;
	flex-direction:row;
	row-gap:20px;
    border-radius:24px;
    padding:35px 25px;
    flex:1;
    min-width:280px;
	height:200px;
    text-align:center;
    position:left;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.best-value{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#ff6702;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:lighter;
}

.pax{
    color:#3F3E3E;
    margin-bottom:5px;
    text-transform:uppercase;
    letter-spacing:1px;
	text-align: center;
	font-weight:lighter;
}

.price{
    color:#000000;
	font-size:20px;
    font-weight:bold;
	margin-top:-5px;
    margin-bottom:-5px;
	text-align: center;
}

.per-person{
    color:#3F3E3E;
    margin-bottom:25px;
	text-align: center;
	font-weight:lighter;
}

.price-card a{
    display:inline-block;
    background:#00a86b;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:12px;
    font-weight:bold;
}

@media(max-width:768px){

.pricing-grid{
    flex-direction:row;
}

}