/* Global CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: none;
}

html body {
    width: '100%';
    height: '100%';
    background-color: #fff;
    color: #212B36;
    line-height: 1.5;
    font-size: 1rem;
    font-family: Helvetica, Public Sans, sans-serif;
    font-weight: 400;
    word-spacing: 2px;
    text-align: justify;
}

.dropdown-menu-plus {
    border: 0px !important;
    margin-top: 12px !important;
    border-radius: 8px !important;
    box-shadow: 0 0 4px 0 rgba(145, 158, 171, 0.24), 0 24px 48px 0 rgba(145, 158, 171, 0.24) !important;
    animation: appear-opacity 0.25s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes appear-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.dropdown-item {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1.5714285714285714;
    font-size: 0.875rem;
    font-weight: 400;
    color: #3d4247 !important;
    text-align: left;
    cursor: pointer;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.dropdown-item:hover {
    background-color: #F4F6F8;
}

i {
    margin-left: 4px;
    border: solid;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 3px;

}

.down {
    transform: rotate(45deg);
}

.right {
    transform: rotate(-45deg);
}

.point {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #3d4247;
}

.selected .point {
    background-color: #00ab55;
}

.selected {
    color: #00ab55 !important;
}

.selected:hover {
    background-color: #ebf8f2 !important;
}

.introduceBox {
    margin-top: 64px;
    height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.introduceImageBox {
    height: 100%;
    position: relative;
}

.introduceImageBox img {
    height: 100%;
}

.introduceTextBox {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.5);
}

.bottomMarker {
    vertical-align: bottom;
}

.topMarker {
    vertical-align: top;
}

.contentBox {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.contentBox1 {
    width: 100%;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contentBox2 {
    padding-bottom: 48px;
    padding-top: 48px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

@media screen and (min-width: 1000px) {
    .contentBox2 {
        flex-basis: 70%;
    }
}

.sidebarBox {
    width: 100%;
    margin-top: 120px;
    margin-bottom: 80px;
    display: none;
}

@media screen and (min-width: 1000px) {
    .sidebarBox {
        flex-basis: 20%;
        display: block;
    }
}

.sidebarBox1 {
    top: 120px;
    position: sticky;
    z-index: 500;
    width: 100%;
    padding-right: 24px;
    border-right: 2px solid;
    border-color: #00ab55;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.sidebarBox1 a {
    color: inherit;
    text-decoration: none;
}

.sidebarBox1 a::before {
    content: "● ";
    color: white;
}

.sidebarBox1 a.sidebarSelected::before {
    content: "● ";
    color: inherit;
}

.sidebarSelected {
    color: #00ab55 !important;
}

.textBox {
    text-indent: 2em;
}

.imgBox {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.titleBox {
    margin-top: 8px;
    margin-bottom: 18px;
    width: 100%;
    text-align: center;
    font-weight: 700;
    line-height: 1.3333333333333333;
    font-size: 1.5rem;
}

.subTitleBox {
    margin-top: 8px;
    margin-bottom: 18px;
    width: 100%;
    font-weight: 700;
    line-height: 1.3333333333333333;
    text-align: left;
    font-size: 1.25rem;
}

@media screen and (min-width: 650px) {
    .titleBox {
        font-size: 2.25rem;
    }
}

.smaller {
    font-size: 0.7rem;
}

.videoBox {
    width: 100%;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 64px;
}
