/**
* Template Name: Maxim - v4.7.0
* Template URL: https://bootstrapmade.com/maxim-free-onepage-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Robotto", sans-serif;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: #1bac91;
  text-decoration: none;
}

a:hover {
  color: #22d8b6;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "sans-serif", sans-serif;
}

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto;
}

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

.text-center {
  text-align: center !important;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: auto;
  padding: 10px;
  /*background: radial-gradient(circle at 50% -10%, rgb(53 138 244), rgb(28 118 214) 45%, rgb(195, 218, 248) 0%);*/
  background: rgb(72 191 238 / 32%);
  background-position: top;
  background-repeat: ;
  position: relative;
  margin-top: 0px;
}

#hero .container {
  z-index: 2;
}

#hero .btn-get-started {
  font-family: "Robotto", sans-serif;
  text-transform: uppercase;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  padding: 15px;
  border-radius: 4px;
  transition: 0.5s;
  border: 0px solid #1ed671;
  color: #dce1e4;
  width: 94%;
  height: 70px;
  background: #33CC99;
  margin: 10px 5px;
  cursor: pointer;
  float: left;
  background-image: url('buttonn.png');
 background-size: cover;
}

#hero .btn-get-started span {
  margin-left: 10px;
  margin-top: 7px;
  display: flex;
  /*flex-direction: column;*/
}

#hero .btn-get-started span small {
  /*float: left;
  font-size: 10px;
  color: #f2f2f2;*/
  padding-left: 3px;
}

#hero img {
  width: 35px;
  border-radius: 50%;
}

#hero .btn-get-started:hover {
  border-color: #CCCC33;
  background: #CCCC33;
  color: #f2f9f8;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-top: 0px;
    height: 100vh;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 22px;
    line-height: 22px;
    margin-top: 20px;
    color: #fff;
  }

  #hero h2 {
    font-size: 14px;
    line-height: 0px;
    margin-bottom: 0px;
    color: #c5c6c9;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f9f8;
}

.section-title {
  padding-bottom: 40px;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #21413c;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {

  padding: 0;
  color: #121111;
  font-size: 14px;
  position: relative;

}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 0px;
  text-align: center;
  font-size: 13px;
  color: #CCCC33;
}

/* Fullscreen background overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  /* Ensures it sits on top of everything */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Class added by JavaScript to make the overlay visible */
.loading-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* The circular animated spinner */
.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #f3f3f3;
  /* Light grey base track */
  border-top: 6px solid #3498db;
  /* Blue spinning accent */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Rotation logic */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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