@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');
@import url('custom.css');
@import url('magnatic-cursor.css');
/* font-family: 'Fredoka', sans-serif; */
/*

# BASE
# SECTION
# HEADER
# BANNER
# ABOUT
# THEMES
# EXTENSIONS
# FOOTER

 */

/* # BASE */

body {
  font-family: 'Fredoka', sans-serif;
  color: #231f20;
}

::-moz-selection{ color: #fff; background:#ff6600; }
::-webkit-selection{ color: #fff;	background:#ff6600; }
::selection{ color: #fff;	background:#ff6600; }

a {
  color: #2081f9;
}

footer {
  background-color: #f7f7f8;
}

.card,
.btn {
  border-radius: .5rem;
}

.btn-primary {
  background-color: #2081f9;
  border-color: #2081f9;
  box-shadow: 0 0 0 0 rgba(34,36,38,.15) inset;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0066ff;
  border-color: #0066ff;
}

.btn-danger {
  background-color: #db2828;
  border-color: #db2828;
  box-shadow: 0 0 0 0 rgba(34,36,38,.15) inset;
}

.btn-danger:hover {
  color: #fff;
  background-color: #d01919;
  border-color: #d01919;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #2081f9;
  color: #ffffff;
}

/* # SECTION */

.xl-section {
  min-height: 900px;
}
.lg-section {
  min-height: 800px;
}
.md-section {
  min-height: 600px;
}
.sm-section {
  min-height: 400px;
}
.xs-section {
  min-height: 300px;
}

/* # HEADER */

header .bg-light {
  background-color: #ffffff !important;
  border-bottom: 1px solid #dddddd;
}

header .navbar-expand-lg .navbar-nav .nav-link {
  letter-spacing: 0.025rem;
  font-size: 1.125rem;
  color: #231f20;
}

header .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  position: relative;
  top: 3px;
}

/* # BANNER */
.banner-section {
  background-image: url('../images/wave-banner-1.png');
  background-repeat: no-repeat;
}

.banner-section .banner-section-text {
  /* padding: 110px 0; */
  padding: 175px 0;
}

/* # ABOUT */
.about-content {
  padding: 0 150px;
}
/* # THEMES */
.item .card-img-top {
  padding: 1rem;
}
/* .item .card-body {
  padding: 1rem 0;
} */

/* # EXTENSIONS */

/* # FOOTER */
.footer-inner {
  padding: 50px 0 20px;
}

#toTop {
  padding: 10px 15px;
  margin: 20px;
  border-radius: 8px;
  border: 1px solid #FF6600;
  background-color: #FF6600;
  color: #fff;
  position: fixed;
  cursor: pointer;
  text-decoration: none;
  bottom: 0;
  right: 5px;
  display: none;
  opacity: 0.8;
  z-index: 5;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
}

#toTop:hover {
  border: 1px solid #2081f9;
  background-color: #2081f9;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
}
