body {
    font-family: 'Montserrat', sans-serif;
}

.font-title{
    font-size: 60px;
}

.line-title {
    margin: 20px 0px;
    height: 10px;
    width: 50%;
    background-color: #FBE65F;
}

.bg-pink {
    background-color: #F73D5A;
}

.bg-gray {
    background-color: #F2F2F2;
}

.bg-black {
    background-color: #1D1D1D;
}

.c-green {
    color: #1BA47E;
}

.c-gray {
    color: #707070;
}

.c-gray-light {
    color: #BBBBBB;
}

.c-pink {
    color: #FB3D5B;
}

.c-yellow {
    color: #FBE65F;
}

.text-pos{
    display: inline-block;
    position: absolute;        
    top: 25%;
    left: 6%;
}

.nav.nav-pills .nav-item button{
    
    background-color: transparent;
    color: black;

}
.nav.nav-pills .nav-item button.active {
    
    border-bottom: 2px solid #F73D5A;

}

.input-contact{
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #707070;
    outline: none;
    background: transparent;

}

.login-box .user-box {
    position: relative;
}

.login-box .user-box input {
    width: 100%;    
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #707070;
    outline: none;
    background: transparent;
}

.login-input {
    width: 100%;    
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #707070;
    outline: none;
    background: transparent;
}


.login-box .user-box textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #707070;
    outline: none;
    background: transparent;
}

.user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;    
    font-size: 16px;
    letter-spacing: 2px;
    color: #9E9E9E;
    pointer-events: none;
    transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label
 {
    top: -20px;
    left: 0;
    color: #000;
    font-size: 12px;
}

.login-box .user-box textarea:focus ~ label {
    top: -20px;
    left: 0;
    color: #000;
    font-size: 12px;
}

.pos-image-t {
    position: absolute;
    top: 0;
    right: 0;
}

.pos-movil-t {        
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;

}


.label-contact {
    font-size: 16px;
    letter-spacing: 2px;
    color: #9E9E9E;
    pointer-events: none;
}

.pos-image-b {
    position: absolute;
    bottom: 0;
    left: 0;
}

.pos-movil-b {
    position: absolute;
    bottom: 0;
    left: 0;
}

.text-contact {
 font-size: 50px;

}

.icon-w {
    height: 21px;    
}

/********** BUTTON  **********/

.arrow-button {
    display: flex;
    color: black;
    margin: 0 auto;
    background-color: #ffff;
    padding: 7px 13px;
    border-radius: 20px;
    border: 1px solid black;
    transition: all .3s ease;
    font-weight: bold;
    cursor: pointer;
    align-items: center;
    font-size: 14px;
}

.arrow-button > .arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    position: relative;
    transform: rotate(-45deg);
    margin: 0 6px;
    transition: all .3s ease;
}

.arrow-button > .arrow::before {
    display: block;
    background-color: black;
    width: 3px;
    transform-origin: bottom right;
    height: 2px;
    position: absolute;
    opacity: 0;
    bottom: calc(-2px / 2);
    transform: rotate(45deg);
    transition: all .3s ease;
    content: "";
    right: 0;
}

div.active #card,
div.active #card .arrow-button {
    background: #eee ;
}


#card:hover .arrow-button > .arrow {
    transform: rotate(-45deg) translate(4px, 4px);
    border-color: black;
}

#card:hover .arrow-button > .arrow::before {
    opacity: 1;
    width: 8px;
}

#card:hover,
#card:hover .arrow-button {
    background: #eee ;
}




@media (max-width: 1400px) {
    .font-title{
        font-size: 50px;
    }    
}

@media (max-width: 1000px) {
    .font-title{
        font-size: 30px;
    }

    #card .arrow-button > .arrow {
        transform: rotate(-45deg) translate(4px, 4px);
        border-color: black;
    }
    
    #card .arrow-button > .arrow::before {
        opacity: 1;
        width: 8px;
    }

    .line-title {
        margin: 20px 0px;
        height: 7px;        
    }
    
    .text-pos{        
        top: 20%;        
    }
    
    .logo-w{
        width: 200px;
    }
    
}

@media (max-width: 769px) {
    .font-title{
        font-size: 40px;
    }

    .line-title {
        margin: 20px 0px;
        height: 7px;        
    }
    
    .text-pos{        
        top: 20%;        
    }
    .text-contact {
        
        font-size: 30px;

    }
   
    
    .logo-w{
        width: auto;
    }

}

@media (max-width: 490px) {

    .text-contact {
        position: absolute;
        top: 4%;
        left: 19%;       
        font-size: 28px; 

    }
   

}


