@charset "UTF-8";
/*
 * :: SisRural | v 1.0 ::
 *
 * By
 *
 *      Marcos Couto Jr.
 *      CEO - System Analist
 *      Arphemj Soluções em TI
 *
 *      13/09/2022
 */
/*
 * :: Imports ::
 */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --green:#00b894;
  --light-green: #55efc4;
  --red:#d63031;
  --light-red: #ff7675;
  --white:#fff;
  --yellow:#fdcb6e;
  --light-yellow:#ffeaa7;
  --blue:#0984e3;
  --light-blue:#74b9ff;
  --orange:#e17055;
  --light-orange:#fab1a0;
  --black:#192a56;
  --light-color:#666;
  --light-bg:#eee;
  --font-color:#555555;
  --border: 1px solid #666;
  --box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
}

* {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: capitalize;
  border: none;
  outline: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 5.5rem;
  scroll-behavior: smooth;
}

section {
  padding: 2rem 9%;
}
section:nth-child(even) {
  background: red;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  font-size: 1.7rem;
  color: #fff;
  background: var(--black);
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0.8rem 3rem;
}
.btn:hover {
  background: var(--green);
  letter-spacing: 0.1rem;
}

/*
 * :: MEDIA QUERIES ::
 */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 50%;
  }
}
/*
 * :: HEADER ::
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: var(--box-shadow);
}
.header .logo {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: bolder;
}
.header .logo i {
  color: var(--green);
  margin-right: 0.5rem;
}
.header .navbar a {
  font-size: 1.7rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  color: var(--light-color);
}
.header .navbar a:hover, .header .navbar a.active {
  color: #fff;
  background: var(--green);
}
.header .icons i, .header .icons a {
  cursor: pointer;
  margin-left: 0.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  width: 4.5rem;
  text-align: center;
  font-size: 1.7rem;
  color: var(--black);
  border-radius: 50%;
  background: #eee;
}
.header .icons i:hover, .header .icons a:hover {
  color: #fff;
  background: var(--green);
  transform: rotate(360deg);
}
.header .icons #menu-bars {
  display: none;
}

/*
 * :: MEDIA QUERIES ::
 */
@media (max-width: 991px) {
  .header {
    padding: 1rem 2rem;
  }
}
@media (max-width: 768px) {
  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding: 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    padding: 1.5rem;
    margin: 1rem 0;
    font-size: 2rem;
    background: #eee;
  }
  .header .icons #menu-bars {
    display: inline-block;
  }
}
/*
 * :: SEARCH FORM ::
 */
#search-form {
  position: fixed;
  top: -110%;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1004;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
#search-form.active {
  top: 0;
}
#search-form #search-box {
  width: 50rem;
  border-bottom: 0.1rem solid #fff;
  padding: 1rem 0;
  color: #fff;
  font-size: 3rem;
  text-transform: none;
  background: none;
  font-weight: 100;
}
#search-form #search-box::placeholder {
  color: #eee;
}
#search-form #search-box::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
#search-form label {
  color: #fff;
  cursor: pointer;
  font-size: 3rem;
}
#search-form label:hover {
  color: var(--green);
}
#search-form #close {
  position: absolute;
  color: #fff;
  cursor: pointer;
  font-size: 3rem;
  top: 2rem;
  right: 3rem;
}

/*
 * :: MEDIA QUERIES ::
 */
@media (max-width: 768px) {
  #search-form #search-box {
    width: 90%;
    margin: 0 1rem;
  }
}
/*
 * :: AUTH-LOGIN ::
 */
.auth-login {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0;
  display: flex;
}
.auth-login .image-container {
  background: transparent;
  flex: 1;
  padding: 3rem;
}
.auth-login .image-container:after {
  content: "";
  position: absolute;
  width: 70rem;
  height: 70rem;
  border-radius: 50%;
  background: var(--green);
  top: -10%;
  left: -10%;
  z-index: -1;
}
.auth-login .image-container img {
  margin-left: 10rem;
  margin-top: 10rem;
  width: 80%;
}
.auth-login .form-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-login .form-container .form-login {
  width: 40rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.auth-login .form-container .form-login .title {
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 1rem;
}
.auth-login .form-container .form-login .input-field {
  max-width: 38rem;
  width: 100%;
  height: 5.5rem;
  background: #f0f0f0;
  margin: 1rem 0;
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: 15% 85%;
  padding: 0 0.4rem;
}
.auth-login .form-container .form-login .input-field i {
  text-align: center;
  line-height: 5.5rem;
  color: var(--black);
  font-size: 2rem;
}
.auth-login .form-container .form-login .input-field input {
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 600;
  color: var(--black);
  text-transform: none;
}
.auth-login .form-container .form-login .input-field input::placeholder {
  color: #aaa;
  font-weight: 500;
}
.auth-login .form-container .form-login .input-field-text {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}
.auth-login .form-container .form-login .input-field-text .box1,
.auth-login .form-container .form-login .input-field-text .box2 {
  flex: 1;
  display: flex;
  align-items: center;
}
.auth-login .form-container .form-login .input-field-text .box1 {
  text-align: left;
}
.auth-login .form-container .form-login .input-field-text .box1 span {
  margin-left: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.auth-login .form-container .form-login .input-field-text .box1 span:hover {
  text-decoration: underline;
}
.auth-login .form-container .form-login .input-field-text .box2 {
  justify-content: end;
}
.auth-login .form-container .form-login .input-field-text .box2 a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
}
.auth-login .form-container .form-login .input-field-text .box2 a:hover {
  text-decoration: underline;
}
.auth-login .form-container .form-login .btn {
  width: 15rem;
  height: 4.9rem;
  margin-top: 2rem;
}

/*
 * :: MEDIA QUERIES ::
 */
@media (max-width: 768px) {
  .auth-login {
    flex-direction: column;
    height: auto;
  }
  .auth-login .image-container {
    padding: 1rem;
  }
  .auth-login .image-container:after {
    width: 30rem;
    height: 30rem;
  }
  .auth-login .image-container img {
    margin-left: 5rem;
    margin-top: 10rem;
    width: 80%;
  }
  .auth-login .form-container {
    margin-bottom: 5rem;
  }
}
/*
 * :: HOME ::
 */
.home {
  padding: 0;
}
.home .home-slider .slide {
  height: 100vh;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  padding: 0 9%;
}
.home .home-slider .slide .content {
  max-width: 70rem;
}
.home .home-slider .slide .content span {
  color: var(--white);
  font-size: 4rem;
  font-weight: lighter;
}
.home .home-slider .slide .content h3 {
  color: var(--white);
  font-size: 9rem;
  line-height: 1;
  text-transform: none;
  padding: 2rem 0;
}
.home .home-slider .slide .content p {
  color: var(--white);
  font-size: 2rem;
  font-weight: normal;
  padding: 0.5rem 0;
  line-height: 1.5;
}
.home .home-slider .slide .content p.small-font {
  font-size: 2.2rem;
  font-weight: 100;
  padding-left: 2rem;
}
.home .home-slider .slide .content .btn {
  margin-top: 2rem;
}

.swiper-pagination-bullet-active {
  background: var(--green);
}

/*
 * :: MEDIA QUERIES ::
 */
@media (max-width: 768px) {
  .home .home-slider .slide .content h3 {
    font-size: 5rem;
  }
}
/*
 * :: FOOTER ::
 */
.footer {
  background: var(--light-bg);
  padding: 5rem 7% 2rem 7%;
}
.footer .footer-content {
  padding: 0;
  background: #eee;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}
.footer .footer-content article {
  padding: 1rem 2rem;
}
.footer .footer-content article h2 {
  font-size: 2rem;
  font-weight: bolder;
  color: var(--black);
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
}
.footer .footer-content article p {
  display: block;
  font-size: 1.5rem;
  color: var(--font-color);
  margin-bottom: 1rem;
  text-transform: none;
}
.footer .footer-content article .menu {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.5rem;
  font-weight: bolder;
  color: var(--green);
}
.footer .footer-content article .menu:hover {
  color: var(--light-green);
}
.footer .footer-copy {
  background: none;
  margin-left: 10rem;
  margin-right: 10rem;
  margin-top: 5rem;
  margin-bottom: 0;
  border-top: 1px solid #ccc;
}
.footer .footer-copy p {
  text-align: center;
  font-size: 1.5rem;
  color: var(--font-color);
  text-transform: none;
}
.footer .footer-copy p a {
  color: var(--green);
}
.footer .footer-copy p a:hover {
  color: var(--red);
}

/*
 * :: MEDIA QUERIES ::
 */
@media (max-width: 768px) {
  .footer .footer-copy {
    margin-left: 0;
    margin-right: 0;
  }
}
