:root {
    --black: #000;
    --white: #fff;
    --primary-color: #ff5757;
}

html,
body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* .container-fluid > .row{
  all: unset;
} */

.section {
    padding-top: 100px;
    padding-bottom: 100px;
}

p {
    font-size: 18px;
    line-height: 150%;
    color: #4d4d4d;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

.unset-row > .row {
    all: unset;
}

.text-justify {
    text-align: justify;
}

.justify-center-row > .row {
    justify-content: center;
}

.large-text {
    font-size: 22px;
}

.main-heading {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--black);
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 5px;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 26px;
    font-weight: bold;
}

.highlight {
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.primary-btn {
    background-image: linear-gradient(to right, #ff5757 0%, #8c52ff 100%);
    padding: 10px 35px;
    transition: 0.5s;
    background-size: 110% auto;
    color: var(--white);
    border-radius: 25px !important;
    font-size: 20px;
    font-weight: bold;
}

.primary-btn:hover {
    background-size: 200% auto;
    color: var(--white);
    background-position: right center; /* change the direction of the change here */
}

.gradient-bg {
    background-image: linear-gradient(to right, #ff5757 0%, #8c52ff 100%);
}

.gradient-bg-flip {
    background-image: linear-gradient(to bottom, #8c52ff 0%, #ff5757 100%);
}

.event-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.event-summary .info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.event-summary .info img {
    width: 150px;
    margin-bottom: 25px;
}

.event-summary .info h4 {
    font-size: 38px;
    font-weight: 900;
    color: var(--white);
}

.info-01 {
    background-image: url(./../../../data/editor/home/info-01-bg.png);
    background-size: cover;
    background-position: center center;
    grid-area: 1 / 1 / 3 / 2;
    height: 75dvh;
}

.info-02 {
    background-image: url(./../../../data/editor/home/info-02-bg.png);
    background-size: cover;
    background-position: center center;
    grid-area: 1 / 2 / 2 / 3;
}

.info-03 {
    background-image: url(./../../../data/editor/home/info-03-bg.png);
    background-size: cover;
    background-position: center center;
    grid-area: 2 / 2 / 3 / 3;
}

.info-04 {
    background-image: url(./../../../data/editor/home/info-04-bg.png);
    background-size: cover;
    background-position: center center;
    grid-area: 1 / 3 / 3 / 4;
    height: 75dvh;
}

.banner-wrapper {
    padding-top: 150px;
    padding-bottom: 75px;
    min-height: 550px;
    display: flex;
}

.banner-wrapper .section-title, .banner-wrapper .section-subtitle {
    color: var(--white);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.banner-wrapper > .row {
    width: 100%;
}

.banner-wrapper .banner-context {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.overlapping-card-wrapper {
    position: relative;
    top: -100px;
    padding-bottom: 0;
}

.overlapping-card-wrapper .card-wrapper, .overlapping-card-wrapper .product_carousel_wrapper {
    padding: 30px 20px;
    background-color: var(--white);
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
    border-radius: 10px;
    height: 100%;
}

.overlapping-card-wrapper .card-wrapper img {
    width: 120px;
    margin-bottom: 25px;
}

.overlapping-card-wrapper .card-wrapper h6 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.features-wrapper > div {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 35px;
}

.features-wrapper img {
    min-width: 100px;
}

.features-wrapper h6 {
    font-size: 20px;
    font-weight: bold;
}

.features-wrapper p {
    margin-bottom: 0;
}

.context-card {
    background-color: var(--primary-color);
    padding: 30px 20px;
    border-radius: 20px;
    margin-top: 15px;
}

.context-card h5 {
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
    text-wrap: balance;
}

.form-wrapper {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
}

.form-wrapper > .row {
    all: unset;
}

.form-wrapper .form-control, .form-wrapper .form-select {
    margin-top: 10px;
    border-radius: 5px;
}

input[type="radio"], input[type="checkbox"] {
    margin: 10px 5px 10px 0
}

.form-select:focus {
    border-color: var(--black);
    box-shadow: unset;
}

.footer-logo-wrapper {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
    min-height: 200px;
    margin-bottom: 50px;
}

.footer-logo-wrapper h6 {
    font-size: 20px;
    font-weight: bold;
}

.contact-wrapper {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 15px 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--white);
}

.contact-wrapper i {
    margin-right: 10px;
    font-size: 20px;
}

.location-wrapper * {
    color: var(--white);
}

.location-wrapper h6 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.location-wrapper p {
    margin-bottom: 0;
}

.social-media-wrapper i {
    color: var(--white);
    font-size: 36px;
    margin-left: 10px;
}

.inner-banner-img {
    max-height: 550px;
    object-fit: cover;
    object-position: center center;
}

.overlapping-card-wrapper.why-sponsor img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.main-heading.conference {
    border-bottom: 0;
    text-transform: uppercase;
}

.post-column-wrap img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.post-content a {
    text-decoration: none;
}

.post-title {
    font-size: 20px;
    font-weight: bold;

}

.exhibitor-wrapper .owl-item {
    padding: 15px;
}

.overlapping-card-wrapper .product_carousel_wrapper img {
    height: 200px;
    object-fit: contain;
    margin-bottom: 25px;
}

.overlapping-card-wrapper .product_carousel_wrapper h6 {
    font-size: 24px;
    font-weight: bold;
}

.overlapping-card-wrapper .owl-nav {
    top: 40%;
    width: 105%;
    left: -2.5%;
}

.overlapping-card-wrapper .owl-nav i {
    font-size: 30px;
}

.schedule-wrapper .nav {
    gap: 10px;
    border-bottom: 0 !important;
}

.schedule-wrapper .nav-link {
    background-color: #e5e5e5;
    border-radius: 50px;
    font-size: 20px;
    color: var(--black);
    padding: 10px 20px;
    min-width: 150px;
    text-align: center;
    transition: 0.15s;
}

.schedule-wrapper .nav-link.active, .schedule-wrapper .nav-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}


.schedule-wrapper .schedule-context {
    background-image: linear-gradient(to right, #ff5757 0%, #8c52ff 100%);
    padding: 25px;
    border-radius: 25px;
    min-height: 300px;
	display:flex;
	justify-content:center;
	align-items:center;
}

.input-group {
    padding: 5px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    max-width: 100%;
}

.input-group-text {
    border: 0;
    border-right: 1px solid #e5e5e5;
    background-color: transparent;
}

.input-group .form-control {
    border: 0;
}

.form-control:focus {
    box-shadow: unset !important;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0;
}


.primary-btn.btn_search_post {
    border-radius: 10px !important;
}

.pagination {
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.page-item .page-link {
    border: 0;
    color: #7a7a7a;
    border-radius: 3px !important;
}

.page-item.active .page-link, .page-item:hover .page-link {
    background-image: linear-gradient(to right, #ff5757 0%, #8c52ff 100%);
    color: var(--white);
}

.org-logo {
    width: 150px;
    max-width: 100%;
    display: block;
    margin: auto;
    height: 70px;
    object-fit: contain;
}

.org-logo-wrapper [class*="col-"] {
    margin-bottom: 16px;
}

.day-container .days,
.hour-container .hours,
.minute-container .minutes,
.second-container .seconds {
    font-size: 62px;
}

#clockdiv .circle-border {
    width: 200px;
    border-radius: 50%;
}

#clockdiv div > span {
	margin-top:0;
}
.coming-soon {
	font-size:50px;
	color:#fff;
	font-weight:600;
}
@media (max-width: 767px) {
	#clockdiv {
		flex-wrap:wrap;
	}
	#clockdiv .circular-border {
		width: 160px;
	}

	p {
		font-size: 14px;
	}

	.large-text {
		font-size: 20px;
	}

	.main-heading {
		font-size: 38px;
	}

	.section-title {
		font-size: 38px;
	}

	.section-subtitle {
		font-size: 24px;
	}


	.section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.event-summary {
		display: block;
	}

	.event-summary .info {
		height: 400px;
	}

	.event-summary .info img {
		width: 100px;
	}

	.event-summary .info h4 {
		font-size: 30px;
	}

	.blog-search-wrapper {
		flex-wrap: wrap;
	}

	.blog-search-wrapper .primary-btn {
		width: 100%;
		margin-top: 15px;
		margin-left: 0;
	}

}

@media (max-width: 575px) {
	.day-container .days,
	.hour-container .hours,
	.minute-container .minutes,
	.second-container .seconds {
		font-size: 30px;
	}
	#clockdiv .circle-border {
		width: 150px;
		padding: 5px;
	}
}
