.clearfix {
    clear: both;
}

.border-none {
  border: none;
}

/*LIST STYLE */
.inline-block {
    display: inline-block;
    padding: 0 15px;
}

.hideme {
    display: none;
}

.loadscreen:before {
    position:fixed;
    padding:0;
    margin:0;

    content: "";

    z-index: 3001;
    width: 100%;
    height: 100%;
    background:#fff;
    background-image: url("../assets/load.gif");
    background-repeat: no-repeat;
    background-position: center center;
}

.custom_underline_span {
    text-decoration: underline;
    text-decoration-color: #8757E3;
    color: #8757E3;
}


.custom_underline {
    position: relative;
    color: #5972B6;
    text-decoration: none;
    font-weight: 600;
}

.custom_underline:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #5972B6;
    color: #5972B6;
    border-radius: 10px;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.custom_underline:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* WIDTH STYLE */
.width-full {
  width: 100%;
}
.width-half {
  width: 50%;
}
.width-quarter {
  width: 25%;
}

/* POSITION STYLE */
.fixed {
  position: fixed;
}
.sticky {
    position: sticky;
}
.relative {
  position: relative;
}
.position-initial {
  position: initial;
}
.position-fixed {
    position: fixed;
}
.in-line {
  display: inline-block;
}


/* SCROLLING STYLE */
.no-scroll {
  overflow: hidden;
}
.scroll-container {
  overflow: scroll;
  height: 100vh;
  overflow-x: hidden;
}
.scroll-container::-webkit-scrollbar {
  width: 5px;
}
.anchor-links {
  padding-top: 2em;
  margin-top: -2em;
}


/* MEDIA STYLE */
.img-center,
.media-center {
    display:block;
    margin:auto;
}
.radius-sm {
    border-radius: 2px;
}
.gif {
  border: 2px solid #F0F0F0;
  border-radius: 5px;
  box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, .15);
}


@media (max-width: 768px) {

}
@media (max-width: 991px) {

}
@media (min-width: 992px) {

}
