@font-face {
    font-family: gilroyExtraBold;
    src: url(./font/Gilroy-ExtraBold.otf);
}
@font-face {
    font-family: gilroyBold;
    src: url(./font/Gilroy-Bold.ttf);
}
@font-face {
    font-family: gilroyHeavy;
    src: url(./font/Gilroy-Heavy.ttf);
}
@font-face {
    font-family: gilroyMedium;
    src: url(./font/Gilroy-Medium.ttf);
}
@font-face {
    font-family: gilroyRegular;
    src: url(./font/Gilroy-Regular.ttf);
}
@font-face {
    font-family: gilroyLight;
    src: url(./font/gilroy-light.otf);
}

body{
    padding: 0;
    margin: 0;
    height: 100vh;
}

.announce{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #002850;
    padding-right: 90px;
}

@media screen and (max-width: 768px){
    .announce{
        padding-right: 0;
        justify-content: center;
        height: 2vh;
        min-height: 22px;
    }
}

.announce p{
    margin: 0;
    font-family: gilroyLight;
}

@media screen and (max-width: 768px){
    .announce p{
        font-size: 10px;
        text-align: center;
    }
}

.announce div{
    font-size: 14px;
    margin-left: 28px;
    color: white;
    font-family: gilroyLight;
}

@media screen and (max-width: 768px){
    .announce div{
        font-size: 10px;
        margin-left: 10px;
    }
}

.announce div span{
    color: white;
    font-family: gilroyBold;
}


header div p{
    display: inline;
    color: white;
    font-size: 14px;
}

.announce div img{
    width: 14px;
    margin-right: 5px;
}
@media screen and (max-width: 768px){
    .announce div img{
        width: 10px;
        margin-right: 0;
    }
}

.announce a {
    text-decoration: none;
    color: white;
}

.nav{
    display: flex;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 12px -7px;
}
@media screen and (max-width: 768px){
    .nav{
        height: 8vh;
    }
}

.nav div{
    display: flex;
    justify-content: space-evenly;
    padding: 5px 0;
    width: 90%;
}

@media screen and (max-width: 768px){
    .nav div{
        justify-content: space-between;
    }

    .nav div .burger div{
        padding: 0;
    }
}

.nav img{
    width: 273px;
    height: 65.7px;
}

@media screen and (max-width: 768px){
    .nav img{
        width: auto;
        height: 100%;
    }
}

.nav ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-right: 22px;
}

.nav ul li{
    display: flex;
    align-items: center;
    margin-right: 22px;
    color: #002850;
    font-family: gilroyMedium;
    font-weight: 600;
    font-size: 16px;
}

.nav ul li:hover{
    background-image:url("https://enviguz.com.mx/wp-content/uploads/2020/06/Grupo-980@2x.png");
    background-size: contain;
    background-position: 50% 50%;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

.nav ul li a{
    text-decoration: none;
    color: #002850;
}

.nav div .half:first-of-type{
    display: flex;
    justify-content: start;
    width: 50%;
}

.nav div .half:last-of-type{
    display: flex;
    justify-content: flex-end;
    width: 50%;
}
@media screen and (max-width: 768px){
    html, body {
        position:relative;
        overflow-x:hidden;
        overflow-y: hidden;
      }

    .nav div .half:last-of-type{
        position: absolute;
        right: 0;
        height: 89vh;
        top: 10vh;
        align-items: start;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        background-color: white;
        z-index: 40;
    }

    .nav ul{
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        height: 50%;
    }

    .nav ul li{
        opacity: 0;
    }

    header{
        z-index: 18;
    }
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px, -6px);
}

.burger{
    display: none;
}

@media screen and (max-width: 768px){
    .burger{
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .nav .menu{
        display: block;
    }
}

.nav-active{
    transform: translateX(0%) !important;
}

.menu div{
    width: 25px;
    height: 3px;
    background-color: #002850;
    margin: 5px;
    transition: all 0.3s ease;
}

h1{
    margin-top: 40px;
    font-size: 30px;
    color: #006FBA;
    font-family: gilroyExtraBold;
    text-align: center;
}
@media screen and (max-width: 768px){
    h1{
        margin-top: 20px;
        font-size: 24px;
    }
}

h3{
    font-family: gilroyLight;
    color: #002850;
    font-size: 20px;
    text-align: center;
}
@media screen and (max-width: 768px){
    h3{
        font-size: 16px;
    }
}

hr{
    height: 4px;
    background-color:#002850;
    width: 90%;
}
@media screen and (max-width: 768px){
    hr{
        display: none;
    }
}

.dimmer{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    top: 11vh;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    transition: opacity 600ms, visibility 600ms;
}

.pasos ul{
    list-style: none;
    display: flex;
    justify-content: center;
    font-size: 20px;
    color: #949494;
    padding-left: 0;
    font-family: gilroyMedium;
}

.pasos li{
    border-bottom: solid 3px #949494;
    padding: 5px;
    margin-right: 22px;
}

@media screen and (max-width: 768px){
    .pasos li{
        display: none;
    }
}

.pasosli:last-of-type{
    margin-right: 0;
}

.pasos{
    margin: 0 auto;
    margin-top: 35px;
    width: 80%;
}

@media screen and (max-width: 768px){
    .pasos{
        
    }
}

.servicio h3{
    font-size: 18px;
    text-align: left;
    text-transform: uppercase;
    font-family: gilroyExtraBold;
}

.servicio label{
    font-size: 18px;
    font-family: gilroyLight;
}

.activo{
    color: #006FBA;
    border-bottom: solid 3px #006FBA;
    font-family: gilroyBold;
}

@media screen and (max-width: 768px){
    .activo{
        display: block !important;
        margin: 0 !important;
    }
}

.top{
    width: 90%;
    margin: 0 auto;
}

.formulario{
    color: #002850;
    width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
}

.formulario h3{
    font-family: gilroyExtraBold;
    text-align: left;
}

.dir-two{
    display: flex;
}

@media screen and (max-width: 768px){
    .dir-two{
        flex-direction: column;
        align-items: center;
    }
}

.first-half{
    width: calc(50% - 40px);
    margin-right: 40px;
}

@media screen and (max-width: 768px){
    .first-half{
        width: calc(100%);
        margin-right: 0;
    }
}

.second-half{
    width: calc(50% - 40px);
    margin-left: 40px;
}

@media screen and (max-width: 768px){
    .second-half{
        width: calc(100%);
        margin-left: 0;
    }
}

.ofy-unset{
    overflow-y: unset;
}

@media screen and (max-width: 768px){
    .formulario{
        margin-top: 35px;
        margin-bottom: 15vh;
        width: 90%;
    }
}

.datos .input{
    color: #6C6C6C;
    display: flex;
    justify-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    border: solid 1px #70707038;
    border-radius: 19px;
    font-size: 18px;
    width: 340px;
    padding: 5px 10px;
}

.input{
    color: #6C6C6C;
    display: flex;
    justify-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    border: solid 1px #70707038;
    border-radius: 19px;
    font-size: 18px;
    width: 340px;
    padding: 7px 0;
}

input[type="date"],
select{
    color: #6C6C6C;
    display: flex;
    justify-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    border: solid 1px #70707038;
    border-radius: 19px;
    font-size: 18px;
    max-height: 35px;
    width: 100%;
    padding: 5px 10px;
    margin-top: 10px;
    box-sizing: border-box;
    font-family: gilroyMedium;
}

@media screen and (max-width: 768px){
    input[type="date"],
    select{
        width: 100%;
    }
}

.serv-ad span{
    display: inline;
    font-family: gilroyMedium;
    font-size: 18px;
}

input[type="number"]{
    color: #6C6C6C;
    display: inline;
    justify-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    border: solid 1px #70707038;
    border-radius: 19px;
    font-size: 18px;
    max-height: 35px;
    padding: 5px 10px;
    box-sizing: border-box;
    font-family: gilroyMedium;
    
}

input[type="number"]:focus{
    outline: none;
}

label{
    font-size: 18px;
    margin-right: 15px;
}

.inventario{

}

.contenedor-boton{
    display: flex;
    justify-content: center;
}

.boton-siguiente{
    font-family: gilroyBold;
    color: white;
    background: #7CBA00;
    border: none;
    border-radius: 22px;
    height: 40px;
    width: 70%;
    max-width: 223px;
    margin: 0 auto;
    font-size: 20px;
    outline: none;
}

.boton-siguiente:hover{
    cursor: pointer;
    background-color: #7CB000;
}

.inline{
    display: flex;
    align-items: center;
}

.boton-redondo{
    position: relative;
    color: white;
    background-color: #006FBA;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    outline: none;
}

.boton-redondo:hover{
    cursor: pointer;
}

.mas{
    right: 25px;
}

.menos{
    left: 25px;
}

.articulo-inventario{
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.contador{
    color: #6C6C6C;
    display: flex;
    justify-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    border: solid 1px #70707038;
    border-radius: 19px;
    font-size: 18px;
    width: 80px;
    padding: 7px 0;
}

.mueble{
    color: #6C6C6C;
    background-color: #F5F5F5;
    border: solid 1px #70707038;
    border-radius: 19px;
    font-size: 18px;
    width: 238px;
    padding-left: 22px;
    padding-top: 7px;
    padding-bottom: 7px;
    box-sizing: content-box;
    font-family: gilroyMedium;
}

.oculto{
    display: none;
}

.dimmer-oculto{
    visibility: visible;
    opacity: 1;
}

.accordion {
    background-color: white;
    color: #002850;
    cursor: pointer;
    padding: 8px 2px;
    width: 100%;
    border: none;
    border-radius: 0px;
    border-bottom: solid 3px #006FBA;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    margin-bottom: 28px;
  }

  .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }

  .active:after {
    content: "\2212";
  }

  .panel {
    display: flex;
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  @media screen and (max-width: 768px){
    .panel {
        flex-direction: column;
        width: 100%;
        padding-left: 9px;
    }
} 