:root {
    --primary-color: #009a8c;
    --primary-light-color: #04bdad;
    --secondary-color: #00a2de;
    --light-color: #636363;
}

/* style for navbar */
.navbar_right_menu a {
    text-transform: uppercase;
    color: #555;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-weight: 500;
    transition: all ease-in-out 0.3s;
    font-size: 14px;
}

.navbar_right_menu a:hover {
    color: var(--primary-color);
}
.navbar_right_menu a.active {
    color: var(--primary-color);
}
.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color);
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    background: var(--secondary-color);
}

/* tab bar */

.r_tab_container {
    width: 100%;
    position: relative;
    height: 48px;
    border-bottom: 1px solid #d9d9d9;
    text-align: center;
}
.r_tab_container .line {
    display: block;
    width: 23%;
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}
.r_tab_container .r_tab_item {
    display: block;
    width: 23%;
    float: left;
    font-size: 20px;
    line-height: 48px;
    font-weight: bold;
    color: #64646e;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.r_tab_container p.active,
.r_tab_container .r_tab_item:hover {
    color: var(--primary-color);
}

/* table style */

.my_table {
    border-collapse: collapse;
    width: calc(100% - 10px);
    margin-left: auto;
}
.my_table th {
    background-color: #ddd;
}

.my_table td,
.my_table th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

.r_sp_list li span {
    background-color: #8b8b8b;
    border-radius: 15px;
    color: #fff;
    font-weight: 500;
    padding: 0 4px;
}
.r_sp_list li {
    line-height: 30px;
}

/* modal */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

/* Modal content */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

/* Modal close button */
.modal .close {
    cursor: pointer;
}

/* slider */
.slider_container {
    border-radius: 0 0 7px 7px;
}

/* mobile menu */
#hamburger {
    width: 28px;
    height: 45px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

#hamburger span,
#nav-icon3 span,
#nav-icon4 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

#hamburger span:nth-child(1) {
    top: 12px;
}

#hamburger span:nth-child(2) {
    top: 21px;
}

#hamburger span:nth-child(3) {
    top: 29px;
}

#hamburger.activeHamburger span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#hamburger.activeHamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#hamburger.activeHamburger span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.main_menue {
    display: none;
}
@media (min-width: 1150px) {
    .side_menue {
        display: none;
    }
}
.navbar_right_menu {
    display: flex;
}

@media (max-width: 1150px) {
    .navbar_right_menu {
        display: none;
    }
}

.side_bar_menu {
    position: fixed;
    top: 0;
    color: #fff;
    background: var(--primary-color);
    right: -15rem;
    width: 15rem;
    height: 100vh;
    transition: all 0.3s ease-in-out;
    padding: 0.8rem;
    z-index: 100;
    scrollbar-width: none;
}
.openSidebar .side_bar_menu {
    right: 0;
}
.side_bar_back {
    display: none;
    opacity: 0.2;
}
.openSidebar .side_bar_back {
    display: block;
}
.sid_bar_link {
    display: block;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}
.sid_bar_link:hover {
    background: #c2b5ff2b;
}
.sid_bar_link.active {
    background: #c2b5ff2b;
}

/* faq */
.accordion .inner {
    padding: 1em;
    background: #ffff;
    overflow: hidden;
    display: none;
}
.accordion .inner.dm_inner {
    background-color: #c2b5ff2b;
    padding: 0;
    width: 93%;
    margin-left: auto;
    margin-right: 5px;
}
.d_dropdown_ic.active .d_dropdown_icon {
    transition: all ease-in-out 0.3s;
    transform: rotate(180deg);
}
.accordion .inner.dm_inner .dropdown-item {
    color: #fff;
    padding: 10px;
    font-size: 16px;
}
.accordion .inner.dm_inner .dropdown-item:hover {
    color: #fff;
    background: #c2b5ff2b;
}
.accordion li {
    margin: 0.5em 0;
}

.accordion li h5.qms_faq_head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #e5e5e5;
    font-weight: 700;
    color: #000;
    padding: 0.75rem 1rem;
    border-radius: 0.15em;
    transition: all ease-in-out 0.3s;
}
.accordion li h5.qms_faq_head:hover {
    background: var(--primary-color);
    color: #fff;
}
.accordion li h5.qms_faq_head.active {
    background: var(--primary-color);
    color: #fff;
}
.accordion li h5.qms_faq_head.active i {
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}
.accordion li h5.qms_faq_head.active i {
    transform: rotate(45deg);
}
