* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #f1f5f9;
    font-family: Battambang-Regular;
    scroll-behavior: smooth;
}

.container {
    width: 1140px;
    margin: 0 auto;
}


/* ..........Header.......... */

.Header-top {
    width: 100%;
    background-color: #3FE0E0;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #3FE0E0;
    padding: 20px 0px;
}

.logo-side {
    width: 200px;
    height: 150px;
    overflow: hidden;
}

.logo-side img {
    width: 99%;
    margin-left: -26px;
    object-fit: cover;
}

.brand-side {
    width: 800px;
}

.brand-side .brand-top {
    width: 100%;
    height: 50px;
}

.brand-top ul {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
    align-items: center;
}

.brand-top ul li {
    margin-left: 15px;
}

.brand-top ul li a {
    text-decoration: none;
    font-size: 17px;
    list-style-type: none !important;
    color: hsl(0, 0%, 27%);
    transition: all 0.3s ease;
}

.brand-top ul li a:hover {
    color: #4cb0d4;
}

.brand-side .brand-bottom {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#title {
    font-size: 175%;
    font-weight: bold;
    color: white;
    font-family: Khmer OS Muol;
}

.header-search-container {
    position: relative;
}

.container-phsar .header-search-container input {
    display: block;
    width: 100%;
    font: inherit;
}

input:focus {
    outline: none !important;
}

.container-phsar .header-search-container input::placeholder {
    font: inherit;
}

.header-search-container .search-field {
    width: 285px;
    height: 49px;
    font-size: 15px;
    color: hsl(0, 0%, 27%);
    padding: 10px 15px;
    padding-right: 50px;
    border: 1px solid #4cb0d4;
    border-radius: 8px;
    font-family: Battambang-Regular;
}

.search-field::-webkit-search-cancel-button {
    display: none;
}

.search-btn {
    background: #fff;
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    color: #3FE0E0;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: #4cb0d4;
}


/* ..........End Header.......... */


/* ..........Navbar.......... */

.Navbar-top {
    width: 100%;
    min-height: 54px;
    background-color: #bbbbbb;
    position: sticky;
    top: -1px;
    z-index: 5;
}

.navbar {
    background-color: #bbbbbb;
    min-height: 54px;
}

.navbar ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}

.navbar ul li {
    padding: 10px 0px;
    width: 150px;
    text-align: center;
}

.navbar ul .active {
    background-color: grey !important;
    min-height: 54px;
}

.navbar ul .active a {
    color: #fff;
}

.navbar ul li:hover {
    background-color: grey;
}

.navbar ul li:hover a {
    color: #fff;
}

.navbar ul li a {
    text-decoration: none;
    text-align: center;
    color: #333;
    font-size: 19px;
}

.navbar ul .ul-dropdown {
    position: absolute;
    top: 74px;
    border-top: 3px solid #3FE0E0;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s linear;
    z-index: 3;
}

.navbar ul li:hover .ul-dropdown {
    top: 54px;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
}

.navbar ul .ul-dropdown li {
    width: 170px;
    display: list-item;
    text-align: left;
    position: relative;
    padding: 6px 10px;
    border-top: none;
    transition: all 0.3s linear;
}

.navbar ul .ul-dropdown li:hover {
    background-color: grey;
}

.navbar ul .ul-dropdown li:hover a {
    color: #fff;
}

.navbar ul .ul-dropdown li a {
    color: #333;
    padding: 0;
}


/* ..........End Navbar.......... */


/*..........Product..........*/

.cmen {
    margin: 30px auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

.cmen .cmen-left-side {
    width: 330px;
}

.cmen .cmen-left-side ul {
    position: sticky;
    top: 54px;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 2%), 0 4px 8px rgb(0 0 0 / 2%);
    padding: 30px 30px 0px 30px;
}

.sidebar-title {
    color: hsl(0, 0%, 27%);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wlcat li {
    list-style-type: none;
    line-height: 35px;
    padding-bottom: 30px;
}

.wlcat li a {
    text-decoration: none;
    color: #3FE0E0;
    display: flex;
    font-size: 17px;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.wlcat li a img {
    width: auto;
}

.wlcat li a:hover {
    color: #4cb0d4;
}

.wlico {
    float: left;
    width: 60px;
    height: 45px;
    padding-right: 30px;
}

.cmen .cmen-right-side {
    width: 780px;
}

.product {
    width: 100%;
}

.content-product {
    display: flex;
    flex-direction: column;
}

.heading-product {
    font-size: 35px;
    line-height: 38px;
    font-weight: 500;
    text-align: left;
    margin-top: 30px;
    color: #000;
    text-transform: capitalize;
    padding-left: 1rem;
    border-left: 5px solid #3FE0E0;
}

.product-box-container {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
}

.product-box-container .product-box {
    width: 240px;
    background-color: #fff;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 2%), 0 4px 8px rgb(0 0 0 / 2%);
    transition: all 0.3s ease-in-out;
}

.product-box-container .product-box:hover {
    box-shadow: 0 1px 3px rgb(0 0 0 / 2%), 0 16px 32px -4px rgb(0 0 0 / 17%);
}

.product-box-container .product-box .image {
    position: relative;
    height: 220px;
    margin-bottom: 30px;
    overflow: hidden;
}

.product-box-container .product-box .image img {
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: 1;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.product-box-container .product-box .box-padding .price-cart a {
    text-decoration: none;
    color: #071230;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.product-box-container .product-box .box-padding {
    padding: 0px 20px;
}

.price-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-box-container .product-box .box-padding p {
    line-height: 25px;
    margin-top: 20px;
    color: #646a7a;
    font-size: 19px;
    font-weight: 200;
    height: 45px;
}

.box-padding .price-cart P {
    text-align: center;
    padding: 10px 5px;
    letter-spacing: .45px;
    font-weight: 500;
    font-size: 19px !important;
    color: #fff !important;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: capitalize;
    background-color: #3FE0E0;
    text-align: center;
    border: 2px solid #3FE0E0;
    border-radius: 4px;
    min-width: 130px;
}

.box-padding .price-cart a {
    text-decoration: none;
}

.box-padding .price-cart a i {
    color: #3FE0E0;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}

.box-padding .price-cart a i:hover {
    color: #4cb0d4;
}

.product-box-container .product-box:hover .image img {
    transform: scale(1.03);
}

.box-btn-view-all {
    width: 196px;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.btn-view-all {
    text-decoration: none;
    display: inline-block;
    padding: 10px 27px;
    text-transform: uppercase;
    letter-spacing: .45px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    border-radius: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    text-transform: capitalize;
    transition: all 300ms linear 0s;
    background-color: #3FE0E0;
    text-align: center;
    transition-duration: 0.3s;
    border: 2px solid #3FE0E0;
    border-radius: 4px;
}

.btn-view-all:hover {
    background-color: transparent;
    background-color: #4cb0d4;
    border: 2px solid #4cb0d4;
}

.showcase-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d73041;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    padding: 5px 8px;
    border-radius: 4px;
    z-index: 3;
}


/*..........End Product..........*/


/*..........Product Detail..........*/

.card-wrapper-eye {
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-display-eye {
    overflow: hidden;
}

.img-showcase-eye {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase-eye img {
    min-width: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.img-select-eye {
    display: flex;
}

.img-item-eye {
    margin: 0.3rem;
    width: 24%;
    height: 150px;
}

.img-item-eye a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-item-eye:nth-child(1),
.img-item-eye:nth-child(2),
.img-item-eye:nth-child(3) {
    margin-right: 0;
}

.img-item-eye:hover {
    opacity: 0.8;
}

.product-content-eye {
    padding: 0px 0px 32px 16px;
}

.product-title-eye {
    font-size: 32px;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

.product-title-eye::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 80px;
    background: #12263a;
}

.product-link-eye {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: #256eff;
    color: #fff;
    padding: 0 0.3rem;
    transition: all 0.5s ease;
}

.product-link-eye:hover {
    opacity: 0.9;
}

.product-rating-eye {
    color: #4cb0d4;
    font-size: 16px;
}

.product-rating-eye span {
    font-weight: 600;
    color: #252525;
}

.product-price-eye {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 700;
}

.product-price-eye span {
    font-weight: 400;
}

.last-price-eye span {
    color: #f64749;
    text-decoration: line-through;
}

.new-price-eye span {
    color: #3FE0E0;
    font-weight: bold;
}

.product-detail-eye h2 {
    text-transform: capitalize;
    color: #12263a;
    padding-bottom: 0.6rem;
    font-size: 24px;
}

.product-detail-eye p {
    padding: 0;
    font-size: 17px;
    color: #707070;
    letter-spacing: .4px;
}

.product-detail-eye ul {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.product-detail-eye ul li {
    list-style: none;
    font-size: 17px;
    line-height: 28px;
    color: #707070;
    letter-spacing: .4px;
}

.product-detail-eye ul li i {
    color: #d73041;
    margin-right: 10px;
    font-size: 17px;
}

.product-detail-eye ul li span {
    font-weight: 400;
    color: #3FE0E0;
}

.purchase-info-eye {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.purchase-info-eye input,
.purchase-info-eye .btn-eye {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 0.45rem 0.8rem;
    outline: 0;
    margin-right: 0.2rem;
    margin-bottom: 1rem;
    font-family: Battambang-Regular;
}

.purchase-info-eye input {
    width: 60px;
}

.purchase-info-eye .btn-eye {
    cursor: pointer;
    color: #fff;
    font-size: 17px;
}

.purchase-info-eye .btn-eye:first-of-type {
    background: #3FE0E0;
}

.purchase-info-eye .btn-eye:last-of-type {
    background: #f64749;
}

.purchase-info-eye .btn-eye:hover {
    opacity: 0.9;
}

.social-links-eye {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.social-links-eye P {
    margin-right: 15px;
    padding: 0;
    font-size: 17px;
    color: #707070;
    letter-spacing: .4px;
}

.social-links-eye a {
    display: flex;
    flex-wrap: wrap;
    margin: 0 3px;
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    width: 35px;
    line-height: 35px;
    height: 35px;
    background: #3FE0E0;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s ease;
}

.social-links-eye a:hover {
    opacity: 0.9;
}

.card-eye {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.product-imgs-eye {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*..........End Product Detail..........*/


/*..........Footer..........*/

.footer-container {
    margin-bottom: 0px;
    background: grey;
}

.footer-container .footer-box-container {
    width: 1140px;
    margin: 0 auto;
    padding: 48px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-container .footer-box-container .footer-box {
    box-sizing: border-box;
    width: 250px;
    overflow: hidden;
}

.sub-one-left {
    position: relative;
    width: 100%;
}

.sub-one-left h6 {
    color: #3FE0E0;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 10px 0px;
    font-weight: bold;
}

.sub-one-left p,
.sub-two-right p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.columns-footer {
    margin-top: 1.2em;
}

.columns-footer ul.footer-social li,
.columns-footer ul.jst-link li {
    display: inline-block;
    margin-right: 5px;
}

.columns-footer ul.footer-social li a {
    color: #3FE0E0;
    text-decoration: none;
    width: 35px;
    height: 35px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s ease;
}

.columns-footer ul.footer-social li a:hover {
    color: #fff;
    background-color: #4cb0d4;
}

.columns-footer ul.footer-social li a span {
    font-size: 15px;
    line-height: 35px;
}

.sub-two-right {
    position: relative;
    width: 100%;
}

.sub-two-right h6 {
    color: #3FE0E0;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 10px 0px;
    font-weight: bold;
}

.sub-two-right ul li {
    list-style: none;
}

.sub-two-right ul li span {
    margin-right: 10px;
    color: #fff;
}

.sub-two-right ul li a {
    font-size: 16px;
    text-decoration: none;
    line-height: 24px;
    color: #fff;
    margin: 0 0 10px 0;
    display: block;
}

.sub-two-right ul li a:hover {
    color: #cecece;
}

.copyright-footer-side {
    padding: 20px 0;
    background: rgb(78, 78, 78);
}

.columns-side {
    margin: 0 auto;
}

.columns-side p {
    font-size: 16px;
    text-align: center;
    line-height: 25px;
    color: #fff;
}

.columns-side p a {
    color: #3FE0E0;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease;
}

.columns-side p a:hover {
    color: #4cb0d4;
}


/*..........End Footer..........*/


/*..........Contact..........*/

.contact {
    margin: 30px auto;
}

.contact-title-top1 {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    margin-bottom: 3rem;
}

h3.contact-title-main {
    font-size: 37px;
    line-height: 50px;
    font-weight: 600;
    position: relative;
}

h3.contact-title-main span {
    color: #3FE0E0;
    font-weight: 800;
}

h3.contact-title-main:before,
h3.contact-title-main:after {
    content: "";
    background: #707070;
    width: 60px;
    height: 2px;
    position: absolute;
    right: 0;
    margin: 0 auto;
}

h3.contact-title-main:before {
    left: -20px;
    bottom: -8px;
}

h3.contact-title-main:after {
    left: 20px;
    bottom: -15px;
}

.contact-container {
    margin-bottom: 3rem;
}

.contact-container .contact-box-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact-container .contact-box-container .contact-box {
    box-shadow: 0 1px 3px rgb(0 0 0 / 2%), 0 4px 8px rgb(0 0 0 / 2%);
    border-radius: 8px;
    background-color: #fff;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 262px;
}

.contact-container .contact-box-container .contact-box:hover {
    box-shadow: 0 1px 3px rgba(175, 137, 137, 0.02), 0 16px 32px -4px rgb(0 0 0 / 17%);
    transform: translateY(-1px);
}

.contact-info {
    text-align: center;
    padding: 1rem;
}

.contact-info h4 {
    font-size: 21px;
    color: #060606;
    margin: 20px 0 10px 0;
    font-weight: 600;
    text-align: center;
}

.contact-info i {
    margin-top: 1rem;
    font-size: 40px;
    color: #3FE0E0;
    text-align: center;
}

.contact-info p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 28px;
    color: #707070;
    letter-spacing: .4px;
}

.contact-info p a {
    font-size: 17px;
    line-height: 28px;
    color: #707070;
    letter-spacing: .4px;
    text-decoration: none;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.contact-info p a:hover {
    color: #d73041;
}

.sendUs-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 30px auto;
    align-items: center;
}

.sendUs-image-section {
    width: 555px;
    height: 515px;
    overflow: hidden;
}

.sendUs-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    align-items: center;
    border-radius: 8px;
}

.sendUs-content .sendUs-article {
    padding: 0px;
    width: 555px;
}

.contact-form-wthreelayouts {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    -moz-border-radius: 8px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 17px;
    line-height: 28px;
    color: #707070;
    letter-spacing: .4px;
}

.form-group input {
    width: 100%;
    padding-left: 20px;
    font-family: Battambang-Regular;
}

.form-group textarea {
    min-height: 100px !important;
    font-family: Battambang-Regular;
    resize: vertical;
    width: 100%;
    padding: 10px 20px;
}

.form-group select {
    font-family: Battambang-Regular;
    width: 100%;
    padding: 10px 20px;
}

select:focus {
    outline: none;
}
textarea:focus {
    outline: none;
}

form .form-control {
    height: 50px;
    border: 1px solid #dbdde2;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    -moz-border-radius: 8px;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 38px;
    color: #707070;
    letter-spacing: .4px;
}

.map {
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 8px;
}

.map iframe {
    width: 100%;
    min-height: 400px;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    border-radius: 8px;
}


/*..........End Contact..........*/


/*..........About..........*/

.about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #071230;
}

.about-img img {
    width: 100%;
    object-fit: contain;
}

.about-article {
    padding: 0px;
    width: 850px;
}

.about-article p {
    font-size: 18px;
    padding-bottom: 10px;
}


/*..........End About..........*/


/*..........Sign up..........*/

.signup {
    width: 600px;
    margin: 0 auto;
    margin-top: 30px;
}


/*..........End Sign up..........*/