@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:wght@400;700;900&display=swap");
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #6153a3;
    --primary-light-color: #52458a;
    --secondary-color: #6c757d;
}
html {
    scroll-behavior: smooth;
}
body {
    scroll-behavior: smooth;
}
a {
    text-decoration: none !important;
}
.menu_link {
    position: relative;
    transition: all 0.3s ease-in-out;
    color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}
.menu_link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 0;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.menu_link:hover::after {
    width: 100%;
}
.menu_link:hover {
    color: var(--primary-color);
}
.menu_link.active::after {
    width: 100%;
}
.menu_link.active {
    color: var(--primary-color);
}
.primary_button {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 12px 15px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    /* transition: all 0.3s ease-in-out; */
}
.primary_button:hover {
    background-color: var(--primary-light-color);
}
.primary_button:active {
    transform: scale(0.9);
}
.primary_button_outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.primary_button_outline:hover {
    box-shadow: 0 0 10px 0px var(--primary-color);
}
@media (max-width: 768px) {
    .primary_button_outline {
        padding: 10px;
        font-weight: normal;
        font-size: 14px;
    }
    .primary_button {
        padding: 10px;
        font-weight: normal;
        font-size: 14px;
    }
}
@media (max-width: 500px) {
    .menue_right {
        display: none;
    }
}
.header_top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    transition: all 0.3s ease-in-out;
}
.header_top.srl-header {
    animation: srl_header 0.4s ease-in-out forwards !important;
}
@keyframes srl_header {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
.hOrbit {
    position: relative;
}

.hOrbit_content {
    position: absolute;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    animation: orbit 15s linear infinite;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hOrbit_placeholder_1 {
    height: 40px;
    width: 40px;
    background: #e7b1b1;
    border-radius: 50%;
    position: absolute;
    top: 18px;
    left: 15%;
    animation: placeholder1 15s linear infinite;
}

@keyframes placeholder1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}
.hOrbit_content2 {
    position: absolute;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    animation: orbit2 15s linear infinite;
}

@keyframes orbit2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.hOrbit_placeholder_2 {
    height: 40px;
    width: 40px;
    background: #e1eabe;
    border-radius: 50%;
    position: absolute;
    bottom: 18px;
    left: 15%;
    animation: placeholder2 15s linear infinite;
}

@keyframes placeholder2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}
/*
 */
.hOrbit_content3 {
    position: absolute;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    animation: orbit3 20s linear infinite;
}

@keyframes orbit3 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.hOrbit_placeholder_3 {
    height: 40px;
    width: 40px;
    background: #c8c3df;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -15px;
    animation: placeholder3 10s linear infinite;
}

@keyframes placeholder3 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}
.hero_circle_img {
    animation: placeholder4 15s linear infinite;
}
@keyframes placeholder4 {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-180deg);
    }
    75% {
        transform: rotate(-180deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@media (min-width: 1535px) {
    .hOrbit_content {
        height: 500px;
        width: 500px;
    }
    .hOrbit_content2 {
        height: 500px;
        width: 500px;
    }
    .hOrbit_content3 {
        height: 500px;
        width: 500px;
    }
    .hOrbit_placeholder_1 {
        top: 30px;
        left: 15%;
    }
    .hOrbit_placeholder_2 {
        bottom: 30px;
        left: 17%;
    }
}
.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;
    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);
}
/* hamburger*/
#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;
    }
    .main_menue {
        display: flex;
    }
}

.side_bar_menu {
    position: fixed;
    top: 5.3rem;
    color: #fff;
    background: var(--primary-color);
    left: -15rem;
    width: 15rem;
    height: 100vh;
    transition: all 0.3s ease-in-out;
    padding: 1rem;
    z-index: 1002;
}
.openSidebar .side_bar_menu {
    left: 0;
}
.side_bar_back,
.d_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;
    font-size: 18px;
}
.sid_bar_link:hover {
    background: #c2b5ff2b;
}
.sid_bar_link.active {
    background: #c2b5ff2b;
}
.m-shadow {
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.16);
}

/* form */
.form__input_content {
    position: relative;
}
.form__label {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: all 0.3s;
    font-size: 16px;
    color: #c1c1c1;
}
.active .form__label {
    transform: translateY(-1.6rem);
    color: var(--primary-color);
    font-size: 14px;
}
.form__input {
    width: 100%;
    padding: 0 0 0.5rem 0;
    border: none;
    border-bottom: 2px solid #c1c1c1;
    background: transparent;
    color: #333;
}
.active .form__input {
    border-bottom: 2px solid var(--primary-color);
}
.form__input:focus {
    outline: none;
}
.contact_placeholder {
    position: absolute;
    top: 0;
    right: -6rem;
    background: #c1c1c1;
    width: 2px;
    height: 100%;
}

/* tab */
#tabs-nav .active {
    background: var(--primary-color);
    color: #fff;
}
#r_tabs-nav .active {
    background: var(--primary-color);
    color: #fff;
}
.features_items {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.features_items::before {
    content: "";
    position: absolute;
    top: -4.6rem;
    right: -3rem;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: 1;
    transition: all 0.4s ease-in-out;
}
.features_items:hover:before {
    width: 350px;
    height: 350px;
}
.features_items:hover {
    color: #fff;
}
.features_items_text {
    z-index: 1;
}
.slider-container {
    overflow: hidden;
    position: relative;
}
.slider {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    flex: 0 0 100%;
}
.pagination {
    text-align: center;
}
.pagination button {
    margin: 0 5px;
    padding: 5px 10px;
    cursor: pointer;
    background-color: #ccc;
    border: none;
}
.pagination button.active {
    background-color: #333;
    color: #fff;
}
/* scroll top */
.scroll_top_m {
    position: fixed;
    bottom: 0px;
    right: 2%;
    z-index: 99;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.scroll_top_m.active {
    opacity: 1;
    visibility: visible;
    bottom: 3rem;
}
@media screen and (max-width: 768px) {
    .scroll_top_m {
        right: 14px;
        bottom: 50px;
        padding: 6px 10px;
    }
    .scroll_top_m.active {
        bottom: 75px;
    }
}

.sec_title {
    position: relative;
}
.sec_title::before {
    content: "";
    position: absolute;
    left: 0;

    width: 20%;
    background: var(--primary-color);
}

/* fade-in and fade-out animation */
.fade-in {
    animation: fadeIn ease 5s;
    -webkit-animation: fadeIn ease 5s;
    -moz-animation: fadeIn ease 5s;
    -o-animation: fadeIn ease 5s;
    -ms-animation: fadeIn ease 5s;
}
.fade-out {
    animation: fadeOut ease 5s;
    -webkit-animation: fadeOut ease 5s;
    -moz-animation: fadeOut ease 5s;
    -o-animation: fadeOut ease 5s;
    -ms-animation: fadeOut ease 5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        color: red;
    }
    100% {
        opacity: 1;
        color: blue;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.my_shadow {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}
.p_img_div {
    overflow: hidden;
}
.product_images {
    transition: all 0.3s ease-in-out;
}
.product_content:hover .product_images {
    transform: scale(1.1);
}

/* form */
.form__input_content {
    position: relative;
}
.form__label {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: all 0.3s;
    font-size: 16px;
    color: #c1c1c1;
}
.active .form__label {
    transform: translateY(-1.3rem);
    color: #333;
    font-size: 12px;
    /* font-weight: bold; */
}
.form__input {
    width: 100%;
    padding: 0 0 0.5rem 0;
    border: none;
    border-bottom: 2px solid #c1c1c1;
    background: transparent;
    color: #333;
}
.active .form__input {
    border-bottom: 2px solid #333;
}
.form__input:focus {
    outline: none;
}
.contact_placeholder {
    position: absolute;
    top: 0;
    right: -6rem;
    background: #c1c1c1;
    width: 2px;
    height: 100%;
}
