/*--------------------------------------------------------------
# Events One
--------------------------------------------------------------*/
.events-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.events-one__left {
    position: relative;
    display: block;
    margin-right: 60px;
}

.events-one__left .section-title {
    margin-bottom: 31px;
}

.events-one__text {
    font-weight: 500;
    padding-bottom: 41px;
}

.events-one__right {
    position: relative;
    display: block;
    z-index: 1;
}

.events-one__right:before {
    position: absolute;
    top: -120px;
    bottom: -120px;
    left: 239px;
    right: -1000000px;
    content: "";
    background-color: var(--qrowd-extra);
    z-index: -1;
}

.events-one__list {
    position: relative;
    display: block;
}

.events-one__list > li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.events-one__list > li:last-child {
    margin-bottom: 0;
}

.events-one__img {
    position: relative;
    display: inline-block;
    max-width: 239px;
    width: 100%;
    min-height: 181px;
    overflow: hidden;
}

.events-one__img img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}

.events-one__list > li:hover .events-one__img img {
    transform: scale(1.05);
}

.events-one__img:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--qrowd-black-rgb), 0.3);
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: top center;
    z-index: 1;
}

.events-one__list > li:hover .events-one__img:after {
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.events-one__date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--qrowd-base);
    padding: 9px 20px;
    z-index: 2;
}

.events-one__date p {
    font-size: 12px;
    color: var(--qrowd-white);
    line-height: 12px;
    font-weight: 700;
}

.events-one__content {
    position: relative;
    display: block;
    min-height: 181px;
    background-color: var(--qrowd-white);
    padding: 22px 30px 19px;
    padding-right: 62px;
}

.events-one__meta {
    position: relative;
    display: flex;
    align-items: center;
}

.events-one__meta > li {
    font-size: 14px;
    font-weight: 500;
}

.events-one__meta > li + li {
    margin-left: 5px;
}

.events-one__meta > li > i {
    font-size: 15px;
    color: var(--qrowd-primary);
    padding-right: 5px;
}

.events-one__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    margin-top: 5px;
    margin-bottom: 13px;
}

.events-one__title a {
    color: var(--qrowd-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.events-one__title a:hover {
    color: var(--qrowd-base);
}

.events-one__read-more {
    position: relative;
    display: block;
}

.events-one__read-more a {
    font-size: 12px;
    font-weight: 600;
    color: var(--qrowd-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.events-one__read-more a span {
    font-size: 15px;
    top: 2px;
    position: relative;
    padding-right: 6px;
}

.events-one__read-more a:hover {
    color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Events Page
--------------------------------------------------------------*/
.events-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.events-page__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.events-page__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.events-page__img:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--qrowd-black-rgb), 0.3);
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: top center;
    z-index: 1;
}

.events-page__single:hover .events-page__img:after {
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.events-page__img img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}

.events-page__single:hover .events-page__img img {
    transform: scale(1.05);
}

.events-page__date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--qrowd-base);
    padding: 9px 20px;
    z-index: 2;
}

.events-page__date p {
    font-size: 12px;
    color: var(--qrowd-white);
    line-height: 12px;
    font-weight: 700;
}

.events-page__content {
    position: relative;
    display: block;
    background-color: var(--qrowd-extra);
    padding: 23px 40px 29px;
}

.events-page__meta {
    position: relative;
    display: flex;
    align-items: center;
}

.events-page__meta > li {
    font-size: 14px;
    font-weight: 500;
}

.events-page__meta > li + li {
    margin-left: 5px;
}

.events-page__meta > li > i {
    font-size: 15px;
    color: var(--qrowd-primary);
    padding-right: 5px;
}

.events-page__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    margin-top: 5px;
    margin-bottom: 13px;
}

.events-page__title a {
    color: var(--qrowd-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.events-page__title a:hover {
    color: var(--qrowd-base);
}

.events-page__read-more {
    position: relative;
    display: block;
}

.events-page__read-more a {
    font-size: 12px;
    font-weight: 600;
    color: var(--qrowd-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.events-page__read-more a span {
    font-size: 15px;
    top: 2px;
    position: relative;
    padding-right: 6px;
}

.events-page__read-more a:hover {
    color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Events List
--------------------------------------------------------------*/
.events-list {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.events-list__inner {
    position: relative;
    display: block;
}

.events-list__single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 50px;
    border: 1px solid #e1eaea;
    background-color: var(--qrowd-white);
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.events-list__single:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.events-list__left {
    position: relative;
    display: flex;
    max-width: 850px;
    width: 100%;
}

.events-list__img {
    position: relative;
    display: block;
    max-width: 239px;
    width: 100%;
}

.events-list__img img {
    width: 100%;
}

.events-list__date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--qrowd-base);
    padding: 9px 20px;
    z-index: 2;
}

.events-list__date p {
    font-size: 12px;
    color: var(--qrowd-white);
    line-height: 12px;
    font-weight: 700;
}

.events-list__content {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-top: -7px;
}

.events-list__meta {
    position: relative;
    display: flex;
    align-items: center;
}

.events-list__meta > li {
    font-size: 14px;
    font-weight: 500;
}

.events-list__meta > li + li {
    margin-left: 5px;
}

.events-list__meta > li > i {
    font-size: 15px;
    color: var(--qrowd-primary);
    padding-right: 5px;
}

.events-list__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    margin-top: 6px;
    margin-bottom: 15px;
}

.events-list__title a {
    color: var(--qrowd-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.events-list__title a:hover {
    color: var(--qrowd-base);
}

.events-list__text {
    font-weight: 500;
}

/*--------------------------------------------------------------
# Event Details
--------------------------------------------------------------*/
.event-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.event-details__img {
    position: relative;
    display: block;
}

.event-details__img img {
    width: 100%;
}

.event-details__date {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: var(--qrowd-base);
    padding: 9px 20px;
    z-index: 2;
}

.event-details__date p {
    font-size: 12px;
    color: var(--qrowd-white);
    line-height: 12px;
    font-weight: 700;
}

.event-details__bottom {
    position: relative;
    display: block;
    margin-top: 50px;
}

.event-details__left {
    position: relative;
    display: block;
}

.event-details__content-one {
    position: relative;
    display: block;
    margin-top: -9px;
}

.event-details__content-one-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 40px;
    margin-bottom: 14px;
}

.event-details__content-one-description {
    font-weight: 500;
}

.event-details__content-one-text-2 {
    font-size: 20px;
    color: var(--qrowd-base);
    font-weight: 800;
    letter-spacing: var(--qrowd-letter-spacing);
    padding-top: 29px;
    padding-bottom: 29px;
}

.event-details__content-one-text-3 {
    font-weight: 500;
}

.event-details__content-two {
    position: relative;
    display: block;
    margin-top: 45px;
}

.event-details__content-two-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 30px;
    margin-bottom: 16px;
}

.event-details__content-two-1 {
    font-weight: 500;
}

.event-details__content-two-2 {
    font-weight: 500;
    padding-top: 27px;
    padding-bottom: 51px;
}

.event-details__sidebar {
    position: relative;
    display: block;
}

.event-details__details-box {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1),
        inset 0px 4px 0px 0px rgba(7, 132, 127, 0.004);
    padding: 44px 50px 40px;
}

.event-details__details-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--qrowd-primary);
}

.event-details__details-box-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 25px;
    margin-bottom: 16px;
}

.event-details__details-box-list {
    position: relative;
    display: block;
}

.event-details__details-box-list li {
    position: relative;
    display: block;
    overflow: hidden;
}

.event-details__details-box-list li + li {
    margin-top: 18px;
}

.event-details__details-box-list li .left {
    position: relative;
    display: block;
    float: left;
}

.event-details__details-box-list li .left p {
    font-size: 15px;
    font-weight: 600;
}

.event-details__details-box-list li .right {
    position: relative;
    display: block;
    float: right;
    text-align: right;
}

.event-details__details-box-list li .right p {
    font-size: 15px;
    color: var(--qrowd-black);
    font-weight: 800;
}

.event-details__details-box-list li .right p a {
    color: var(--qrowd-black);
}

.event-details__details-box-list li .right p a.clr-primary {
    color: var(--qrowd-primary);
}

.event-details__details-box-list li .right p.clr-base {
    color: var(--qrowd-base);
}

.event-details__map {
    position: relative;
    display: block;
    background-color: var(--qrowd-extra);
    margin-top: 30px;
}

.event-details__map-one {
    position: relative;
    display: block;
    border: none;
    height: 390px;
    width: 100%;
    mix-blend-mode: luminosity;
}

.event-details__btn-box .link_map {
    display: block;
    padding: 10px;
    background-color: var(--qrowd-base);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.3s, background-color 0.3s;
}

.event-details__btn-box .link_map:hover {
    color: var(--qrowd-white);
    background-color: var(--qrowd-primary);
}

/*--------------------------------------------------------------
# serach index
--------------------------------------------------------------*/
.index__top__search {
    margin-bottom: 100px;
}

.index__search {
    position: relative;
    display: block;
}

.index__search-form {
    position: relative;
}

.index__search-form input[type="text"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--qrowd-primary);
    color: var(--qrowd-white);
    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    height: 74px;
    width: 100%;
    padding-right: 80px;
}

.index__search-form ::-webkit-input-placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.index__search-form :-ms-input-placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.index__search-form ::-ms-input-placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.index__search-form ::placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.index__search-form :-ms-input-placeholder {
    color: var(--qrowd-white);
}

.index__search-form ::-ms-input-placeholder {
    color: var(--qrowd-white);
}

.index__search-form button[type="submit"] {
    background-color: transparent;
    color: var(--qrowd-white);
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}

/*--------------------------------------------------------------
# share
--------------------------------------------------------------*/

.event-share__details-box {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1),
        inset 0px 4px 0px 0px rgba(7, 132, 127, 0.004);
    padding: 44px 50px 40px;
    margin-top: 30px;
}

.event-share__details-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--qrowd-primary);
}

.event-share__details-box-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 25px;
    margin-bottom: 16px;
}

.event-share__details-details__social {
    position: relative;
    display: flex;
    align-items: center;
}

.event-share__details-details__social-link {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.event-share__details-details__social-link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qrowd-black);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background-color: var(--qrowd-extra);
    border-radius: 50%;
    height: 45px;
    width: 45px;
}

.event-share__details-details__social-link a + a {
    margin-left: 10px;
}

.event-share__details-details__social-link a:hover {
    color: var(--qrowd-white);
    background-color: var(--qrowd-base);
}
