* {
    --PrimaryColor1: #694DFF;
    --PrimaryColor2: #641ADD;
    --PrimaryColor3: #3A1D80;
    --PrimaryColor4: #4772FF;
    --PrimaryColor5: #090A3B;
    --PrimaryColor6: #000000;
    --PrimaryColor7: #FFFFFF;
}

a[x-apple-data-detectors],
a[x-apple-data-detectors] * {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
}


html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    overflow-x: hidden;
}

button {
    border: none;
}

a {
    text-decoration: none !important;
    color: #fff;
}

a, p, label, button, h1, h2, h3, h4, h5, h6, span {
    font-family: 'Poppins' !important;
}

/*PageHero*/

.page-hero {
    width: 100%;
    min-height: 30rem;
    margin: 0 auto;
    margin-top: 3rem;
    border-radius: 1.3rem;
    background-repeat: no-repeat;
    display: flex;
}

@media (max-width: 950px) {
    .page-hero {
        width: 95%;
    }
}

/*InformativeSection*/
.informative-section-container {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: 1rem 0.8rem;
    border-radius: 1rem;
    transition: all 0.2s ease-in-out;
    width: 50%;
}

    .informative-section-container:hover {
        box-shadow: 0px 6px 10px #5554;
        transform: translateY(-4px);
    }

.informative-icon {
}

.informative-title {
    color: var(--PrimaryColor6);
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
}

.informative-p {
    text-align: justify;
    font-size: 1rem;
    width: 96%;
    color: var(--PrimaryColor6);
    margin: 0;
}

.informative-items-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.informative-item {
    display: flex;
    gap: 1rem;
}

.informative-item-icon {
    width: 25px;
    height: 25px;
}

@media (max-width: 950px) {
    .informative-section-container {
        width: 100% !important;
    }
}

/*BoxInformation*/
.box-content-container {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.box-item {
    box-shadow: 0px 7px 10px #5554;
    padding: 1rem 2rem;
    width: 45%;
    border-radius: 0.6rem;
    height: 14rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.3rem;
    transition: all 0.2s ease-in-out;
}

    .box-item:hover {
        transform: translateY(-4px);
    }

.box-item-icon {

}

.box-item-text {
    color: var(--PrimaryColor6);
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
}