:root {
  --color1: #d7ae54;
  --color2: #f76374;

  --color4: #7e0d0b;

  --color6: #362f30;
  --color7: #6c7474;
  --color8: #ffff;
  --color9: black;
  --color10: #fff212;
  --color11: #ebd982;
  --color12: #f1f1f1;
}

@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,600;1,700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,800;0,900;1,800&display=swap");
@font-face {
  font-family: "Nunito-Bold";
  src: url(http://localhost/fleming/assets/fonts/Nunito-Black.ttf);
}

@font-face {
  font-family: "Nunito-SemiB";
  src: url(http://localhost/fleming/assets/fonts/Nunito-SemiBold.ttf);
}

body {
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  color: #353535;
}

h1,
h2,
h3,
h4 {
  /* font-family: 'Mulish', sans-serif; */
  color: var(--color1);
  font-family: "Nunito", sans-serif;
}
/* h1{
    color:var(--color1);
    font-weight:bold;
    font-family: 'Nunito', sans-serif;
} */
#header {
  /* box-shadow: 0 3px 3px #cacaca; */
  background: transparent;
}

#header .barsup {
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--color1);
  padding: 6px 8%;
}

#header .barsup a {
  font-size: 14px;
  font-weight: bold;
  color: white;
}

#header .barsup a:hover {
  color: var(--color3);
}

#header nav.navbar {
  padding: 14px 7%;
  background-color: rgba(0, 0, 0, 0.5);
}

#header a.nav-link {
  font-weight: bold;
  font-size: 15.5px;
  color: white;
}

#header a.nav-link.active {
  color: var(--color3);
}

#header a.dropdown-item {
  padding-top: 7px;
  padding-bottom: 7px;
}

#header a.dropdown-item:hover {
  color: #951310;
  background-color: var(--color3);
}

#footer .barinf {
  font-size: 14.5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 6px 8%;
  color: #7e0d0b;
  background-color: var(--color1);
}

#footer a {
  color: #7e0d0b;
}

#logotipo {
  height: 62px;
}

h1.linea,
h2.linea {
  position: relative;
  z-index: 1;
}

h1.linea:before,
h2.linea:before {
  border-top: 2px solid black;
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 98%;
  z-index: -1;
}

h1.linea span,
h2.linea span {
  background: #fff;
  padding: 0 25px;
}

.text-justify {
  text-align: justify;
}

.btn {
  font-family: "Mulish", sans-serif;
  padding: 8px 30px;
  border-radius: 2em;
  color: white;
}

.btn-warning:hover {
  background: var(--color4);
  color: white;
}
#imageborder {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-radius: 7px;
  height: 360px;
  object-fit: cover;
}

@media only screen and (max-width: 700px) {
  .btn {
    width: 150px;
    padding: 7px 8px;
    border-radius:10px;
    margin-right: 10px;
    
  }
  #logotipo {
    height: 50px;
  }

  #header .barsup {
    padding: 4px 3%;
  }

  #header nav.navbar {
    padding: 10px 4%;
  }

  #footer .barinf {
    padding: 6px 3%;
  }
}

#pre-load {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  transition: opacity 1s;
}

#pre-load.fade {
  opacity: 0;
}

#circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
}

.loader {
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  border: 4px solid #fff;
  border-top: 4px solid #f7595a;
  border-radius: 50%;
  animation: rotate 3.5s linear infinite;
}

.loader2 {
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  border: 4px solid #fff;
  border-top: 4px solid #362f30;
  border-radius: 50%;
  animation: rotate 3.5s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
