@font-face {
    font-family: Roboto-Regular;
    src: url('../fonts/Roboto/Roboto-Regular.ttf');
}

@font-face {
    font-family: Roboto-Medium;
    src: url('../fonts/Roboto/Roboto-Medium.ttf');
}

@font-face {
    font-family: Roboto-Bold;
    src: url('../fonts/Roboto/Roboto-Bold.ttf');
}



:root{
    --primary: #056FF2;
    --primary-alt: #1DFFD9;
    --primary-alt-2: #3E95F9;
    --yellow: #F6F306;
    --red: #F70700;
    --dark: #1e293b;
}


body{
    font-family: Roboto-Regular, sans-serif!important;
    color: var(--primary-alt);
    font-weight: 400;
    overflow-x: hidden;
    background-color: #F7F7F7;
}

::-webkit-scrollbar {
    width: 5px;
    height: 8px;
}

 ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

 ::-webkit-scrollbar-thumb {
    background: var(--primary);
}


h1{
    font-family: Roboto-Regular, sans-serif;
}

label{
    font-family: Roboto-Regular, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.input--agml {
    height: 50px;
}

.ff-poppins{
    font-family: Poppins, sans-serif;
}

.ff-roboto-r{
    font-family: Roboto-Regular, sans-serif!important;
}

.ff-roboto-m{
    font-family: Roboto-Medium, sans-serif!important;
}

.text-primary-alt{
    color: var(--primary-alt);
}

.color-primary{
    color: var(--primary)!important;
}

.color-secondary{
    color: var(--primary-alt)!important;
}


.bg-primary{
    background-color: var(--primary)!important;;
}

.bg-secondary{
    background-color: var(--primary-alt)!important;;
}

.color-yellow{
    color: var(--yellow);
}

.color-red{
    color: var(--red);
}

.color-dark{
    color: var(--dark)!important;
}

.bg-yellow{
    background-color: var(--yellow)!important;
}

.bg-primary{
    background-color: var(--primary)!important;
}

.bg-primary-alt{
    background-color: var(--primary-alt)!important;
}

.bg-primary-alt2{
    background-color: var(--primary-alt2)!important;
}

.bg-transparent{
    background-color: transparent!important;
}

.bg-primary-alt-2{
    background-color: var(--primary-alt-2)!important;
}

.b-radius{
    border-radius: 15px!important;
}

.b-circle{
    border-radius: 50%;
}

.b-radius-xl{
    border-radius: 50px!important;
}


.b-radius-body{
    border-radius: 0 0 15px 15px!important;
}


.b-radius-xl-alt{
    border-radius: 40px!important; 
}

.h-input{
    height: 60px;
}

.fs-xl{
    font-size: 2rem;
}


.fs-xl-2{
    font-size: 3.8rem;
}

.fs-xl-3{
    font-size: 3rem;
}

.hr{
    margin: 3rem 0;
    border-bottom: 3px solid #ccc;
}

.hr-primary{
    border-bottom: 3px solid var(--primary-alt-2);
}

.hr-sm{
    border-bottom: 2px solid #ccc;
}

.w-90{
    width: 90%;
}

.centrar{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.icon-search{
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 1rem;
    padding: 0.8rem;
}

.c-pointer{
    cursor: pointer;
}

/*Modal Efecto*/
.fadeAGML {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.2s linear;
  }
  
  .fadeAGML.show {
    opacity: 1;
    transform: scale(1);
  }



 .btn-cerrar-modal{
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: var(--primary);
     width: 30px;
     height: 30px;
     border-radius: 50%;
     padding: 1rem;
     border: none;
     transition: 0.3s all;
 } 

 .btn-cerrar-modal:hover{
    background-color: var(--primary-alt);
} 


/*****************************/


/*** Navbar Estilos Extra */
.nav-link{
    transition: 0.3s all;
    font-weight: bold;
    text-transform: capitalize!important;
    color: var(--primary);
}

.nav-link:hover{
    transform: scale(1.2);
    color: var(--primary-alt)!important;
}
/***********/



/*** Web estilos superiores */

.bg-navbar-btn{
    padding: 8px 2rem!important;
    background-color: var(--primary-alt);
    border-radius: 50px;
    color: var(--primary)!important;
    text-transform: capitalize!important;
    transition: 0.3s all;
}

.bg-navbar-btn:hover{
    /*transform: rotate(1turn)*/
    transform: scale(1.15);
}

.logo-web{
    position: relative;
    height: 40px;
    transition: 0.3s all;
}


.logo-section{
    display: flex;
    justify-content: space-around;
}
/*************/
.linea-vertical{
    border: 3px solid #fff;
    width: 0;
    height: 100%;
    transition: 0.3s all;
}

.w-minimo{
    width: 1%;
}


.btn-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    transition: 0.3s all;
  }
  .btn-whatsapp i {
      color: #fff;
  }
  .btn-whatsapp:hover {
    transform: scale(1.3);
}

/***************/


.input-tracking{
    width: 100%;
    border-radius: 1.5rem;
    height: 80px;
    text-align: center;
    font-weight: bold;
    border: 2px solid var(--primary-alt);
}


.btn-app {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    border-radius: 25px;
    color: #fff;
    background-color: var(--primary);
    border: none;
    transition: 0.3s all;
}

.btn-app:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    background-color: var(--primary-alt);
}

.hover-efect1{
    transition: 0.3s all;
}

.hover-efect1:hover{
    transform: translateY(-1rem);
}


.hover-efect2{
    transition: 0.3s all;
}

.hover-efect2:hover{
    transform: scale(1.1);
}

.fs-2rem{
    font-size: 2rem;
}


.fs-3rem{
    font-size: 3rem;
}


.fs-4rem{
    font-size: 4rem;
}

.w-60{
    width: 60%;
}

.w-55{
    width: 55%;
}

.text-justify{
    text-align: justify;
}

.fs-18px{
    font-size: 18px;
}

.ff-opensans{
    font-family: OpenSans, sans-serif!important;
}


.color-yellow2{
    color: #F9F205;
}


@media (max-width: 991px) {
    .logo-web{
        height: 30px;
    }
}

@media (max-width: 768px) {
    .fs-xl-3 {
        font-size: 2rem;
    }
    .w-60{
        width: 100%;
    }
 }



ul, li {
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}


.address-list li a:hover{
    color: var(--primary)!important;
}



.fs-xl-1{
    font-size: 1.5rem;
}



section{
    margin-top: 5rem;
}

@media(max-width: 500px){ 
    .fs-xl-1{
        font-size: 1rem;
    }
}
