/* Box Sizing Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



/* Reset All Elements */
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,
menu,
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,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Media Elements */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Form Elements */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
}

/* Anchor Tags */
a {
  text-decoration: none;
  color: inherit;
}
a:focus, a:hover {
    text-decoration: none !important;
}

/* List Styling */
ul,
ol {
  list-style: none;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
  display: none;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 6px;
  background-color: #4f6bed;
  z-index: 99999;
}

/* ===============================
   Container Responsive Layout
================================= */


@media (min-width: 1540px) {
  .container {
    max-width: var(--container-xxl);
    padding: 0;
  }
}
@media (max-width: 1080px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 100%;
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}

@media (max-width: 700px) {
    .container,
  .container-md,
  .container-sm {
    max-width: 100%;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
