#home {
    padding: 0 .1rem;
}

/* carousel start */
.carousel {
    flex-direction: column;
    margin-bottom: 8rem;
}
.carousel .title-container {
    width: 100%;
    flex-direction: column;
    padding-left: 3rem;
}
.title-container .title-wrapper {
    flex-direction: column;
    width: 35rem;
    padding: 15rem 0 0 0rem;
}

.title-wrapper h1 {
    font-family: var(--font-family);
    font-size: 2rem;
}

.tabulation-list {
    display: flex;
    flex-direction: row;
    padding: 3rem 0 0 5rem;
    margin-bottom: 4rem;
}
.tabulation-list li {
    /* background-color: aqua; */
    margin-right: 2rem;
    border-radius: 50%;
    padding: 0 1rem;
    transition: background-color .3s ease-out;
}
.tabulation-list li:hover {
    background-color: rgb(255, 242, 242);
}
.tabulation-list li a {
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--theme-text-primary);
    /* transition: color .1s ease-out; */
}
.tabulation-list li:hover a {
    color: var(--theme-blue-deep)
}

.content-container {
    width: 100%;
    height: 95vh;
    position: relative;
    /* border-radius: 20%; */

    /* border: 2px solid red; */
}
.content-container .carousel-label {
    z-index: 1;
    position: absolute;
    left: 6rem;
    top:5rem;
}
.content-container .carousel-label span {
    color: var(--theme-text-invert);
    font-size: .8rem;
}
.content-container .cards-turner {
    z-index: 6;
    position: absolute;
    bottom: 8rem;
    left: 8rem;
}
.content-container .cards-turner .arrows {
    column-gap: 0.833rem;
    align-items: center;
    white-space: nowrap;
}
.content-container .cards-turner .arrows .arrow {
    border: 1px solid var(--theme-text-invert);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 3.75rem;
    justify-content: center;
    position: relative;
    width: 3.75rem;
    align-items: center;
}
.content-container .cards-turner .arrows .arrow-left {
    rotate: 180deg;
}
.content-container .cards-turner .arrows .arrow svg path{
    fill: var(--theme-text-invert);
}
.content-container .inner-cards {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    box-sizing: border-box;

    /* background-color: aqua; */
}
.content-container .inner-cards .card {
    z-index: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    transform: translate(40rem, 0);
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    left: 0;
    top: 0;

    pointer-events: none;
}
.content-container .inner-cards .card.card-active {
    opacity: 1;
    transform: translate(0, 0);

    pointer-events: all;

}


.inner-cards .card .img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.inner-cards .card .img-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
    position: absolute;
    border-radius: .5rem;
}
.inner-cards .card .opacity-mask {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-color: var(--theme-text-primary);
    position: absolute;
    border-radius: .5rem;

    pointer-events: none;
}
.inner-cards .card .card-description {
    max-width: 40rem;
    position: absolute;
    /* height: 15rem; */
    /* border: 1px solid salmon; */
    z-index: 1;
    flex-direction: column;
    bottom: 15rem;
    left: 8rem;
    padding-top: 3rem;
}
.card-description .type-decoration {
    border-radius: 1rem;
    /* border: 1px solid var(--theme-text-invert); */
    background-color: hsla(0, 0%, 100%, .2);    /* height: 2rem; */
    /* width: 10rem; */
    position: absolute;
    top: 0;
    left: 0rem;
    padding: .2rem 1rem;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.card-description .type-decoration span {
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 300;
    
    color: var(--theme-text-invert);
}
.card-description .title h2{
    font-family: var(--font-family);
    font-size: 3.5rem;
    color: var(--theme-text-invert);
}

.card .link-wrapper {
    padding: .8rem 2rem;
    /* background-color: var(--theme-text-invert);
    background-color: var(--theme-text-primary); */
    background-color: var(--theme_green_deep);
    position: absolute;
    right: 12rem;
    bottom: 8rem;
    border-radius: 2rem;
    transition: background-color .3s ease;

}


.card .link-wrapper a {
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 1rem;
    /* color: var(--theme_green_deep); */
    color: var(--theme-text-primary);
    transition: color .3s ease;

}

.card .link-wrapper:hover {
    background-color: var(--theme-text-primary);
}
.card .link-wrapper:hover a {
    color: var(--theme_green_deep);
}

/* carousel end */

/* part-section common */
.part-section {
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    padding: 0 1rem;
    margin-bottom: 8rem;
}
.part-section header {
    width: 90%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 3rem;

}
.part-section header a {
    /* text-decoration: none; */
    font-family: var(--font-family);
    color: var(--theme-text-primary);
    font-weight: bold;
    font-size: .8rem;
    text-decoration: underline;
    cursor: pointer;
}
.part-section header a:hover {
    color: var(--theme-blue-deep);

}


.part-section header h2 {
    font-family: var(--font-family);
    font-size: 7rem;
    color: var(--theme-text-primary);
    position: relative;
    display: inline-block;
}
.part-section .section-main {
    width: 100%;
    box-sizing: border-box;
}
/* part-section common end */

/* event-section start */
.event-main {
    gap: 2rem;
}
.event-main .event-item {
    flex: 1;
    text-decoration: none;
    position: relative;
    height: 40rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-main .event-img-wrapper {
    height: 40rem;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
.event-main .event-item .mask {
    background-color: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.event-main .event-img-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.event-main .event-item .event-title-wrapper {
    max-width: 40rem;
    z-index: 33;
    position: relative;
}
.event-main .event-item .event-title-wrapper h2 {
    color: var(--theme-text-invert);
    font-size: 5rem;
    letter-spacing: 1.1;
    
}
/* event-section end */
/* article-section start */
.article-main {
    gap: 2rem;
}
.article-item {
    flex: 1;
    flex-direction: column;
}

.article-item .img-wrapper {
    width: 100%;
    height: 20rem;
    overflow: hidden;
}
.article-item .img-wrapper img {
    width: 100%;
    object-position: center;
    object-fit: cover;
    border-radius: 1rem;
}
.info-wrapper {
    padding: .8rem 0;
    align-items: center;
    gap: 5rem;
}

.info-wrapper .info-date span {
    font-family: var(--font-family);
    font-size: .8rem;
}
.info-wrapper .info-readingtime {
    align-items: center;
}
.info-wrapper .info-readingtime svg {
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
}
.info-wrapper .info-readingtime span {
    font-family: var(--font-family);
    font-size: .8rem;
}

.article-item .article-title-wrapper h2 {
    font-family: var(--font-family);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.05;
}

/* article-section end */

/* video & webinars start */
.webinars-main {
    gap: 2rem;
}
.webinars-main .webinar-item{
    flex: 1;
    flex-direction: column;
}
.webinars-main .webinar-item .video-title-wrapper h2{
    font-family: var(--font-family);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.05;
}
.webinars-main .webinar-item .webinar-wrapper {
    position: relative;
}
.webinars-main .webinar-item .webinar-wrapper .player-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border: 1px solid var(--theme-text-invert);
    border-radius: 50%;
    padding: 1rem;
    width: 4rem;
    height: 4rem;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.webinars-main .webinar-item .webinar-wrapper .player-icon svg {
    width: 2rem;
    height: 2rem;
}
.webinars-main .webinar-item .webinar-wrapper .player-icon svg path{
    fill: var(--theme-text-invert);
}

.webinars-main .webinar-item .webinar-wrapper {
    text-decoration: none;
    display: block;
}
.webinars-main .webinar-item .webinar-wrapper .img-wrapper {
    width: 100%;
    height: 15rem;
    overflow: hidden;
}
.webinars-main .webinar-item .webinar-wrapper .img-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
/* video & webinars end */

/* Brochures section start */
.brochures-main {
    gap: 2rem;
}
.brochures-main .brochure-item {
    text-decoration: none;
    flex: 1;
    height: 35rem;
    background-color: var(--theme-gray-bright);
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.brochures-main .brochure-item .title-wrapper {
    /* max-width: 30rem; */
    width: 80%;
    height: 12rem;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 2rem 0;
}
.brochures-main .brochure-item .title-wrapper h2{
    color: var(--theme-text-primary);
    font-size: 2rem;
    letter-spacing: 1.1;
    font-family: var(--font-family);
    text-align: center;
    line-height: 1.5;
}
.brochures-main .brochure-item .img-wrapper {
    width: 90%;
    height: 16rem;
    border-radius: 10rem;
    overflow: hidden;
}

.brochures-main .brochure-item .img-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
/* brochures-section end */

/* PRs section start */
.PRs-main {
    gap: .5rem;
}
.PRs-main .PRs-item {
    display: flex;
    flex: 1;
    position: relative;
    height: 30rem;
    text-decoration: none;
    align-items: flex-end;
}
.PRs-item .PRs-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30rem;
    overflow: hidden;
    border-radius: .5rem;
}
.PRs-item .PRs-img-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.PRs-item .mask {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: radial-gradient(circle, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.3) 100%);
}
.PRs-item .PRs-description {
    z-index: 9;
    flex-direction: column;
    padding-left: 2rem;

}
.PRs-item .info-wrapper {
    padding: .8rem 0rem;
    /* align-items: left;
    justify-content: left; */
    /* gap: 5rem; */
    flex-direction: row;

}

.PRs-item .info-wrapper .info-date span {
    font-family: var(--font-family);
    color: var(--theme-text-invert);

    font-size: .8rem;
}
.PRs-item .info-wrapper .info-readingtime {
    align-items: center;
    flex-direction: row;

}
.PRs-item .info-wrapper .info-readingtime svg {
    width: 1rem;
    height: 1rem;
    fill: var(--theme-text-invert);

    margin-right: .5rem;
}
.PRs-item .info-wrapper .info-readingtime svg circle,
.PRs-item .info-wrapper .info-readingtime svg line {
    fill: var(--theme-text-invert);
}
.PRs-item .info-wrapper .info-readingtime span {
    font-family: var(--font-family);
    color: var(--theme-text-invert);
    font-size: .8rem;
}
.PRs-item .PRs-description .title-wrapper {
    max-width: 70%;
}

.PRs-item .PRs-description .title-wrapper h2 {
    font-family: var(--font-family);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--theme-text-invert);
    margin-bottom: 2rem;
}





