/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Resets */

::selection {
  background-color: #f3c148;
  color: #bd3632;
}

/*scroll bar*/
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #f3c148;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f3c148;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.img-fluid {
  width: 100%;
}

.noPadding {
  padding: 0;
}

.row {
  padding: 0 !important;
  margin: 0 !important;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

section.noPadding {
  padding: 0em 0;
}

/* Fonts */
/* Fonts */
body,
input,
textarea,
select {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-display: swap;
}

h1 {
  font-size: clamp(1.5rem, 1.44rem + 0.3vw, 1.8rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 1.44rem + 0.3vw, 1.8rem);
}

h3 {
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.3rem);
}

h3 span {
  font-weight: 700;
}

p,
li,
label {
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1.1rem);
}

label {
  font-weight: 500;
}

.smallTxt {
  font-size: 0.7em;
  text-align: center;
}

/* links */
a {
  color: #f3c148;
  text-decoration: underline;
  transition: color 0.3s;
  font-weight: 500;
}

a:hover,
a:active,
a:focus {
  color: #fff !important;
}

/* Buttons */
.btn {
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.4s, border 0.3s;
  position: relative;
  transition: color 0.3s, background-color 0.3s;
  text-transform: none !important;
  -webkit-border-radius: 0.4em;
  -ms-border-radius: 0.4em;
  -o-border-radius: 0.4em;
  border-radius: 0.4em;
  background-color: #f3c148;
  color: #000;
}

.btn:hover {
  background-color: #000;
  color: #fff;
}

/*Landing page*/
header,
footer {
  background-color: initial !important;
}

.wrapLanding {
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  min-height: 100dvh;
  background-image: url(https://image.mkt.sultanes.com.mx/lib/fe3711747364057d771476/m/1/52570c34-6480-4627-ba3b-37b70fb2a75f.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: fixed;
}

.wrapLanding::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0, 4, 8);
  background: linear-gradient(
    0deg,
    rgba(0, 4, 8, 1) 0%,
    rgba(0, 7, 14, 1) 26%,
    rgba(0, 30, 65, 1) 100%
  );
  opacity: 0.9;
  z-index: 1;
}



.logotipo {
  max-width: 200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.banner {
  max-width: 200px;
  width: 100%;
  filter: drop-shadow(0 0 10px #000000);
  position: relative;
  z-index: 2;
}



.wrapLanding h1,
.wrapLanding h3 {
  color: #ffbd61;
  position: relative;
  z-index: 2;
}

.wrapLanding p {
  color: #fff;
  position: relative;
  z-index: 1;
}



.bg-form {
  background-color: #010c19da;
  border-radius: 1rem;
  box-shadow: 0 0 5px #000;
  position: relative;
  z-index: 2;
}


/*------ ACCORDION FAQS ------- */
.accordion-item{
  border: 0;
  background-color: transparent;
}
.accordion-button, .accordion-item:first-of-type .accordion-button{
  border-radius: .5rem;
}

.accordion .accordion-item .accordion-button{
    background-color: #042142;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-weight: 600;
}

.accordion-button:not(.collapsed){
  color: #f3c148 !important;
}

.accordion-button::after{
  background-image: url(https://image.mkt.sultanes.com.mx/lib/fe3711747364057d771476/m/1/36ca3d53-5da3-4d40-9eb9-dd4e6c744595.png);
}

.accordion-button:not(.collapsed)::after{
  background-image: url(https://image.mkt.sultanes.com.mx/lib/fe3711747364057d771476/m/1/aa120e13-c05a-400e-9df9-35d57517c3eb.png);
}






/*------ LOADER------ */

.loader {
  /* propiedades del eleemto div */
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;

  /* posiionamiento */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;

  /* colores */
  background: rgb(0, 4, 8);
  background: linear-gradient(
    0deg,
    rgba(0, 4, 8, 1) 0%,
    rgba(0, 7, 14, 1) 26%,
    rgba(0, 30, 65, 1) 100%
  );

}

.loader img{
  /* ANIMACION */
  -webkit-animation: puff-in-center 1s cubic-bezier(0.47, 0, 0.745, 0.715) both;
  animation: puff-in-center 1s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
