@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@font-face {
    font-family: 'DreamAvenue';
    src: url('../fonts/Dream-Avenue.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
*::selection{
    background-color: var(--black);
    color: var(--white);
}
:root {
    --white: #ffffff;
    --yellow: #F4DBAB;
    --purple-light: #D5D2FF;
    --blue: #194FA2;
    --purple: #A0A7D0;
    --black: #000;
}
body {
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
p {
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0px;
    color: #212121;
    margin-bottom: 20px;
    font-family: 'League Spartan', sans-serif;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #000;
    
}
a {
    color: var(--black);
    text-decoration: none;
}
a:hover {
    color: var(--dark-blue);
    text-decoration: none;
}
iframe {
    transition: opacity 500ms ease-in-out;
    transition-delay: 250ms;
}
button{
    border: none;
    outline: none;
    box-shadow: none;
    background-color: none;
    background: none;
}
button:focus{
    outline: none;
}
.DreamAvenue{
    font-family: 'DreamAvenue';
}
.text-blue {
    color: var(--blue);
}
.text-yellow {
    color: var(--yellow);
}
.text-purple {
    color: var(--purple);
}
.text-purple-light {
    color: var(--purple-light);
}
.bg-black {
    background-color: #000000;
}
.bg-blue{
    background-color: var(--blue);
}
.bg-purple{
    background-color: var(--purple);
}
.bg-purple-light{
    background-color: var(--purple-light);
}
.w-50px{
    width: 50px;
}
.w-80px{
    width: 80px;
}
.w-100px{
    width: 100px;
}
.w-150px{
    width: 150px;
}
.w-200px{
    width: 200px;
}
.w-250px{
    width: 250px;
}
.w-300px{
    width: 300px;
}
.w-350px{
    width: 350px;
}
.w-400px{
    width: 400px;
}
.h-50px{
    height: 50px;
}
.h-80px{
    height: 80px;
}
.h-100px{
    height: 100px;
}
.h-150px{
    height: 150px;
}
.h-200px{
    height: 200px !important;
}
.h-300px{
    height: 300px !important;
}
.h-400px{
    height: 400px !important;
}
.h-500px{
    height: 500px !important;
}
.fs-7{
    font-size: 0.9rem !important;
}
.fs-8{
    font-size: 0.8rem !important;
}
.fs-9{
    font-size: 0.7rem !important;
}
.fs-10{
    font-size: 0.6rem !important;
}


.section {
    position: relative;
    width: 100%;
    display: block;
}
.section-100 {
    padding: 100px 0;
}
.section-80 {
    padding: 80px 0;
}
.section-70 {
    padding: 70px 0;
}
.section-title h2{
    font-size: 2.8rem;
}
.section-title p{

}
.image-decor{
    right: -60px !important;
}
.btn {
    border-radius: 40px;
    font-size: 1rem;
    padding: 8px 25px;
    font-weight: 300;
    -webkit-transition: all 200ms linear !important;
    transition: all 200ms linear !important;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    text-align: center;
    border: none;
}
.btn:active,
.btn:focus,
.btn:hover {
    outline: none;
    box-shadow: none;
}
.btn.btn-square{
    border-radius: 0px;
}
.btn.btn-big{
    padding: 20px 35px;
}
.btn.btn-small{
    padding: 8px 25px 5px;
    font-size: 14px;
}
.btn-blue{
    color: var(--white);
    background-color: var(--blue);
}
.btn-blue:hover{
    color: var(--white);
    background-color: #1c3760;
}
.btn-purple{
    color: var(--white);
    background-color: var(--purple);
}
.btn-purple:hover{
    color: var(--white);
    background-color: #7e8ad1;
}


/*===============*/
/*  NAV  */
/*===============*/
.cbp-af-header {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: transparent;
    position: relative;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
}
.cbp-af-header.cbp-af-header-shrink {
    position: fixed;
    background-color: var(--black);
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid rgba(23, 23, 23, 0.05);
}
.padding-on-scroll {
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.navbar {
    padding: 0;
}
.navbar-brand {
    position: relative;
    height: 55px;
    display: block;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.navbar-brand img {
    height: 100%;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
}
.navbar-toggler {
    float: right;
    border: none;
    padding: 0;
    transition: color 300ms linear;
}
.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}
.navbar-light .navbar-toggler-icon {
    width: 16px;
    height: 18px;
    background-image: none;
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    margin-right: 7px;
    border-bottom: 2px solid var(--white);
    transform: translateX(8px);
}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 16px;
    position: absolute;
    height: 2px;
    background-color: var(--white);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transform: translateX(-8px);
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after {
    top: 8px;
    width: 24px;
    left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: translateX(-8px) rotate(45deg);
    width: 24px;
    left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translate(-8px, 8px) rotate(-45deg);
    width: 24px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
    transition: all 300ms linear;
}
.nav-item {
    position: relative;
    margin: 5px 15px 10px;
    margin: 0;
    padding: 0;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.navbar-light .navbar-nav .nav-link {
    color: #d7d7d7;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 300;
    line-height: 15px;
    padding: 0 !important;
    margin: 0px 20px;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.nav-link.mPS2id-highlight,
.nav-link:active,
.nav-link:hover {
    color: var(--purple) !important;
}
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--purple);
}
.cbp-af-header.cbp-af-header-shrink .padding-on-scroll {
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .navbar-brand {
    height: 40px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .nav-item {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .nav-link {
    /*color: #959595;*/
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.navbar-expand-xl .navbar-nav .dropdown-menu {
    background-color: #000 !important;
}

/*===============*/
/*  HOME  */
/*===============*/
.header-home {
    height: 100vh;
    background: rgb(213,210,255);
    background: linear-gradient(43deg, rgba(213,210,255,1) 0%, rgba(160,167,208,1) 35%, rgba(25,79,162,1) 100%);
}
.header-home h1{
    font-size: 5rem;
}
.header-home p{
    font-size: 1.5rem;
}
.whatsapp-wrapper{
    border-radius: 7.5px;
    background-color: #d9fdd3;
    padding: 6px 12px 6px 10px;
    width: 336px;
}
.whatsapp-wrapper .ptt-status svg path.ptt-status-background{
    fill: #d9fdd3;
}
.whatsapp-wrapper .ptt-status svg path.ptt-status-icon{
    fill: #111b21b3
}
.whatsapp-wrapper .btn-play{
    width: 30px;
    height: 33px;
}
.whatsapp-wrapper .btn-play button{
    color: #6f8171;
}
.whatsapp-wrapper .duration{
    color: #667781;
    font-size: 11px;
}
.whatsapp-wrapper .hour{
    width: 200px;
    color: #667781;
    font-size: 11px;
    margin: 0 12px 5px 0;
}
.whatsapp-wrapper .hour svg{
    color: #8696a0;
}
input[type="range"] {
    -webkit-appearance: none;
    height: 1.5px;
    background-color: #6f81716e;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: #6f8171;
    cursor: ew-resize;
    box-shadow: 0 0 2px 0 #555;
    transition: background .3s ease-in-out;
}
@keyframes scroll_2 {
    0%   { transform: translateY(0); opacity: 1; }
    25%  { opacity: 1; }
    75%  { transform: translateY(.75em); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}
.scroll-wrapper{
    margin-bottom: 70px;
}
.scroll-icon {
    display: block;
    position: relative;
    height: 60px;
    width: 30px;
    border: 2px solid #fff;
    border-radius: 1em;
}
.scroll-icon__dot {
    display: block;
    position: absolute;
    left: 50%;
    background: #fff;
    height: .5em;
    width: .5em;
    top: .6em;
    margin-left: -.25em;
    border-radius: 50%;
    transform-origin: top center;
    backface-visibility: hidden;
    animation: scroll_2 2s ease-out infinite;
}

/*===============*/
/*  CONTACTO  */
/*===============*/
.cta{
    background-image: url('http://aracarrera.mx/wp-content/uploads/2023/10/aracarrera-08.jpg');
    background-size: cover;
}
.items span{
    padding: 10px;
}
.items span.bg{
    background-color: #f4f7fb;
}


.section-contact{
    padding: 80px 0 50px;
    background: linear-gradient(4deg, rgba(16,54,111,1) 0%, rgba(25,79,162,1) 100%);
}


.form-group {
    margin-bottom: 15px;
}
.form-control{
    width: 100%;
    font-weight: 500;
    color: #000;
    font-size: 14px;
    padding: 15px;
    height: 50px;
    background: #f5f5f5;
    border: 1px solid #f5f5f5;
    border-radius: 4px;
}
.form-control:focus{
    outline: none;
    box-shadow: none;
    border: 1px var(--black) solid;
}
textarea.form-control {
    min-height: 120px;
}
.wpcf7-not-valid-tip {
    font-size: 13px;
}
.wpcf7 form .wpcf7-response-output {
    font-size: 13px;
}
.wpcf7-spinner{
    display: none;
}
.contact-info span{
    display: block;
    color: #000;
    opacity: .5;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
}

/*===============*/
/*  FOOTER  */
/*===============*/
footer .footer-copy{ 
    padding: 30px 0;
    background-color: var(--black);
}
footer .footer-copy p,
footer .footer-copy p a{ 
    color: #727272;
    font-size: 14px;
}
.grecaptcha-badge {
    visibility: collapse !important;
}


@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }
    .nav-item {
        margin: 10px 0;
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 19px;
    }
    .whatsapp-wrapper,
    .scroll-icon {
        margin: 0 auto;
    }
.header-home {
    height: 100svh;
}
.image-decor {
    right: 0px !important;
}
.gallery .shadow-sm{
    height: 200px !important;
}


}

























