@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Raleway:wght@700;800&display=swap');


:root {
    --primary-color: #fff;
    --secondary-color: #000000;
    --accent: #ef622e;
    --text-color: #fff;
    --button-color: #3090f8;
    --light-blue: #3090f8;
    --dark-blue: #3090f8;
}


body {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}


.generic-btn a,
.generic-btn button {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    padding: 30px 41px 30px 40px;
    display: inline-block;
    text-decoration: none;
    background: var(--button-color);
    color: var(--primary-color);
    transition: .3s ease-in-out;
}


/* event section styling start here */
.event-inner-section {
    display: grid;
    gap: 60px;
    grid-template-columns: 35% 55%;
}

/* event timeline styling start here */
/* event tabs styling start here */
.event-right-con .nav-link span {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.event-right-con .nav-link:hover span {
    color: var(--button-color);
}

.event-right-con .nav-link.active span {
    color: var(--button-color);
}

.event-right-con .nav-link small {
    font-size: 10px;
    line-height: 16px;
    color: var(--text-color);
}

.event-right-con .nav-link,
.event-right-con .nav-tabs {
    border: none;
}

.event-right-con .nav-item {
    border-right: 1px solid #ccc;
}

.event-right-con .nav-item:last-child {
    border: none;
}

.nav-tabs .nav-link.active {
    background: none;
}
  
.event-right-con .nav-tabs {
    width: auto;
    margin-bottom: 40px;
    padding: 20px 10px 17px;
    border-radius: 10px;
    background: #202020;
}

.event-right-con .nav-link {
    padding: 0 25px 0 25px;
    position: relative;
}

.event-right-con .nav-link.active::after {
    content: "";
    width: 63%;
    height: 2px;
    background: var(--light-blue);
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.event-left-con p {
    margin-bottom: 44px;
}

.event-left-con .generic-btn a {
    padding: 30px 61px;
}

.event-left-con {
    position: relative;
}

.event-left-con::before,
.conference-main-section .generic-title::after,
.blog-main-section .generic-title::before {
    content: "";
    background: url(../images/triangle-shape.png) no-repeat center;
    width: 80px;
    height: 81px;
    position: absolute;
    right: 0px;
    top: -74px;
}


/* event tabs styling end here */
.education {
    width: min(100%);
}

.education__content {
    position: relative;
    padding: 16px 36px 16px 50px;
}

.education__content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 30px;
    margin-block-start: 0.5rem;
    margin-block-end: 0;
}

.education__content p a {
    color: var(--button-color);
}

.education__content .year {
    position: absolute;
    content: var(--year);
    width: 40px;
    height: 40px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--button-color);
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: inset 0 0 0 1px var(--button-color);
    border: 1px solid var(--button-color);
    left: 0px;
    top: 16px;
    z-index: 2;
}

.education__content:not(:last-child):before {
    position: absolute;
    content: "";
    width: 2px;
    background-color: var(--light-blue);
    left: calc(1rem - -3px);
    top: 50px;
    bottom: -1rem;
    z-index: 1;
}

.education__content small {
    font-size: 16px;
    line-height: 20px;
    border-radius: 5px;
    background: rgb(98, 46, 239, .2);
    color: var(--button-color);
    padding: 5px 15px;
    margin-bottom: 16px;
    display: inline-block;
}

.education__content h6 {
    margin-bottom: 14px;
}

/* event timeline styling end here */
/* event section styling end here */

/* speaker section styling end here */
/* register section styling start here */
.register-inner-section {
    display: grid;
    gap: 51px;
    position: relative;
    grid-template-columns: 60% 35%;
}

.register-inner-section::before {
    content: "";
    background: url(../images/triangle-shape.png) no-repeat center;
    width: 80px;
    height: 81px;
    position: absolute;
    left: -190px;
    top: -60px;
}

.register-main-section {
    background: #f9f9fb;
}

.register-details {
    width: 350px;
    padding: 45px;
    border-radius: 10px;
    background: var(--primary-color);
}

.register-details .generic-btn a {
    padding: 20px 47px;
    background: transparent;
    color: var(--button-color);
    border: 1px solid var(--button-color);
}

.register-details .generic-btn a:hover {
    background: var(--button-color);
    color: var(--primary-color);
}

.register-details p {
    font-size: 18px;
    line-height: 20px;
}

.register-details>span {
    font-size: 16px;
    line-height: 18px;
}

.register-details .price {
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    color: var(--button-color);
    padding-left: 3px;
    margin-bottom: 10px;
}

.register-details .price small {
    font-size: 24px;
    font-weight: 400;
    position: relative;
    top: -18px;
    left: -3px;
}

.register-details ul {
    margin-bottom: 34px;
}

.register-details ul li {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    padding-left: 27px;
}

.register-details ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 free";
    font-weight: 800;
    font-size: 14px;
    line-height: 16px;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--button-color);
}

.register-details h3 {
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.register-left-section .generic-title h2 {
    margin-bottom: 28px;
}

.register-left-section .generic-title p {
    margin-bottom: 36px;
}

.register-left-section .generic-btn a {
    padding: 30px 57px;
}

/* swiper section styling start here */
.mySwiper {
    width: 350px;
    height: 484px;
}

.swiper-cards .swiper-slide,
.swiper-3d .swiper-slide-shadow {
    background-color: #fff;
    box-shadow: 5px 0px 12px rgb(204 204 204 / 35%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    opacity: 0;
}

.swiper-button-prev {
    background: var(--button-color) url(../images/arrow-left.png) no-repeat center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    left: -20px;
}

.swiper-button-next {
    background: var(--button-color) url(../images/arrow-right.png) no-repeat center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    right: -20px;
}

/* swiper section styling end here */
/* register section styling end here */
