.biotek-sales p {
    font-weight: bold;
    width: 50%;
    max-width: 350px;
}

.biotek-sales input {
    height: 40px;
    font-size: 16px;
    padding: 0px 40px;
    transition: all .3s linear;
}

.biotek-sales .custom-input {
    max-width: 250px;
}

.biotek-sales .custom-input i {
    left: 10px;
    transition: all .3s linear;
    width: 24px;
}

.biotek-sales .custom-input:hover input {
    border: 2px solid var(--light-orange);
}

.biotek-sales .custom-input:hover i {
    color: var(--light-orange);
}

.biotek-sales .custom-input input:focus {
    border: 2px solid var(--light-orange);
}

.biotek-sales .custom-input input:focus ~ i {
    color: var(--orange);
} 

.biotek-sales .custom-input button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    background-color: var(--orange);
    border: 0;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    width: 0;
    transition: all .3s linear;
}

.biotek-sales .custom-input button i {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: unset;
    color: #fff;
}
.biotek-sales .custom-input:focus button,
.biotek-sales .custom-input button:focus,
.biotek-sales .custom-input input:focus ~ button {
    width: 60px;
}

.biotek-sales .custom-input:hover button i {
    color: #fff;
}

.biotek-sales .saleman {
    margin-top: 20px;
    font-size: 16px;
}

.biotek-sales .saleman .city {
    margin-bottom: 20px;
}

.biotek-sales .saleman .name {
    font-size: 24px;
    font-weight: bold;
    color: var(--orange);
}

.biotek-sales .saleman i {
    font-size: 35px;
}

.biotek-sales .saleman .email {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.biotek-sales .saleman .email i {
    margin-right: 10px;
    color: var(--orange);
}

@media (max-width: 767px) {
    .biotek-sales p {
        width: 100%;
    }
}