@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --book-color: #ECBB43;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-size: 16px;
    color: #231F20;
    font-family: "Montserrat", sans-serif;
}

.container {
    position: relative;
    /* max-width: calc(100% - 3.2rem); */
    width: 100%;
    margin: 0 auto;
}

p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #000000;
    margin-bottom: 0;
}

ul li {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #000000;
}

p:not(:last-of-type) {
    margin-bottom: 1rem;
}

@media (min-width: 48em) {
    .second-road .container {
        max-width: calc(100% - 6.4rem);
    }
}

.section-padding {
    padding: 40px 0px;
}

.section-margin {
    margin: 40px 0px;
}

.book-banner {
    padding: 30px 0px;
    background-color: var(--book-color);
}

.book-banner .book-banner-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.book-banner .book-banner-content .banner-img-left {
    padding-left: 50px;
}

.book-banner .book-banner-content .banner-text-left {
    flex: 1;
    text-align: right;
}

.book-logo img {
    max-width: 100%;
}

.book-banner .book-banner-content .banner-text-left h1 {
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 700;
    font-size: 88px;
    text-align: right;
    color: #FFFFFF;
    padding-right: 50px;
    margin-bottom: 150px;
}

.border-box {
    padding: 20px;
    border: 1px dashed #707070;
    border-radius: 10px;
}

.border-box p {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #231F20;
}

.title-sm {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #231F20;
    margin-bottom: 15px;
}

.cust-btn-popup {
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #000000;
    position: relative;
}

.cust-btn-popup .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-color: #D9D9D9;
}

.cust-btn-popup .tooltip-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #000000;
    background-color: var(--book-color);
    padding: 5px 5px;
    border-radius: 5px;
    position: absolute;
    top: -45px;
    left: -40px;
    right: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}

.cust-btn-popup:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.cust-btn-popup .tooltip-text::after {
    content: "";
    width: 13px;
    height: 13px;
    background: var(--book-color);
    position: absolute;
    right: 21px;
    bottom: -7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-border-before: 1px solid var(--book-color);
    border-block-start: 1px solid var(--book-color);
    -webkit-border-start: 1px solid var(--book-color);
    border-inline-start: 1px solid var(--book-color);
}

.tooltip .tooltip-inner {
    background-color: var(--book-color);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #000000;

}

.tooltip .tooltip-arrow::before {
    border-top-color: var(--book-color) !important;
}

.section-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
    margin-bottom: 20px;
}

.btn.btn-primary {
    background-color: var(--book-color);
    border-color: var(--book-color);
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    padding: 20px 40px;
    border-radius: 30px;
    line-height: 1;
}


.navigation-path {
    padding: 65px 0px;
    background-color: #F0F0F0;
}

.path-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    color: #000000;
    background: #FFFFFF;
    border-radius: 0px 100px 100px 0px;
    padding: 10px 10px 10px 60px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s ease;
}

.path-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 27px;
    height: 100%;
    background-color: #CF1C54;
    z-index: -1;
    transition: all 0.6s ease;
}

.path-link:hover {
    color: #FFFFFF;
}

.path-link:hover::before {
    width: 100%;
}

.path-link .indx-number {
    margin-right: 30px;
}

.path-link .icon {
    width: 120px;
    height: 120px;
    background: #CF1C54;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.path-link:not(:last-of-type) {
    margin-bottom: 40px;
}

.path-link.bg-2::before,
.path-link.bg-2 .icon {
    background-color: #FE5F38;
}

.path-link.bg-3::before,
.path-link.bg-3 .icon {
    background-color: #FF9E2D;
}

.path-link.bg-4::before,
.path-link.bg-4 .icon {
    background-color: #26A3A9;
}

.path-link.bg-5::before,
.path-link.bg-5 .icon {
    background-color: #3587D4;
}


.book-path-list .road-map-wrapper {
    margin-bottom: 40px;
}

.popup-detail h4 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
    margin-bottom: 25px;
}

.popup-detail .auth-name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
}

.popup-detail p b {
    font-weight: bold;
}

.modal-body {
    padding: 40px;
}

.modal-content {
    border-radius: 20px;
    border: 0;
}

.modal-content .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 999;
    background-color: #D9D9D9;
    background-size: 10px;
}

@media screen and (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1380px;
    }
}


.title-badge {
    display: inline-block;
    padding: 20px 40px;
    background: #CF1C54;
    border-radius: 426px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.sub-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #231F20;
    margin-bottom: 20px;
}

strong {
    font-weight: 700;
}

ul.cust-style {
    list-style: none;
    padding: 0;
}

ul.cust-style li {
    position: relative;
    padding-left: 2rem;
}

ul.cust-style li::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    background-image: url('../assets/landingpage/bullet-point.svg');
    background-size: 100% 100%;
    width: 18px;
    height: 18px;
}

ul.cust-style li:not(:last-of-type) {
    margin-bottom: 15px;
}

.person-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-list img {
    position: relative;
    transition: all 0.6s ease;
    width: 274px;
    height: 274px;
    border-radius: 50%;
}

.person-list img:hover {
    z-index: 5;
}

.person-list img:not(:first-of-type) {
    margin-left: -30px;
}

.title-badge.bg-1 {
    background: #FE5F38;
}

.title-badge.bg-book {
    background: var(--book-color);
}

.title-badge.bg-3 {
    background: #26A3A9;
}

.title-badge.bg-4 {
    background: #3587D4;
}



#book-container {
    min-height: 98vh;
    position: relative;
}

.road-map-wrapper {
    position: relative;
}

.magnify {
    border-radius: 50%;
    border: 2px solid black;
    position: absolute;
    z-index: 20;
    background-repeat: no-repeat;
    background-color: white;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, .5);
    display: none;
    cursor: none;
}

.tooltip-shower {
    position: relative;
}

.tooltip-popup {
    padding: 15px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: inline-block;
    max-width: 500px;
    width: 100%;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    z-index: 9;
    border: 1px solid #d7d7d7;
}

.tooltip-popup.active {
    opacity: 1;
    visibility: visible;
}

.tooltip-popup.pos-1 {
    top: 30%;
    left: 6%;
}

.btn.btn-primary.btn-sm {
    padding: 11px 15px;
    font-size: 16px;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: var(--book-color);
    border-color: var(--book-color);
    color: #000000;
}

.btn-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.tooltip-popup.pos-2 {
    top: 25%;
    right: 6%;
}

.tooltip-popup.pos-3 {
    bottom: 0;
    left: 6%;
}

.tooltip-popup.pos-4 {
    bottom: -130px;
    right: 13%;
}

.tooltip-popup.pos-5 {
    bottom: 15%;
    right: 5%;
}

.flipbook-menuBottom .flipbook-menu-center {
    background: white;
    padding: 0.25em 1em;
    border-radius: 30px;
    margin-bottom: 0.5em;
    border: 1px solid var(--book-color);
}

.flipbook-bg-light {
    background: transparent !important;
}

.bk-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 15px;
    background-color: #FFFFFF;
    text-align: center;
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Inter';
    font-weight: 700;
    border-radius: 50px 0px 0px 50px;
    transition: all 0.6s ease;
    width: 450px;
    text-align: left;
}

.bk-nav-link:hover {
    transform: translateX(-270px);
    color: #000000;
}

.bk-nav-link span {
    display: block;
}

.bk-nav-link .link-icon img {
    background: #e89793;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 1s;
    margin-right: 15px;
}


.bk-nav-link.active .link-icon,
.bk-nav-link:hover .link-icon {
    display: block;
}

.book-navbar-section {
    background: #F3D2CD;
}

.flipbook-main-wrapper {
    background: #F3D2CD !important;
}

.book-buttons .btn.btn-primary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 100px 20px 20px !important;
    border-radius: 50px;
}

.btn.btn-primary.dropdown-cust::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 27px;
    background: url('../assets/landingpage/arrow-down.svg') no-repeat;
    width: 15px;
    height: 10px;
}

.btn.btn-primary.dropdown-cust:hover,
.btn.btn-primary.dropdown-cust:focus {
    background-color: var(--book-color);
    border-color: var(--book-color);
    color: #000000;
}

.dropdown-menu {
    border-color: var(--book-color);
    /* width: 100%; */
    min-width: 260px;
    margin-top: 15px !important;
}

.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
}

.dropdown-menu .dropdown-item .icon-2 {
    flex: 1;
    text-align: right;
}

.book-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 60px;
    gap: 15px;
}

.book-box {
    padding-bottom: 40px;
    background: #F3D2CD !important;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
}

.booknav-wrapper {
    position: absolute;
    top: 50%;
    right: -370px;
    z-index: 5;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

@media (min-width: 1700px) {
    .flipbook-right-arrow {
        margin-right: 6% !important;
    }

    .flipbook-left-arrow {
        margin-left: 4% !important;
    }
}

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--bs-dropdown-link-hover-bg);
    color: var(--bs-dropdown-link-hover-color);
}