/*================= descripcion productos =================*/

.why-us-producto .container {
    margin-top: .5rem;
}

#img-description img {
    box-sizing: border-box;
    width: 550px;
    height: 430px;
    border-radius: 10px;
    display: flex;
    margin-top: 3rem;
    border: 2px solid #1b3246;
    box-shadow: 0px 0px 10px #1b3246;
    position: relative;
    transition: all ease-in-out 0.4s;
}

#img-description :hover {
    border: 2px solid #ffffff;
}

#img-description img:hover {
    transform: scale(1.1);
}

#table-description {
    text-align: center;
}

#table-description h2 {
    text-align: left;
}

#table-description p {
    text-align: left;
}

#table-description ul {
    text-align: left;
}

#table-description .cotizar a {
    display: block;
    width: 300px;
    color: black;
    margin: 0 auto;
    margin-top: 50px;
    font-size: 25px;
    background-color: rgb(243, 243, 243);
    font-weight: bold;
    border: 2px solid blue;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(92, 118, 141, 0.9);
    transition: all .3s;
}

#table-description .cotizar a:hover {
    background-color: rgba(0, 99, 185, 0.4);
    transform: scale(1.03);
    box-shadow: 0 2px 10px rgb(92, 118, 141);
}

#table-description table,
th,
td {
    text-align: center;
    color: black;
    background-color: #fdfdfdc2;
    font-size: 16px;
    padding-top: 7px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 2px #ecd524;
}

.why-us-producto .icon-box {
    margin-top: 50px;
}

.why-us-producto .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #f3f8fa;
    border-radius: 6px;
    transition: 0.5s;
}

.why-us-producto .icon-box .icon i {
    color: #ecd524;
    font-size: 32px;
}

.why-us-producto .icon-box:hover .icon {
    background: #fbe855;
}

.why-us-producto .icon-box:hover .icon i {
    color: #fff;
}

@media (max-width: 480px) {
    .why-us-producto .icon-box .icon {
        display: none;
    }
}

.why-us-producto .icon-box .title {
    margin-left: 95px;
    color: #4a4b4b;
    background-color: #ecd524;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0px 2px 4px #4a4b4b;
}

@media (max-width: 480px) {
    .why-us-producto .icon-box {
        margin: 0 auto;
        margin-left: -95px;
    }
}

.why-us-producto .icon-box .description {
    text-align: left;
    margin-left: 95px;
    line-height: 33px;
    font-size: 14px;
    font-weight: 600;
}

#tornillo-des {
    margin-top: 15px;
}

.team {
    background: rgba(253, 251, 251, 0.664);
    margin: 0 auto;
    padding: 48px 0 30px 0;
}

.team .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.team .member .pic {
    border-radius: 4px;
    overflow: hidden;
}

.team .member img {
    transition: all ease-in-out 0.4s;
}

.team .member:hover img {
    transform: scale(1.1);
}

.team .member .member-info {
    position: absolute;
    bottom: -48px;
    left: 20px;
    right: 20px;
    background: linear-gradient(360deg, #5c768d 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%);
    padding: 15px 0;
    border-radius: 4px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #fff;
    bottom: 0;
    left: calc(50% - 25px);
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    transition: color 0.3s;
    color: #fff;
}

.team .member .social a:hover {
    color: #9eccf4;
}

.team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}

@media (max-width: 992px) {
    .team .member {
        margin-bottom: 100px;
    }
}


/*================= fin descripcion producto =================*/