/*
=========================================
AR Week Plans
=========================================
*/

*,
*::before,
*::after{
	box-sizing:border-box;
}

.wtp-wrapper{
	max-width:1400px;
	margin:80px auto;
	padding:0 20px;
}

.wtp-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 0px;
}

/* =========================
   Card
========================= */

.wtp-card {
    background: #ffffff;
    border: 1px solid #E5DED3;
    border-radius: 0px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: .35s ease;
    justify-content: space-around;
}


.wtp-card.active{

	background:#F4E7D4;

	border-color:#A66D42;

}

/* Number */

.wtp-number{

    color:#d26d3d;

    font-size:20px;

    font-style:italic;

    font-weight:600;

    margin-bottom:30px;

    letter-spacing:.05em;

}

/* Title */

.wtp-title {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
    margin: 0 0 10px;
    font-family: Georgia,serif;
    color: #222;
}

/* Tagline */

.wtp-tagline {
    font-size: 14px;
    margin-bottom: 18px;
}


/* Button */

.wtp-see-plan {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
}



/* =========================
Responsive
========================= */

@media (max-width:1200px){

	.wtp-grid{

		grid-template-columns:repeat(3,1fr);

	}

}

@media (max-width:768px){

	.wtp-grid{

		grid-template-columns:repeat(2,1fr);

	}

}

@media (max-width:580px){

	.wtp-grid{

		grid-template-columns:1fr;

	}

}

/*=========================================
Details Panel
=========================================*/

#wtp-details-container{

	margin-top:60px;

}

.wtp-details{

	display:none;

	position:relative;

	background:#F8F5EF;

	border:1px solid #E5DED3;

	border-radius:24px;

	padding:70px;

	animation:wtpFade .35s ease;

}

@keyframes wtpFade{

	from{

		opacity:0;

		transform:translateY(30px);

	}

	to{

		opacity:1;

		transform:translateY(0);

	}

}

.wtp-close{

	position:absolute;

	top:35px;

	right:35px;

	width:48px;

	height:48px;

	border:none;

	background:#fff;

	border-radius:50%;

	font-size:28px;

	cursor:pointer;

	box-shadow:0 10px 25px rgba(0,0,0,.08);

	transition:.3s;

}

.wtp-close:hover{

	transform:rotate(90deg);

}


.wtp-heading{

	font-size:60px;

	font-family:Georgia,serif;

	font-weight:500;

	line-height:1.1;

	margin-bottom:20px;

	color:#222;

}

.wtp-description{

	max-width:720px;

	font-size:18px;

	line-height:1.9;

	color:#666;

	margin-bottom:50px;

}

/*=========================================
Info Grid
=========================================*/

.wtp-info-grid{

	display:grid;

	grid-template-columns:repeat(3,1fr);

	gap:40px;

	padding:45px 0;

	border-top:1px solid #DDD5C7;

	border-bottom:1px solid #DDD5C7;

	margin-bottom:45px;

}

.wtp-info-grid h5{

	font-size:15px;

	text-transform:uppercase;

	letter-spacing:.08em;

	margin-bottom:10px;

	color:#AF7644;

}

.wtp-info-grid p{

	font-size:18px;

	line-height:1.8;

	color:#222;

	margin:0;

}

/*=========================================
Bottom Grid
=========================================*/

.wtp-bottom-grid{

	display:grid;

	grid-template-columns:repeat(3,1fr);

	gap:30px;

}

.wtp-bottom-grid>div{

	background:#fff;

	padding:35px;

	border-radius:20px;

	border:1px solid #E7DED0;

	min-height:220px;

}

.wtp-bottom-grid h4{

	font-size:24px;

	font-family:Georgia,serif;

	margin-bottom:20px;

}

.wtp-bottom-grid p{

	font-size:16px;

	line-height:2;

	color:#555;

	white-space:pre-line;

}

/*=========================================
Responsive
=========================================*/

@media(max-width:992px){

	.wtp-details{

		padding:40px;

	}

	.wtp-heading{

		font-size:42px;

	}

	.wtp-info-grid{

		grid-template-columns:repeat(2,1fr);

	}

	.wtp-bottom-grid{

		grid-template-columns:1fr;

	}

}

@media(max-width:767px){

	.wtp-details{

		padding:30px;

	}

	.wtp-heading{

		font-size:34px;

	}

	.wtp-info-grid{

		grid-template-columns:1fr;

	}

	.wtp-close{

		top:20px;

		right:20px;

	}

}