



.event .heading {
    text-align: center;
    margin-bottom: 30px;
}
.event .heading h2 {
    font-size: 30px;
    font-weight: 700;
}
.event .heading p {
    color: #696969;
}
.event .item .photo {
    margin-bottom: 10px;
    overflow: hidden;
}
.event .item .photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transform: scale(1);
	transition: all 0.4s ease;
}
.event .item:hover .photo img {
    transform: scale(1.1);
}
.event .item .text h2 {
    font-size: 20px;
    font-weight: 700;
}
.event .item .text h2 a {
    color: #333;
}
.event .item .text .short-des {
    margin-bottom: 15px;
}
.event .item .text .short-des p {
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
}
.event .item .text .date-time {
    font-size: 14px;
    color: #696969;
    font-weight: 600;
    margin-bottom: 15px;
}
.event .item .text .date-time i {
    color: var(--theme-color);
}
@media (max-width: 1199px) {
    .event .item .photo img {
        height: 220px;
    }
}
@media (max-width: 991px) {
    .event .item .photo img {
        height: 290px;
    }
}
@media (max-width: 767px) {
    .event .item .photo img {
        height: auto;
    }
}




.event-detail .left-item {
    margin-bottom: 30px;
}
.event-detail .left-item .main-photo {
    margin-bottom: 25px;
}
.event-detail .left-item .main-photo img {
    width: 100%;
    height: auto;
}
.event-detail .left-item h2 {
    color: #222;
    font-weight: 700;
    border-bottom: 1px solid #b5b5b5;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}
.event-detail .right-item {
    margin-bottom: 30px;
}
.event-detail .right-item h2 {
    color: #222;
    font-weight: 700;
    border-bottom: 1px solid #b5b5b5;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}
.event-detail .right-item .location-map iframe {
    width: 100%;
    height: 200px;
}
.event-detail .right-item .enquery-form input, 
.event-detail .right-item .enquery-form textarea {
    font-size: 16px;
}
.event-detail .right-item .enquery-form button {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: var(--theme-color);
    color: #fff;
    text-decoration: none;
    border: 1px solid var(--theme-color);
    border-radius: 30px;
    padding: 8px 35px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.event-detail .right-item .enquery-form button:hover {
    transition: all 0.3s;
    background: transparent;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}
.event-detail .right-item .summary table tr td:nth-of-type(1) {
    width: 120px;
}
.event-detail .right-item .summary table tr tr,
.event-detail .right-item .summary table tr td {
    border: 1px solid #c7c7c7;
    vertical-align: middle;
}
.event-detail .right-item .summary .price {
    font-size: 30px;
    font-weight: 700;
}
.event-detail .right-item .boxes {
	display: flex;
	justify-content: center;
}
.event-detail .right-item .box {
    background: var(--theme-color);
	border: 2px solid #fff;
	width: 100px;
	height: 100px;
	text-align: center;
	color: #fff;
	margin-right: 10px;
}
.event-detail .right-item .box .num {
	font-size: 36px;
	font-weight: 700;
	padding-top: 8px;
}
.event-detail .right-item .box .name {
	margin-top: -10px;
}
.event-detail .right-item ul {
    padding-left: 0;
}
.event-detail .right-item ul li {
    list-style: none;
    margin-bottom: 10px;
}
.event-detail .right-item ul li a {
    color: #242424;
    font-weight: 400;
}
.event-detail .right-item .pay-sec {
    background: #1e3474;
    padding: 15px;
}
.event-detail .right-item .pay-sec .pay-now {
    font-weight: 600;
    background: var(--theme-color);
    border: 0;
}
@media (max-width: 991px) {
    .event-detail .right-item .location-map iframe {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .event-detail .right-item .location-map iframe {
        height: 300px;
    }
}
@media (max-width: 575px) {
    .event-detail .right-item .location-map iframe {
        height: 350px;
    }
}



