/* -----------  technical start  */
.technical {
}
.technical h1 {
    margin: 2rem 0;
}
.technical ul {
    list-style: inside;
    list-style-type: disclosure-closed;
}
.technical li {
    padding: 0.5rem 0px;
    font-size: 1.1rem;
    transition: all 0.35s ease-in-out;
}
.technical li:hover {
    color: #1c666f;
}

/* -----------  technical end  */
/* -----------  leather-catalog  start  */
.leather-catalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.leather-catalog-item {
    width: 140px;
    margin: 22px;
    background: white;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 0 7px 1px #cecece;
}
.leather-catalog-item img {
    width: inherit;
    height: 140px;
    object-fit: cover;
    transition: all 0.25s ease-in-out;
    position: relative;
}
.leather-catalog-item img:hover {
    transform: scale(2.4);
    border-radius: 6px;
    z-index: 99;
}

/* -----------  leather-catalog  end  */

/* -----------  representors start  */

.representors img {
    height: 29vh;
    width: 100%;
    object-fit: cover;
}
.representors h1 {
    margin-top: 14px;
}
/* -----------  representors end  */
/* -----------  catalog start  */
.catalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    direction: ltr;
}
.catalog img {
    width: 50%;
    max-height: 45vh;
    object-fit: contain;
}
/* -----------  catalog end  */
/* -----------  technical choose start  */
.choose {
    display: flex;
    justify-content: space-evenly;
}
.choose a {
    border: none;
    color: #4d4d4d;
    background-color: #00d2eb;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem;
    margin-top: 1.2rem;
    border-radius: 4px;
    height: 92px;
    width: 320px;
    max-width: 85vw;
    cursor: pointer;
}
/* -----------  technical choose end  */
.unit-table-container {
    margin: 8vh 5%;
}
/* -----------  catalog start  */
/* -----------  catalog end  */
/* -----------  catalog start  */
/* -----------  catalog end  */
/* -----------  contact us start  */

.contactus {
    direction: rtl;
    display: flex;
    justify-content: space-between;
}

.contactinfo div {
    display: flex;
    align-items: baseline;
    display: flex;
    align-items: baseline;
    width: 260px;
    justify-content: space-between;
    margin-bottom: 5vh;
}
.contactinfo div i {
    padding-left: 6px;
}
.contactinfo div a {
    padding-right: 6px;
}
/* .contactus a {
    margin: 0.6rem 0;
    display: inline-block;
} */

.contactus h1 {
    margin-bottom: 3.5vh;
}
.contactus p {
    margin-bottom: 5vh;
}
.contactus input,
.contactus textarea {
    border: none;
    color: #333333;
    background-color: rgb(233, 233, 233);
    font-size: 1rem;
    padding: 0.5rem;
    display: block;
    margin: 0.5rem 0;
    border-radius: 4px;
    width: 320px;
    max-width: 85vw;
    resize: vertical;
}
.contactus input::placeholder,
.contactus textarea::placeholder {
    color: #333333;
}

.contactus form {
    border: 1px dashed gray;
    width: fit-content;
    padding: 1rem;
}
.contactus button {
    border: none;
    color: #4d4d4d;
    background-color: #00d2eb;
    font-size: 1.1rem;
    padding: 0.5rem;
    display: block;
    margin-top: 1.2rem;
    border-radius: 4px;
    width: 320px;
    max-width: 85vw;
    cursor: pointer;
}
/* -----------  contact us end  */

@media only screen and (max-width: 1600px) {
    .catalog img {
        width: 100%;
        max-height: 85vh;
    }
    .unit-table-container {
        margin: 8vh 4%;
    }
}

@media only screen and (max-width: 480px) {
    .leather-catalog-item {
        width: 128px;
        margin: 7px;
    }
    .unit-table-container {
        margin: 8vh 1.5%;
    }
}
/* -----------  table start  */
.units-table {
    margin: 6vh 0;
    overflow: auto;
    max-width: 100vw;
}
.units-table tr {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 8px;
}
.units-table tr:hover td {
    background-color: #76e5f2;
}
.units-table td {
    transition: all 0.35s ease-in-out;
    width: 88px;
    background: white;
    margin: 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 6px;
}
.units-table td p {
    font-size: 14px;
}
.units-table td:last-child {
    width: 120px;
}
