header {
    margin-bottom: 20px;
}

.header-top {
    border-bottom: 1px solid #E2E0E0;
    padding: 10px 0;
    margin-bottom: 10px;
}

.header-top .header-left,
.header-top .header-right {
    display: flex;
    align-items: center;
    gap: 50px;
}
.header-top .header-left{
    gap:80px;
}
.header-left .header-logo {
    width: 200px;
    height: 60px;
}
.menu-bars{
    display:none;
}

.header-left .call-us {
    display: flex;
    flex-direction: column;
}

.call-us span {
    color: #555555;
    font-weight: 500;
    font-size: 14px;
}

.call-us a {
    color: #C0944A;
    font-weight: 600;
    font-size: 14px;
    position: relative;
}

.call-us a:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -3px;
    height: .5px;
    background-color: #C0944A;
    width: 0;
    transition: .3s ease;
}

.call-us a:hover:after {
    width: 100%;
}

.header-left .header-logo a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-left .header-logo a img {
    width: 100%;
    height: 100%;
}

.header-top .header-right {
    justify-content: flex-end;
}

.header-right .search-area {
    width: 460px;
    height: 50px;
}

.search-area .search-form {
    position: relative;
    height: 100%;
}

.search-form input {
    background-color: #fff;
    padding: 12px 130px 12px 30px;
    border-radius: 25px;
    height: 100%;
    border: 1px solid #E2E0E0;
    width: 100%;
}

.search-form input:focus {
    border-color: #C0944A;
}

.search-form input::placeholder {
    color: #999999;
}

.search-form input:focus::placeholder {
    color: #fff;
}

.search-form button {
    position: absolute;
    height: 100%;
    background-color: #C0944A;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: auto;
    font-weight: 500;
    color: #fff;
    border-radius: 25px;
    transition: .3s ease;
    width: 50px;
}

.search-form button:hover {
    opacity: .9;
}

header .social-media ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

header .social-media ul li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    border: 1px solid #C0944A;
    justify-content: center;
    color: #C0944A;
    padding: 7px;
    border-radius: 50%;
    transition: .3s ease;
}

.header-bottom .search-area,
.header-bottom .hide-menu,
.header-bottom .social-media,
.header-bottom .mobile-logo {
    display: none;
}

header .social-media ul li a svg {
    width: 17px;
    height: 17px;
    fill: #C0944A;
}

header .social-media ul li a:hover {
    transform: scale(1.1);
}

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-bottom nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.header-bottom nav ul li a {
    font-size: 18px;
    position: relative;
    font-weight: 500;
}

.header-bottom nav ul li a:hover {
    color: #C0944A;
}

.header-bottom nav ul li a:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: .5px;
    background-color: #C0944A;
    width: 0;
    transition: .3s ease;
}

.header-bottom nav ul li a:hover:after {
    width: 100%;
}

.header-bottom nav ul li a.active:after {
    width: 100%;
}

.header-bottom nav ul li a.active {

    color: #C0944A;
}

.header-bottom .lang ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-bottom .lang ul li a {
    font-weight: 600;
    transition: .3s ease;
    color: #C0944A;
}

.header-bottom .lang ul li a:hover,
.header-bottom .lang ul li a.active {
    color: #ccc;
}

.blogs-section {
    background-color: #F4E8B5;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

.blogs-section-2 {
    background-color: #fff;
}

.blogs-section .blog-card {
    padding: 20px;
    border-radius: 30px;
}

.blog-card .time {
    color: #999999;
}

.blogs-section .blog-card .name {
    font-size: 33px;
    text-transform: capitalize;
    color: #505050;
    letter-spacing: 0;
    position: relative;

    margin: 0 auto;
    margin-bottom: 20px;
}

.blogs-section .blog-card .name:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -3px;
    background-color: #C0944A;
    height: 1px;
    width: 0;
    transition: .5s ease;
}

.blogs-section .blog-card .blog-image {
    width: 360px;
    height: 320px;
    border-radius: 30px;
    margin: 0 auto 20px;
    position: relative;
}

.blogs-section .blog-card .blog-image:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(255, 255, 255, .2);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

.blogs-section .blog-card .blog-image img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogs-section .blog-card:hover .blog-image:after {
    opacity: 1;
}

.blogs-section .blog-card:hover .name:after {
    width: 100%;
}

.blogs-section .blog-card .description {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 20px;
}

.blogs-section .blog-card .read-more-btn {
    border: 1px solid #C0944A;
    background-color: #F4E8B5;
    transition: .3s ease;
    padding: 12px 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C0944A;
    border-radius: 30px;
}

.blogs-section .blog-card .read-more-btn svg {
    margin-left: 10px;
    transition: .4s ease;
}

.blogs-section .blog-card .read-more-btn:hover svg {
    transform: translateX(10px);
}

.blogs-section .blog-card .read-more-btn:hover {
    border: 1px solid transparent;
    background-color: #C0944A;
    transition: .3s ease;
    color: #fff;
}

.blogs-section .blog-card:hover .name a {
    color: #C0944A;
}

.blog-detail {
    padding: 40px 0;
}

.blog-detail .title {
    font-size: 30px;
    margin-bottom: 20px;
}

.blog-detail .blog-text {
    line-height: 24px;
    font-size: 14px;
}

.blog-detail .blog-detail-left .image {
    height: 400px;
}

.blog-detail .blog-detail-left .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-section {
    background-color: #FFFDF4;
    position: relative;
    overflow-x: hidden;
}

.products-section .product-card {
    padding: 80px 0;
    background-color: #fff;
    box-shadow: 3px 3px 12px 0px #C0944A1F;
    margin-bottom: 100px;
    border-radius: 30px;
    text-align: center;
    max-height: 210px;
    display: block;

}

.product-card .product-name {
    font-weight: 500;
    font-size: 22px;
    color: #C0944A;
}

.product-card .product-image {
    margin: 20px auto -150px;
    width: 300px;
    height: 120px;
    object-fit: contain;
    transition: all .5s cubic-bezier(.175, .885, .32, 3.75);
    border-radius: 20px;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.products-section .swiper-slide a {
    background-repeat: no-repeat;
    background-position: right top;
}

.products-section .swiper-slide:nth-child(even) a:nth-child(1) {
    background-image: url('../images/bg-1.svg');
}

.products-section .swiper-slide:nth-child(odd) a:nth-child(1) {
    background-image: url('../images/bg-2.svg');
}

.products-section .swiper-slide:nth-child(odd) a:nth-child(2) {
    background-image: url('../images/bg-1.svg');
}

.products-section .swiper-slide:nth-child(even) a:nth-child(2) {
    background-image: url('../images/bg-3.svg');
}

.product-card:hover .product-image {
    transform: scale(1.08);
    transition: all .5s cubic-bezier(.175, .885, .32, 3.75);
}

.products-section .arry {
    background-color: #C0944A;
    color: #fff;
}

.categories-section {
    background-color: #F4E8B5;
    background-image: url('../images/bg5.svg'), url('../images/bg-4.svg'), url('../images/bg6.svg');
    background-repeat: no-repeat;
    background-position: top 50% left 0, top 0 right 0, top 70% right;
}

.categories-section .col-lg-6 {
    overflow: hidden;
    border-radius: 30px;
}

.categories-section .category-item {
    margin-bottom: 50px;
    transition: .3s ease;
    display: block;
}

.categories-section .category-item:hover {
    transform: scale(1.01);
}

.category-item .category-image {
    width: 560px;
    height: 400px;
    margin-bottom: 30px;
}

.category-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
}

.category-item .category-name {
    font-size: 25px;
    font-weight: 600;
    color: #C0944A;
}

.banner-section .slider-content {
    height: 760px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 300px;
    color: #fff;
    position: relative;

}

.banner-section .slider-content:after {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.12);

}

.slider-content h1 {
    font-size: 70px;
    margin-bottom: 50px;
    z-index: 2;
    max-width: 700px;
    transform: translateX(120px);
    transition: .7s ease;
    line-height: 70px;
}

.swiper-slide-active .slider-content h1 {
    transform: translateX(0);
}


.slider-content .bttm {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-link {
    background-color: #C0944A;
    color: #fff;
    border-radius: 25px;
    padding: 14px 22px;
    font-weight: 500;
    z-index: 2;
    gap: 10px;
    font-size: 14px;
    width: max-content;
    display: flex;
    letter-spacing: 1.1px;
    align-items: center;
    justify-content: center;
    transform: translateY(120px);
    transition: .9s ease;
}

.slider-link:hover {
    color: #fff !important;
}

.slider-link svg {
    transition: .2s ease;
}

.slider-link:hover svg {
    transform: translateX(3px);
}

.slider-content .desc {
    max-width: 400px;
    font-size: 14px;
    z-index: 2;
    color: #fff;
    transform: translateY(20px);
    transition: .9s ease;
}

.swiper-slide-active .slider-content h1 {
    transform: translateY(0);
}

.swiper-slide-active .slider-content .slider-link {
    transform: translateY(0);
}

.swiper-slide-active .slider-content .desc {
    transform: translateY(0);
}

.about-section {
    padding: 50px 0;
}

.about-section .slider-link {
    transform: translate(0);
}

.about-section .slider-link:hover {
    color: #fff !important;
}

.about-section .about-image {
    width: 100%;
    height: 400px;
}

.about-image img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section .title {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    color: #C0944A;
    letter-spacing: 1.2px;
}

.about-section .title-2 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.desc {
    font-size: 14px;
    line-height: 32px;
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;

}

footer {
    background-color: #C0944A;
    padding: 50px 0 20px;
    color: #fff;
}

footer .logo {
    width: 200px;
    height: 70px;
    margin-bottom: 30px;
}

footer .logo a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

footer ul li a {
    position: relative;
    padding-bottom: 5px;
}

footer ul li a:hover {
    color: #fff;
}

footer ul li a::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0px;
    height: .5px;
    transition: .4s ease;
    background-color: #eee;
    width: 0;
}

footer ul li a:hover::after {
    width: 100%;
}

.adress-info {
    margin-top: 77px;
}

footer .logo a img {
    width: 100%;
    height: 100%;
}

footer .social-media {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .social-media span {
    font-size: 15px;
    color: #eee;
    font-weight: 500;
}

footer .social-media ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .social-media ul li a {
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 50%;
    transition: .3s ease;
}
footer .social-media ul li a:after{
    display:none;
}
footer .social-media ul li a:hover {
    transform: scale(1.12);
}

footer .social-media ul li a svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}







footer .copyright {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 14px;
}


.breadcrumb-content {
    padding: 150px;
    height: 50vh;
    background-image:
        url('../images/bg-1.svg'),
        url('../images/bg-2.svg'),
        url('../images/bg-3.svg'),
        url('../images/bg-4.svg'),
        linear-gradient(270deg, #F4E8B5 0%, #C0944A 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: bottom right, top right, top left, top left;
    background-size: 10%, 10%, 10% cover;
}

.breadcrumb-content .breadcrumb {
    color: #fff;
}

.breadcrumb-content .breadcrumb-item.active {
    color: #F4E8B5;
}

.breadcrumb-content .breadcrumb-item a:hover {
    color: #F4E8B5;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #F4E8B5;
}

.breadcrumb-content .title {
    font-size: 30px;
    font-weight: 600;
}

.features .col-lg-4 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFDF4;
    flex-direction: column;
    max-width: 300px;
    height: 260px;
    border-radius: 20px;
}

.features .feature-img {
    margin-bottom: 30px;
}

.features .feature-name {
    color: #363333;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.brands {
    background-color: #FFFDF4;
    padding: 60px 0;
}

.brand-item {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.brand-item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.brand-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.rewards li {
    display: flex;
    padding: 50px 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #C0944A;
}

.rewards li .year {
    color: #CEBD8870;
    font-size: 36px;
    font-weight: 400;
    line-height: 50px;
    font-family: 'Cinzel';
}

.rewards li .info {
    max-width: 600px;
}

.rewards li .image {
    width: 300px;
    height: 200px;
}

.rewards li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail {
    background-color: #FFFDF4;
    padding: 70px 0;
}

.product-detail .pr-img {
    width: 100%;
    height: 400px;
    background-color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 3px 3px 8px 0px #00000014;

}

.pr-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #363636;
    margin-bottom: 10px;

}

.pr-code {
    color: #ACB1C4;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 10px;
}

.pr-info {
    font-size: 16px;
    line-height: 24px;
    max-width: 400px;
    margin-bottom: 10px;
}

.pr-price {
    color: #C0944A;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
}

.pr-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact {
    padding: 50px 0;
    border-radius: 10px;

}

.map {
    margin-top: 30px;
}

.contact-info {
    background-color: #C0944A;
    color: #fff;
    padding: 10px;
    height: 100%;
    font-size: 18px;
    text-align: center;
}

.contact-info ul li {
    margin: 30px 0;
    transition:.3s ease;
}
.contact-info ul li:hover{
    transform:scale(1.01);
}
.contact-info ul li a:hover{
    color:#f1f1f1;
}
.contact-form {
    padding: 20px;
}

.contact-form input,
textarea {
    height: 50px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    padding: 0 20px;
    border-radius: 10px;
    width: 100%;
}

.contact .social-media ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact .social-media ul li a {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    justify-content: center;
    color: #fff;
    padding: 7px;
    border-radius: 50%;
   
}

.contact .social-media ul li a svg{
    width: 17px;
    height: 17px;
    fill: #fff;
    
}
.contact-form textarea {
    resize: none;
    height: auto;
    outline: none;
    padding-top: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid #C0944A;
}

.contact-form button {
    background-color: #C0944A;
    color: #fff;
    padding: 6px 34px;
    display: flex;
    width: 200px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
    border-radius: 10px;
}

.contact-form button:hover {
    opacity: .8;
}

.products {
    padding: 86px 0;
    background-color: #FFFDF4;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.products .sidebar label {
    padding: 16px 26px;
    color: #717175;
    border-radius: 20px;
    width: 100%;
    background-color: #FDF7ED;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    font-weight: 500;

}

.products .sidebar label.active {
    background-color: #C0944A;
    color: #fff;
}

.products .sidebar input {
    display: none;
}

.products .sidebar label.active {
    background-color: #C0944A;
    color: #fff;
}

.heading {
    color: #C0944A;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 600;
    position: relative;
    margin-bottom: 60px;
    line-height: 30px;
    padding-bottom: 10px;
    display: inline-block;
}

.heading:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -3px;
    height: 3px;
    background-color: #C0944A;
    width: 40%;
}

.not-found {
    text-align: center;
    margin: 50px auto;
    background-color: #C0944A;
    max-width: 70%;
    padding: 20px;
    color: #fff;
    font-weight: 500;
}

.products-section-2 {
    background-color: transparent !important;
    margin: 140px 0;
}

.contact-info-title {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 15px;
    line-height: 10px;
    position: relative;
    display: inline-block;
}

.contact-info-title:after {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    bottom: -3px;
    background: #fff;
    border-radius: 10px;
    width: 40%;

    margin: 0 auto;
    height: 3px;
}


.btn-vacancy:active {
    border-color: transparent !important;
}

.btn-apply {
    width: auto;
    color: #fff;
    background-color: #C0944A;
    transition: .3s;
}

.btn-apply:active {
    border-color: transparent !important;
}

.btn-apply:hover {
    color: #fff;
    background-color: #C0944A;
    opacity: .7;
}

.apply-form .form-control:focus {
    border: 1px solid #C0944A;
    box-shadow: none;
}

.features {
    padding: 70px 0;
}
.vacancies-section {
    padding: 70px 0;
    background-color: #FFFDF4;
}
.vacancies-section .brand-item {
    font-size: 20px;
    height: 150px;
    background-color: #fff;
}