html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*---------------my-css--------*/

/*---navbar---------*/

.mynav {
    background: #fff;
    color: #000 !important;
}

.mynav svg {
    width: 1rem;
}

.navbar-img {
    height: 2rem;
}

.user-profile {
    width: 50px;
    margin: 0 auto;
}

.user-profile img {
    width: 100%;
    border-radius: 50%;
}

.my-dropdown-w {
    min-width: 14rem !important;
}

.my-align {
    align-items: center;
}

.user-b {
    box-shadow: 0 4px 20px 1px rgb(0 0 0 / 6%), 0 1px 4px rgb(0 0 0 / 8%);
    padding: 10px;
    border-radius: 7px;
    height: 100px;
}

.user-b i {
    font-size: 19px;
    color: red;
}

/*--------service-box------------*/

.service-main-box {
    box-shadow: 0 4px 20px 1px rgb(0 0 0 / 6%), 0 1px 4px rgb(0 0 0 / 8%);
    padding: 20px 10px;
}

.service-box {
    box-shadow: 0px 1px 15px 5px rgb(0 0 0 / 20%);
    border-radius: 15px;
    padding: 15px;
    background: linear-gradient(138deg, #e04e00, #311f41, #65452a);
    position: relative;
    overflow: hidden;
    transition: transform .3s ease-in-out;
}

.service-box .number {
    position: absolute;
    right: 0px;
    bottom: -13px;
    font-size: 88px;
    font-weight: 900;
    font-family: "Red Hat Display", sans-serif;
    line-height: 1;
    color: rgba(165, 183, 210, 0.2);
    z-index: 1;
    pointer-events: none;
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 20px;
    border: 3px solid #fff;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon-box img {
    width: 50px;
    transition: transform .3s ease-in-out;
}

.service-box a {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.service-box:hover .icon-box img {
    transform: scale(1.2);
}

.user-img {
    height: 2rem;
}

.head-bg {
    background: linear-gradient(138deg, #e04e00, #311f41, #65452a);
}

.fs-14 {
    font-size: 14px;
}

.lh-4 {
    line-height: 1.4;
}

.logo-w {
    height: 3rem;
}

.my-btn {
    background: linear-gradient(238deg, #280071, #B01C56);
}

.my-btn:hover {
    background: transparent;
    border: 1px solid #280071;
    color: #3f82e7 !important;
}

.carousel-inner-h {
    height: 400px;
}

.my-dropdown-item:hover {
    background: linear-gradient(238deg, #280071, #B01C56);
    color: #fff !important;
}

.bg-wave {
    background: linear-gradient(238deg, #280071, #B01C56);
    transform: rotate(180deg);
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -48px;
    min-height: 100px;
    max-height: 150px;
}

.parallax>use {
    animation: my-wave 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes my-wave {
    0% {
        transform: translate3d(90px, 0, 0);
    }
    100% {
        transform: translate3d(-85px, 0, 0);
    }
}

.slider-h {
    height: 250px;
    object-fit: contain;
}

.databtn {
    background: #520868;
    border: 1px solid #520868;
    border-radius: 3px;
    transition: all 0.3s
}

.fa-repeat {
    color: #fff !important;
}

.databtn:hover {
    background: transparent;
}

.databtn:hover .fa-repeat {
    color: #520868 !important;
}