* {
    padding: 0;
    margin: 0;
    transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
    user-select: none;
    user-zoom: none;
    -webkit-user-drag: none;
    scrollbar-width: auto;
    scrollbar-color: #8f54a0 #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-text-size-adjust: 100%;
}


/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #bb171700;
    border-radius: 10px;
    filter: blur(2);
}

*::-webkit-scrollbar-thumb {
    /* background-color: rgb(231, 69, 69); */
    background-image: linear-gradient(to top, #de6694, #d5489b, #c329a9, #a50cbc, #7011d2);
    border-radius: 5px;
    border: 1px solid #ffffff;
}

a {
    color: unset;
    background-color: unset;
    text-decoration: none;
}

main {
    margin: auto;
    width: calc(100vw - 10px);
    height: 100vh;
}

section.transparent-Container {
    /* width: 100%;
    height: 100vh;
    background-color: transparent;
    background-image: url(../images/bg1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100vh; */
    height: 65vh;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

section.transparent-Container .paralax__container {
    position: absolute;
    clip: rect(0, auto, auto, 0);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -10;
}

section.transparent-Container .paralax__container .paralax__container-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    /* top: 0; */
    height: 606.812px;
    top: 33.7109px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg2 {
    background-image: url(../images/bg1.jpg);
}

section.top-first-section {
    display: flex;
    text-align: center;
    height: 28px;
    font-size: 16px;
    font-weight: 400;
    color: yellow;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: linear-gradient(to right, #de6694, #d5489b, #c329a9, #a50cbc, #7011d2);
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid black;
}

section.top-first-section p {
    font-size: 18px;
    font-weight: 500;
}

section.security-section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    width: 100%;
    height: 4vh;
    padding: 5px 0;
    justify-content: center;
    background-color: #80808029;
    align-items: center;
    border-bottom: 3px solid #b992a7;
}

section.security-section div {
    display: flex;
    align-items: center;
    width: 20%;
    height: 100%;
    margin: 5px;
    font-weight: bold;
    border-right: 2.5px solid #aaa6ad;
    justify-content: center;
}

section.security-section div:last-child {
    border-right: none;
}

section.security-section div i {
    margin-right: 5px;
}

section.navbar-section {
    height: 12vh;
    width: 100%;
    padding: 10px 0;
    justify-content: space-evenly;
}

section.navbar-section.sticky {
    position: fixed;
    top: 0;
    background: #ffffff;
    animation: top-to-bottom 700ms;
    z-index: 50;
}

section.navbar-section .logo {
    width: 135px;
    height: 100px;
    background-color: #a50cbc;
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
}

section.navbar-section .navbar-content {
    width: 80%;
    height: 100%;
    font-weight: bold;
    justify-content: space-evenly;
    cursor: pointer;
    font-size: 17px;
}

section.navbar-section .navbar-content div i {
    position: absolute;
    font-size: 25px;
    margin: 0 5px;
}

section.navbar-section .navbar-content div a:hover {
    color: #db5c96;
}

section.navbar-section .navbar-content div .dropdown-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    position: absolute;
    background-color: rgb(255, 255, 255);
    height: 0;
    width: 70%;
    z-index: 50;
    transform: translate(-30%, 100px);
    opacity: 0;
    color: black;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: transform 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

section.navbar-section .navbar-content div:hover .dropdown-content {
    width: 70%;
    height: max-content;
    transform: translate(-30%, 0);
    opacity: 1;
    border-radius: 10px;
    transition: transform 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

section.navbar-section .navbar-content div .dropdown-content .rows {
    height: max-content;
    width: 100%;
    background-color: rgb(255, 255, 255);
    margin: 5px;
}

section.navbar-section .navbar-content div .dropdown-content .rows .title {
    font-size: 24px;
    font-weight: bold;
    color: purple;
}

section.navbar-section .navbar-content div .dropdown-content .rows ul {
    list-style: none;
    font-weight: 200;
}

section.navbar-section .navbar-content div .dropdown-content .rows ul li {
    margin: 10px;
}

section.navbar-section .navbar-content div .dropdown-content .rows ul li:hover {
    color: purple;
}

section.navbar-section .navbar-content div:hover i {
    transform: rotate(180deg);
}

section.navbar-section .button-content {
    width: 15%;
    height: 100%;
    justify-content: center;
    cursor: pointer;
    margin-left: 60px;
    font-weight: 400;
}

section.navbar-section .button-content a {
    margin: 5px;
    font-size: large;
}

section.navbar-section .button-content a i {
    margin: 10px 0 0 0;
}

section.navbar-section .button-content a.sign-in {
    background-color: white;
    border: 0;
    /* font-weight: 400; */
    padding: 6px;
}

section.navbar-section .button-content i {
    font-size: 24px;
}

section.main-content {
    position: relative;
    width: 99vw;
    height: 67vh;
    background-position: center;
    background-size: contain;
    overflow: hidden;
}

section.main-content .main-header-components {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 25;
    background-color: #000000cf;
}

section.main-content .important-buttons {
    position: relative;
    /* top: 90px; */
    padding-top: 90px;
    width: 100%;
    height: 100px;
    justify-content: center;
    animation: bottom-to-top 1s;
}

section.main-content .important-buttons div {
    width: max-content;
    height: max-content;
    background-color: white;
    padding: 20px;
    border-radius: 0;
    font-size: 19px;
    margin: 39px;
}

section.main-content p {
    margin: auto;
    width: 90%;
    font-size: 48px;
    color: white;
}

section.testimonial {
    height: max-content;
    padding: 15px;
    background-color: white;
}

section.testimonial #testimonial_preview_container {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(119, 114, 114, 0.425);
    z-index: 100;
}

section.testimonial #testimonial_preview_container #testimonial_preview {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: max-content;
    height: 90%;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    z-index: 100;
    background-color: white;
    animation: scale-open 200ms;
    align-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
}

section.testimonial #testimonial_preview_container #testimonial_preview .section {
    width: 30vw;
    height: 100%;
}

section.testimonial #testimonial_preview_container #testimonial_preview .section.background {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: rgb(223 220 223 / 54%);
}

section.testimonial #testimonial_preview_container #testimonial_preview .section.detail header {
    display: flex;
    margin: auto;
    flex-direction: row;
    justify-content: space-between;
    height: 10%;
    width: 90%;
    align-items: center;
    flex-wrap: nowrap;
    align-content: center;
    text-align: left;
    padding: 50px 5px 0 5px;
}

section.testimonial #testimonial_preview_container #testimonial_preview .section.detail header .user-detail {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
}

section.testimonial #testimonial_preview_container #testimonial_preview .section.detail header .user-detail:nth-child(2) {
    text-align: right;
    font-size: 13px;
}

section.testimonial #testimonial_preview_container #testimonial_preview .section.detail header .user-detail .star {
    color: #fec610;
}

.open {
    animation: scale-open 200ms;
}

.close {
    animation: scale-close 200ms;
}

section.testimonial #testimonial_preview_container #testimonial_preview .section.detail .messages-cont {
    margin: auto;
    width: 90%;
    height: 45%;
    overflow-y: auto;
    padding: 10px;
    text-align: left;
    font-stretch: extra-condensed;
    font-size: 19px;
}

section.testimonial #testimonial_preview_container #testimonial_preview .section.detail .productLink {
    margin-top: 100px;
    padding: 15px 60px;
    font-size: 25px;
    font-weight: 700;
    background-color: blue;
    color: white;
    border: thin;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
}

section.testimonial #testimonial_preview_container #testimonial_preview .close-btn {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 65%;
    margin: 10px;
    font-size: 33px;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    background-color: black;
    overflow: hidden;
}

section.testimonial .container {
    position: relative;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-basis: calc(20% - 20px);
    flex-grow: 0;
    flex-shrink: 0;
    white-space: none;
}

section.testimonial .container .cont {
    /* position: absolute; */
    width: 205px;
    height: max-content;
    margin: 10px 1px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

section.testimonial .container .cont:hover {
    background-color: rgb(226, 217, 217);
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

section.testimonial .container .cont img {
    width: 100%;
    max-height: 250px;
    cursor: pointer;
}

section.testimonial .container .cont .content {
    padding: 5px 3px 10px 8px;
    cursor: pointer;
}

section.testimonial .container .cont .content .name {
    font-size: 18px;
    font-weight: 700;
    color: #075681;
}

section.testimonial .container .cont .content .stars {
    margin: 10px 0;
}

section.testimonial .container .cont .content .stars i.checked {
    color: yellow;
}

section.testimonial .container .cont .content .stars i {
    color: transparent;
}

section.testimonial .container .cont .content p {
    font-size: 14px;
    font-weight: 400;
    color: #0e78b1;
}

section.testimonial .container .cont .content p.message {
    font-weight: 500;
    text-transform: capitalize;
}

section.best-seller {
    height: max-content;
}

section .title {
    font-size: 48px;
}

section.best-seller .options {
    justify-content: center;
    height: max-content;
}

section.best-seller .options .option {
    width: 200px;
    margin: 25px;
    height: 55px;
    border-radius: 20px;
    border: thin;
    background-color: pink;
    color: #0321f4;
    font-weight: 500;
    font-size: 22px;
}

section.best-seller .options .option:hover {
    background-color: purple;
    color: white;
}

section.subscribe {
    width: 100%;
    height: max-content;
}

section.subscribe .swim-horizontal {
    justify-content: space-evenly;
}

section.subscribe .items {
    margin: 5px;
}

section.subscribe .items.email {
    width: 339px;
    height: 50px;
    border: 2px solid #a79d9d;
    padding: 0 5px;
    border-radius: 7px;
}

section.subscribe .items.email input {
    width: 70%;
    height: 85%;
    background-color: transparent;
    border: none;
    outline: none;
}

section.subscribe .items.email button {
    width: 27%;
    height: 90%;
    background-color: transparent;
    border: none;
    outline: none;
    text-align: right;
    cursor: pointer;
}

section.subscribe .items.email button:active i {
    transform: translateX(20px);
}

main footer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: flex-start;
    height: max-content;
    background-color: white;
    border-bottom: 1.2px solid rgba(213, 202, 202, 0.615);
}

main footer .logoCont {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
}

main footer .quickLinksCont {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    list-style-type: none;
}

main footer .quickLinksCont a {
    margin: 5px;
}

main footer .quickLinksCont a:hover {
    color: rgb(255, 81, 0);
    transform: translateX(6px);
}

.preloader {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    color: yellow;
    font-weight: 800;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #de6694, #d5489b, #c329a9, #a50cbc, #7011d2);
    width: 100vw;
    height: 100vh;
    z-index: 250;
}