:root {
    --primary: #BDE5E5;
    --text: #655a70;
    --dark: #403143;
    --secondary: #e2e7ff;
    --light-pink: #ffd9d9;
    --blue: #1e53ff;
    --dark-blue: #203dcd;
    --bg-blue2: #294aeb;
    --light-blue: #bcc7ff;
    --light-blue2: #beb7ff;
    --light-blue3: #99B0B9;
    --bg-blue: #d3dcff;
    --gray-blue: #c8e7ea;
    --light-pink-bg: #ffd5d8;
    --dark-pink: #eaa4a4;
    --dark-violet: #5e1a78;
    --dark-choclate: #655a70;
    --rhythm: #7a6e92;
    --lavender: #C7BDCE;
    --english-violet: #4E4460;
    --digital-pink: #FFCCD2;
    --digital-blue: #CBE0E7;
    --digital-coffe: #685771;
    --coral-blue: #B9DBE4;
    --media-bg: #e4d8d0;
    --transit-bg:#9993AE;
}

.carousel-control-next,
.carousel-control-prev {
    background: var(--dark-choclate);
}

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

*,
::after,
::before {
    box-sizing: border-box;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-weight: 400;
}

ul,
ol,
ul li,
ol li {
    list-style: none;
}

a {
    text-decoration: none;
}

.team-member::-webkit-scrollbar {
    height: 6px;
}

.team-member::-webkit-scrollbar-track {
    background: #ffffff1c;
}

.team-member::-webkit-scrollbar-thumb {
    background: #8210d5;
}

.team-member::-webkit-scrollbar-thumb:hover {
    background: #520a94;
}

html {
    font-size: 2.666667vw;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html body {
    font-family: "Mongoose", sans-serif;
    font-weight: normal;
    scroll-behavior: smooth;
    background-color: white;
    position: relative;
}

.full-screen {
    height: calc(100vh - 0px);
}

.img-postion-right {
    object-position: right;
}

.img-postion-left {
    object-position: left;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.position-relative {
    position: relative;
}

.d-none {
    display: none !important;
}

.page-name-logo {
    position: fixed;
    top: 78px;
    left: -79px;
    z-index: 2;
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    /* width: 3.5rem; */
}

.page-name-logo .logo-text {
    animation: rotate 10s infinite linear;
    color: var(--text);
    width: 100%;
}

.bold {
    font-weight: bold;
}

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

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

.spinning-top {
    position: absolute;
    color: var(--text);
    width: 160px;
    padding: 30px;
    /* width: 100%; */
}

.footer-bottom a {
    color: #ff8f8f;
}

@media (min-width: 768px) {
    .d-none {
        display: none !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-none {
        display: none !important;
    }
}