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

body {
    font-family: 'FTN_demi', sans-serif;
}

a {
    color: black;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0%;
    z-index: 555;
    
}

.fixed {
    position: fixed !important;
    width: 100%;
    background-color: #fff !important;
    top: 0;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    left: 0;
    z-index: 9999;
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 5px;
}

.inner-header {
    position: relative;
}

.inner-header .logo{
    filter: none;
}

.inner-header .navbar-toggler .line{
    stroke: #ed7c5f;
}

.inner-header .language a{
    color: black;
}

.inner-header .language a:first-child::before{
    background-color: #eb7353;
}

header .navbar-nav {
    width: 100%;
    justify-content: center;
}

header .nav-link{
    color: white;
}

header.fixed .dropdown_lang {
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 5px;
}

header.fixed .language a,
header.fixed .nav-item .nav-link {
    color: black;
}

header.fixed .nav-item {
    padding: 15px 0;
}

header.fixed .language a:first-child::before{
    background-color: #eb7353;
}

header.fixed .logo{
    filter: none !important;
    width: 150px;
}

header.fixed .navbar-toggler .line-menu{
    background-color: #010080;
}

header.fixed .line{
    stroke: #eb7353;
}

header .resp_nav .navbar-toggler .line-menu{
    background-color: #fff;
}

header .resp_nav .language a{
    color: black;
}

/*header .container {*/
/*    max-width: 90%;*/
/*}*/

header .logo {
    width: 170px;
    filter: grayscale(1) brightness(100);
}

header .navbar {
    position: static;
    display: flex;
    justify-content: space-between;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
}

header .navbar-nav {
    margin: auto;
}

header .nav-item {
    padding: 30px 0;
    margin: 0 10px;
    
}

header .nav-item .nav-link {
    color: white;
    position: relative;
    font-size: 17px;
}

header .nav-item .nav-link::before,
header .nav-item .nav-link::after{
    content: '';
    position: absolute;
    height: 2px;
    background-color: #eb7353;
    width: 0;
    bottom: 0;
    transition: width 0.3s ease;
    border: none;
    margin: 0;
    /* transform: translateX(-50%); */
}

header .nav-item .nav-link::before{
    right: 50%;
}

header .nav-item .nav-link::after{
    left: 50%;
}

header .nav-item:hover .nav-link::before{
    width: 20%;
}

header .nav-item:hover .nav-link::after{
    width: 20%;
}

header .nav-item:hover .nav-link::before{
    opacity: 1;
}

header .dropdown {
    position: static;
}

header .dropdown-toggle::after {
    content: none;
}

header .arrow i {
    color: #eb7353;
    position: relative;
    top: 1px;
    padding-left: 2px;
}

header .dropdown .dropdown-menu {
    position: absolute;
    right: 0;
    left: 0;
    top: 99%;
    border-radius: 0;
    background-color: white;
    padding: 24px 0;
    border: none;
    /* border-top: 1px solid #eb7353; */
    display: flex;
    justify-content: space-around;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 200ms ease-in-out 0s;
    -moz-transition: all 200ms ease-in-out 0s;
    -o-transition: all 200ms ease-in-out 0s;
    transition: all 200ms ease-in-out 0s;
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 5px;
}

header .dropdown-item.active, 
header .dropdown-item:active{
    background-color: #e9ecef;
    color: #1e2125
}

header .menu_list .dropdown-item{
    padding: 16px 0;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .menu_list .dropdown-item span i{
    font-size: 14px;
    color: #eb7353;
    transition: all ease .3s;
}

header .menu_list .dropdown-item::after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,.16);
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    transition: all ease .3s;
}

header .dropdown-item:focus, 
header .dropdown-item:hover{
    background-color: transparent;
}

header .dropdown-item:hover::after{
    height: 2px;
    background-color: #eb7353;
}

.dropdown-item .hover{
    opacity: 0.5;
}

header .dropdown .dropdown-item span {
    display: inline-block;
    margin: 0 2px;
}

header .dropdown .dropdown-menu .dropdown_img{
    height: 350px;
}

header .dropdown .dropdown-menu .dropdown_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .btn_wrapper{
    display: flex;
    align-items: baseline;
}

header .btn_wrapper a{
    display: block;
    color: white;
}

header .btn_wrapper .order{
    background-color: #eb7353;
    padding: 10px 46px;
    border: 2px solid #eb7353;
    border-radius: 15px;
    margin-right: 12px;
    box-shadow: 0 0 0 18px transparent;
    -webkit-animation: btn-pulse 1s;
    animation: btn-pulse 1s;
    animation-iteration-count: infinite;
    transition: all 0.2s ease;
}

@keyframes btn-pulse{
    0% {
        -webkit-box-shadow: 0 0 0 0 #eb7353;
        -moz-box-shadow: 0 0 0 0 #eb7353;
        -o-box-shadow: 0 0 0 0 #eb7353;
        box-shadow: 0 0 0 0 #eb7353;
    }
}

header .btn_wrapper .order:hover{
    background-color: transparent;
    color: #eb7353;
}


header .language {
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    display: flex;
}

header .language a{
    padding: 0 15px;
    position: relative;
}

header .language a:first-child::before{
    content: '';
    position: absolute;
    right: 0;
    top: 3px;
    width: 1px;
    height: 85%;
    background-color: white;
    opacity: 0.5;
}

header .language a:hover{
    text-decoration: underline;
}

header .navbar-toggler:focus {
    box-shadow: none;
}


main .container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

main .carousel-item{
    height: 800px;

}

main .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

main .carousel-control-next, 
main .carousel-control-prev{
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

main .carousel-indicators {
    z-index: 444;
    bottom: 20px;
}

main .carousel_wrap .carousel-indicators button svg{
    stroke: #eb7353;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    fill: transparent;
    stroke-width: 3px;
    stroke-dasharray: 94;
    stroke-dashoffset: 94;
}

main .carousel_wrap .carousel-indicators button.active svg{
    -webkit-animation: fill-button 5s linear forwards;
    animation: fill-button 5s linear forwards;
}

main .carousel_wrap .carousel-indicators button.active {
    background-color: #eb7353;
}

main .carousel_wrap .carousel-indicators button{
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border: none;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: background-color .5s ease;
    -moz-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
    margin: 0 15px;
    cursor: pointer;
}

@keyframes fill-button{
    0% {
        stroke-dashoffset: 94;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

main .carousel-caption{
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

main .carousel-caption .carousel_text{
    width: 50%;
    margin: 0 auto 15px;
    font-size: 18px;
}

main form{
    width: 560px;
    margin: auto;
    position: relative;
}

main form .form-control{
    height: 66px;
    border-radius: 32px;
    padding-right: 34%;
}

main form .btn{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    outline: none;
    display: flex;
    align-items: center;
    border-radius: 32px;
    /*width: 34%;*/
    /*justify-content: space-between;*/
    padding: 0 3px 0 20px;
    transition: all 0.3s ease;
}

.search_page #fullsearch{
    display: none;
}

.btn:focus{
    box-shadow: none;
}

main form button.btn:before {
    width: 1px;
    position: absolute;
    content: '';
    height: 58%;
    background: #eb7353;
    right: 100%;
}

main form .btn .search_icon{
    background: #eb7353;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin: 0;
    color: white;
    display: flex;
    /* position: absolute; */
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    margin-right: 4px;
    transition: all 0.3s ease;
}

main form input[type="search"]::-webkit-search-decoration,
main form input[type="search"]::-webkit-search-cancel-button,
main form input[type="search"]::-webkit-search-results-button,
main form input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

main form .btn:hover{
    color: black;
    background-color: #ebebeb;
}

main form .btn:hover::before{
    content: none;
}

main form .btn:hover .search_icon{
    background: #ea5831;
}

main form .btn .text{
    padding: 0 25px;
    font-size: 18px;
}

main form .form-control:focus{
    box-shadow: none;
    outline: none;
    border-color: #eb7353;
}


.padding_section{
    padding: 5rem 0;
}
/* ===================================Products===================== */

.products{
    background-color: #f2f3f5;
    padding-bottom: 7rem;
}

.inner_page.products{
     background-color: #fff;
}

.inner_page.products .item{
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.20);
    
}

.products .section_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.products .row{
    margin-right: -5px;
    margin-left: -5px;
}

.products .item img{
    transition: 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products .item{
    background: white;
    position: relative;
    
}

.products .owl-stage{
    display: flex;
}

.products .owl-item .item{
    height: 100%;
}
.products .item a{
    display: block;
    color: black;
}

.products .item_img{
    position: relative;
    padding-top: 50px;
    height: 245px;
}

.products .item_img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: 0.3s ease;
}

.products .item:hover .item_img::before{
    background: rgba(0, 0, 0, .2);
}

.products .item_header{
    display: flex;
    justify-content: space-between;
    color: #eb7353;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 20px;
    font-family: 'FTN_medium';
    padding: 25px;
    z-index: 99;
}

.products .item_text_wrap {
    font-family: 'FTN_medium';
    padding: 25px;
    position: relative;
    min-height: 214px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products .item_text_wrap .product_code {
    margin: 0;
    font-size: 15px;
    color: #b3bdc7;
    margin-top: 4px;
    /*min-height: 22px;*/
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.fullstory .product-name{
    margin-bottom: 4rem;
}

.fullstory .product_code span{
    color: #b3bdc7;
}

.products .item_text_wrap .description{
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 0;
}

.products .item_text_wrap .item_title{
    font-size: 24px;
    /*margin-top: 14px;*/
    margin-bottom: 8px;
}

.products .item_text_wrap .item_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0 10px;
}

.products .item_text_wrap .item_text{
    min-height: 120px;
}

.products .icon{
    cursor: pointer;
}

.products .icon svg{
    width: 24px;
}

.products .icon svg path{
   stroke-width: 5px; 
}

.fill_icon{
    fill: #eb7358;
}

.product_fullstory{
    overflow: hidden;
}

.products .icon .click_icon{
    display: none;
    color: #eb7353;
   margin-top: 5px;
}

.stock{
    font-size: 15px;
    color: #27ae60;
}

.product_content .stock i,
.products .item_bottom i{
    margin-right: 4px;
}

.products .more_btn{
    background: #f2f3f5;
    padding: 15px 28px;
    border-radius: 32px;
    transition: 0.3s ease;
}

.products .more_btn:hover{
    background-color: #eb7353;
    color: white;
}

.products #carousel-nav .owl-prev,
.products #carousel-nav .owl-next{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
}

.products #carousel-nav button{
    transition: 0.3s ease;
}

.products #carousel-nav button img{
    width: 25px;
}

.products #carousel-nav button:hover{
    background-color: white;
}

.search_page .item,
.product_info .item{
    margin: 5px;
    width: calc(25% - 10px);
    padding: 0;
}

/*.search_page.content_all #dle-content>*{*/
/*    padding: 0;*/
/*}*/

/* ================================= About=============================== */

@media (min-width: 1800px){
    .about .container{
        max-width: 1800px;
    }
}


.about {
    padding: 3rem 0 0;
    background: #eb7353;
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before{
    content: '';
    width: 100%;
    height: 48px;
    background-color: #f2f3f5;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.about .about_left{
    padding: 48px;
    max-width: 75%;
    margin: 48px auto 48px;
}

.about .about_left h2{
    font-size: 48px;
    margin-bottom: 16px;
}

.about .about_left p{
    font-size: 19px;
    line-height: 1.5;
    font-family: 'FTN_medium';
    margin-bottom: 48px;
}

.about .about_left .more_btn{
    display: inline-block;
    text-align: center;
    min-width: 190px;
    padding: 18px 10px;
    background-color: white;
}

.about .about_left .more_btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgb(0 0 0 / 8%);
    color: black;
}

.about .img_wrap {
    margin: -90px 0 0 55px;
    height: 400px;
    z-index: 999;
    position: relative;
}

.about .img_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about_right{
    position: relative;
    display: flex;
    align-items: center;
}

.about .about_right .description{
    padding: 32px 48px;
    background: white;
    color: black;
    z-index: 999;
    position: relative;
    font-size: 18px;
}

.about .bg_white{
    display: block;
    width: 100vw;
    height: 100%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.about .icon_wrap {
    position: relative;
    z-index: 999;
    padding: 0 11px 0 20px;
}

.about .icon_wrap span{
    transform: rotate(90deg);
    width: max-content;
    display: block;
}

.about .icon_wrap span:last-child{
    margin-top: 15px;
}

.about .icon_wrap img{
    width: 25px;
}

/* ================================= Categories =============================== */

.categories{
    padding: 8rem 0 6.5rem;
}

.categories .category_box{
    background: #f2f3f5;
    border-radius: 5px;
    padding: 16px 25px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.categories a{
    display: block;
    height: 100%;
    color: black;
}

.categories a:hover .category_box{
    box-shadow: 0 6px 14px rgb(0, 0, 0, 0.17);
}

.categories a:hover span{
    color: #eb7353;
    background-color: transparent;
}

.categories .category_box h2{
    font-size: 24px;
    margin-bottom: 25px;
}

.categories .category_box span{
    display: block;
    background-color: #eb7353;
    border: 2px solid #eb7353;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    width: max-content;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.categories .center .img_wrap{
    height: 260px;
}

.categories .img_wrap{
    height: 160px;
    width: max-content;
    margin-left: auto;
    position: absolute;
    bottom: 0;
    right: 40px;
}

.categories .right .img_wrap{
    height: 110px;
}

.categories .img_wrap img{
    /*width: 100%;*/
    height: 100%;
    object-fit: contain;
}

.categories .container>.row{
    margin-left: -8px;
    margin-right: -8px;
}

.categories .container>.row>* {
    padding-left: 8px;
    padding-right: 8px;
}


.inner_page.categories .category_box .img_wrap{
    position: static;
    height: 150px !important;
}

/* ======================== Call to action=========================== */

.statistics{
    background-color: #212121;
    color: white;
}

.statistics .icon_wrap{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid #ffffff1a;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 36px;
}

.statistics .icon_wrap img{
    width: 100%;
    object-fit: contain;
    padding: 25px;
}

.statistics .icon_wrap .number{
    font-size: 28px;
    display: block;
}

.statistics .box_body{
    text-align: center;
    padding: 0 10px;
}

.statistics .box_body h2{
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    font-family: 'Kaushan Script', cursive;
    letter-spacing: 1px;
}

.statistics .box_body p{
    font-size: 18px;
    line-height: 20px;
    /* max-width: 250px; */
    text-align: center;
    opacity: .6;
    font-family: 'FTN_medium';
}

.statistics .icon_wrap span{
    font-size: 28px;
    margin-right: 8px;
    display: inline-block;
}

.pagination {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination span, 
.pagination a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f1f3;
    margin: 0 4px;
    border-radius: 2px;
    color: black;
}

.pagination a:hover{
    background: #eb7353;
    color: white;
}

.pagination>span{
    background: #f2f3f5;
}

.pagination .nav-icons a,
.pagination .nav-icons span{
    color: #adadad;
}

.pagination .nav-icons a:hover{
    background: #f2f3f5;
}

/* ============================ Call to action=========================== */

.call-to-action{
    padding: 50px 0;
    background-color: #fa9074;
}

.call-to-action h4{
    font-size: 23px;
    color: white;
}

.call-to-action h3{
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.call-to-action a{
    display: inline-block;
    cursor: pointer;
    padding: 15px 45px;
    font-weight: 700;
    border-radius: 100px;
    -webkit-transition-property: 0.4s all ease-in;
    transition-property: 0.4s all ease-in;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-color: #ffffff;
    border: 2px solid #fff;
    font-size: 18px;
    display: inline-block;
    color: #333;
    -webkit-animation: play 4s ease infinite;
    -moz-animation: play 4s ease infinite;
    animation: play 4s ease infinite;
}

.call-to-action a:hover{
    background-color: transparent;
    color: #fff !important;
}

.call-to-action .order_btn{
    width: max-content;
    margin-left: auto;
}

@keyframes play{
    20%, 100% {
        -webkit-box-shadow: 0 0 0 5px rgb(255 255 255 / 0%);
        -moz-box-shadow: 0 0 0 5px rgb(255 255 255 / 0%);
        box-shadow: 0 0 0 5px rgb(255 255 255 / 0%);
    }
    
    0% {
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 5px rgb(255 255 255 / 0%), 0 0 0 10px rgb(78 208 72 / 0%);
        -moz-box-shadow: 0 0 0 5px rgb(255 255 255 / 0%), 0 0 0 10px rgb(78 208 72 / 0%);
        box-shadow: 0 0 0 5px rgb(255 255 255 / 0%), 0 0 0 10px rgb(78 208 72 / 0%);
    }
    10% {
        -webkit-box-shadow: 0 0 0 10px rgb(255 255 255 / 30%), 0 0 0 20px rgb(255 255 255 / 20%);
        -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(203, 166, 81, 0.2);
        box-shadow: 0 0 0 10px rgb(255 255 255 / 30%), 0 0 0 20px rgb(255 255 255 / 20%);
    }
}

/* ================================= Footer =============================== */


footer {
	border-top: 1px solid hsla(0,0%,76.9%,.6);
}

footer .section-top {
	background-color: #f2f3f5;
	padding: 60px 0;
}

footer .section-top .media-wrapper {
	display: -ms-flexbox;
    display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%;
}

footer .section-top .footer-brand {
	margin-bottom: 30px;
	display: block;
}

 footer .section-top .footer-brand img {
	width: 160px;
} 

footer .section-top .footer-brand .logo-text {
    padding-top: 5px;
    width: max-content;
}

footer .section-top .footer-brand .logo-text span {
    font-size: 13px;
}

footer .section-top .social-media-wrap h6 {
	font-size: 16px;
	margin-bottom: 15px;
}

footer .section-top .social-media-wrap .social-media{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

footer .section-top .social-media-wrap .social-media li {
	/* float: left; */
	width: 40px;
	height: 40px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	background: #afbbc6;
    border-radius: 50%;
    transition: 0.3s ease;
}

footer .section-top .social-media-wrap .social-media li:not(:last-child) {
	margin-right: 10px;
}

footer .section-top .social-media-wrap .social-media li a {
	display: -ms-flexbox;
  	display: flex;
	-ms-flex-align: center;
    align-items: center;
	-ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    
}

footer .social-media-wrap .social-media li i {
	color: #f4f4f4;
	font-size: 18px;
	/* -webkit-transition: all 0.225s ease 0s;
  	-moz-transition: all 0.225s ease 0s; 
  	-o-transition: all 0.225s ease 0s;
  	transition: all 0.225s ease 0s; */
}

footer .social-media-wrap .social-media li:nth-child(1):hover {
	background-color: #3b5998;
}

footer .social-media-wrap .social-media li:nth-child(2):hover {
	background-color: #f62403;
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

footer .social-media-wrap .social-media li:nth-child(3):hover {
	background-color: #0966c2;
}

footer .social-media-wrap .social-media li:nth-child(4):hover {
	background-color: #00aced;
}

footer .social-media-wrap .social-media li:nth-child(5):hover {
	background-color: #f70100;
}

footer .footer-list {
    column-count: 2;
    padding: 0;
    margin-bottom: 32px;
}

footer .footer-list li {
	padding-right: 8px;
}

footer .footer-list li:not(:last-child) {
	margin-bottom: 15px;
}

footer .footer-list li a {
	font-size: 16px;
	-webkit-transition: all 0.225s ease 0s;
  	-moz-transition: all 0.225s ease 0s; 
  	-o-transition: all 0.225s ease 0s;
  	transition: all 0.225s ease 0s;
}

footer .footer-list li:hover a {
	color: #f99074;
}

footer .info-box {
	padding: 22px 28px 24px;
    -webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-o-border-radius: 12px;
	border-radius: 12px;
}

footer .contact-info-box {
	border: 1px solid #fff;
	background-color: #fff;
}

footer .order-info-box {
	border: 1px solid #d7dde3;
	background-color: transparent;
}

footer .info-box h6 {
	font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
    min-height: 40px;
}

footer .contact-info-box h6 {
	color: #f99074;
} 

footer .info-box .tel-link {
	font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
	display: block;
}

footer .info-box .tel-link:hover{
    color: #4a3f7f;
}

footer .info-box span,
footer .info-box .email-link {
	display: block;
	font-size: 14px;
    line-height: 20px;
    margin-bottom: 18px;
}

footer .order-info-box .order-btn,
footer .contact-info-box .contact-btn {
	background-color: #f99074;
	-webkit-box-shadow: none;
	-moz-box-shadow: 0 20px 30px -18px #f99074;
	-o-box-shadow: 0 20px 30px -18px #f99074;
	box-shadow: 0 20px 30px -18px #f99074;
    width: 100%;
    display: inline-block;
    padding: 15px 0;
    border-radius: 8px;
    text-align: center;
    color: white;
}

footer .contact-info-box .contact-btn:hover {
	background-color: #eb7353;
}

footer .order-info-box .order-btn {
	color: #fff;
	background-color: #2c1f69d9;
	-webkit-box-shadow: 0 20px 30px -18px #2c1f69d9;
	-moz-box-shadow: 0 20px 30px -18px #2c1f69d9;
	-o-box-shadow: 0 20px 30px -18px #2c1f69d9;
	box-shadow: 0 20px 30px -18px #2c1f69d9;
}

footer .order-info-box .order-btn:hover {
	background-color: #2c1f69;
}

footer .section-bottom {
    background-color: #212121;
    padding: 20px 0;
	color: #fff;
    font-size: 16px;
    line-height: 20px;
}

footer .section-bottom .footer-row {
    display: flex;
    flex-wrap: wrap;
	-ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
	margin: 0;
}

footer .section-bottom .footer-row p{
    margin: 0;
}

footer .section-bottom .footer-row .createby {
	margin-bottom: 0;
}

footer .section-bottom .footer-row .createby a {
	position: relative;
	color: #fff;
	margin-left: 5px;
}

footer .section-bottom .footer-row .createby a::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    background-color: #fff;
    display: block;
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    bottom: 0;
    left: 0;
}

footer .section-bottom .footer-row .createby a:hover::after {
    width: 0;
}

footer .order-info-box .order-btn:hover, 
footer .contact-info-box .contact-btn:hover{
    box-shadow: none;
}

footer .phone_wrap{
    min-height: 60px;
}

/*================================Modal=========================*/
.modal{
    z-index: 99999;
}

.modal-content {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    padding-top: 40px;
    position: relative;
}

.modal-header {
    padding: 0 60px 20px 60px;
    border: none;
}

.modal-body {
    padding: 0 60px 60px;
}

 .modal-content .close {
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
    right: 40px;
    top: 38px;
    width: 20px;
    z-index: 100;
    padding: 0;
    outline: transparent;
    border: none;
    background: transparent;
}

.modal-content .close::before, .modal-content .close::after {
    content: '';
    position: absolute;
    background: #282828;
    width: 100%;
    height: 2px;
    left: 0;
}

.modal-content .close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal-content .close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media only screen and (max-width: 450px){
    .modal-body {
        padding: 0 30px 30px;
    }
}


#productOrderModal .modal-content .close{
     top: 20px;
}

#productOrderModal .modal-header {
    padding: 14px 50px 14px 50px;
    border: none;
    background: #eb7353;
    color: white;
    margin-bottom: 50px;
}

#productOrderModal .modal-content{
    padding-top: 0;
}

#productOrderModal .modal-content .close::before, 
#productOrderModal .modal-content .close::after{
    background: #fff;
}

#productOrderModal .product_title{
    margin-bottom: 30px;
    font-size: 22px;
}

/*=============================Breadcrumb=========================*/

.breadcrumb {
    color: black;
    padding: 18px 0;
    margin: 0;
}

.breadcrumb-list {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.breadcrumb-list li i {
    padding: 0 15px;
    font-size: 12px;
}

.breadcrumb-list a {
    color: #a3a2a2;
}

.inside_pages{
    background: #ededed;
}

.inside_pages .title_wrap{
    padding: 42px 0;
    text-align: center;
}

.inside_pages .title_wrap h1{
    font-size: 30px;
    margin-bottom: 0;
}

.contact_wrap .contact_box {
    background-color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.17px;
    position: relative;
    /*height: 621px;*/
}

.contact_wrap .contact_form_wrap.contact_box{
    box-shadow: 0 0 50px rgb(0 0 0 / 10%);
}

.contact_wrap .contact_box .contact_box_header {
    border-radius: 2px 2px 0 0;
    background-color: black;
    padding: 17px 30px;
    color: #fff;
    font-size: 20px;
}

.contact_wrap .contact_info .contact_box_header{
    background: transparent;
    color: black;
    font-size: 36px;
    margin-bottom: 30px;
}

.contact_wrap .contact_info .mail{
    border-top: 1px solid #f0f0f0;
}

.contact_wrap .contact_info ul{
    padding: 0px 30px;
}

.contact_wrap .contact_info ul li {
    padding: 35px 0px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 16px;
}

.contact_wrap .contact_info ul li a:not(:nth-child(2)){
    margin-left: 15px;
}

.contact_wrap .contact_info ul li span{
    display: block;
    margin-right: 15px;
}

.contact_wrap .contact_info li img{
    width: 20px;
}

.contact_wrap .contact_form_wrap.contact_box::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 5px 5px 0 0;
    border-bottom: 6px solid black;
}

.contact_form{
    padding: 20px 30px 50px;
}

#map{
    height: 400px;
}

.static_content .quote{
    width: 45%;
    height: 300px;
    margin: 0 auto 25px;
    border-radius: 5px;
    overflow: hidden;
}

.static_content .quote img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.bullets img{
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 10px;
    padding: 10px;
}

.bullets{
    flex-wrap: wrap;
}

.bullets .active{
    border: 1px solid #eb7353;
    border-radius: 5px;
}

.zoom-box .viewer-box {
    display: none;
    position: absolute;
    background: #fff;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #bdbdbd;
}

.big-image {
    height: 300px;
    width: 100%;
    object-fit: contain;
}

.zoom-box {
    position: relative;
    margin-bottom: 15px;
}

.zoom-box .zoom-selector {
    position: absolute;
    display: none;
    cursor: pointer;
}

.zoom-box .viewer-box>img {
    position: absolute;
    object-fit: contain;
}

.product_content .product_order_wrap{
    padding: 30px;
    background-color: rgba(151,164,175,.15);
    border-radius: 10px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.product_content .product_order_wrap h3{
    margin-bottom: 22px;
}

.product_content .product_order_wrap p{
    margin-bottom: 30px;
}

.product_content .product_order_wrap a{
    padding: 17px 32px;
    background: #eb7353;
    color: white;
    border-radius: 32px;
    display: block;
    text-align: center;
    font-size: 20px;
}

.product_content .product_order_wrap a:hover{
    background: #ea623e;
}

.product_content table {
    width: calc(33.33% - 20px) !important;
    margin: 10px 20px 10px 0;
}

.product_content table td{
    padding: 7px 15px;
    height: 45px;
    width: 50% !important;
}

.product_content table tr{
    border: 1px solid #f1eded;
}

.fullstory .table_wrap_title {
    margin: 40px 0 30px;
    font-size: 22px;
    border-bottom: 1px solid #f1eded;
    padding: 10px 0;
}

.fullstory .table_wrap thead tr{
    border: none;
}

.fullstory .table_wrap thead tr th{
    height: 40px;
    background-color: white !important;
}

.product_content tr:nth-child(odd){
    background-color: #f0f1f3;
}

/*.product_content table tr td:first-child{*/
/*    color: #7a889d;*/
/*}*/

.product_content tbody, .product_content td, .product_content tfoot, .product_content th, .product_content thead, .product_content tr{
    vertical-align: middle;
}

.content_all #dle-content{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.content_all #dle-content>*{
    flex-shrink: 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}
    

@media only screen and (max-width: 1399.99px){
    .about .about_left{
        max-width: none;
    }
    
    .product_info .item{
        width: calc(33.33% - 10px);
    }
}

@media only screen and (min-width: 991.99px) and (max-width: 1200px){
    .categories .img_wrap{
        right: 12px;
        height: 100px;
    }
}

@media only screen and (min-width: 991.99px) {

    
    header .dropdown:hover .dropdown-menu{
        transform: scale(1, 1) !important;
    }  

    .header_dropdown {
        background-color: white;
    }

    .header_dropdown .language a,
    .header_dropdown .nav-link{
        color: black !important;
    }

    .header_dropdown .logo{
        filter: none;
    }
    
    .inner-header .nav-item .nav-link{
        color: black !important;
    }

}



@media only screen and (max-width: 1199.99px){

    .about{
        padding: 3rem 0;
    }

    .about::before{
        content: none;
    }

    .about .icon_wrap{
        display: none;
    }

    .about .img_wrap{
        margin: 0;
        height: 270px;
    }

    .about .bg_white{
        display: none;
    }

    .about .about_left{
        padding: 0;
    }

    .about .about_right .description{
        padding: 20px 25px;
    }

    .statistics .icon_wrap{
        width: 100px;
        height: 100px;
    }

    .statistics .box_body h2{
        font-size: 20px;
    }

    .statistics .box_body p{
        font-size: 16px;
    }

    footer .section-top .row>div{
        margin-bottom: 15px;
    }

}

@media only screen and (max-width: 991.99px){

    header {
        padding: 15px 0;
    }

    header.fixed{
        padding: 0;
    }

    header .wrapper-menu{
        position: relative;
        z-index: 999;
    }

    .ham {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 400ms;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .ham1 .top {
        stroke-dasharray: 40 139;
    }

    .line {
        fill: none;
        transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        stroke: #fff;
        stroke-width: 2.5;
        stroke-linecap: round;
    }

    .ham1 .bottom {
        stroke-dasharray: 40 180;
    }

    .hamRotate.active {
        transform: rotate(45deg);
    }

    .ham1.active .top {
        stroke-dashoffset: -98px;
    }

    .ham1.active .bottom {
        stroke-dashoffset: -138px;
    }

    main .carousel-caption .carousel_text{
        width: 80%;
    }

    .dropdown_resp{
        display: block !important;
    }

    header .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 90%;
        background: #fff;
        padding: 150px 50px 50px;
        overflow-y: auto;
        height: 100vh;
    }

    header .nav-item{
        padding: 0;
    }

    header .nav-item .nav-link{
        color: black;
    }

    header .resp_nav .line{
        stroke: #eb7353;
    }

    header .dropdown .dropdown-menu{
        position: static;
        display: none;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        transition: auto;
    }

    header .nav-item .nav-link {
        color: black;
        padding: 16px 0;
        border-radius: 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    header .nav-item .nav-link::before{
        content: none;
    }

    header .nav-item .nav-link::after{
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background-color: rgba(0,0,0,.16);
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
        transition: all ease .3s;
    }

    header .nav-item:hover .nav-link::after{
        height: 2px;
        background-color: #eb7353;
        width: 100%;
    }

    header .resp_nav .language a{
        color: black;
    }

    header .resp_btn {
        display: flex;
        align-items: center;
    }

    header .btn_wrapper{
        margin-bottom: 30px;
        justify-content: space-between;
    }

    header .btn_wrapper .order:hover{
        color: #eb7353;
    }

    header .language a:first-child::before{
        background-color: #eb7353;
    }

    .statistics .row>div{
        margin-bottom: 15px;
    }
    
    .call-to-action .row>div:first-child{
        margin-bottom: 25px;
        text-align: center;
    }

    .call-to-action .order_btn{
        margin: auto !important;
    }
    
    .contact_wrap .contact_info ul{
        padding: 0;
    }
    
    .contact_wrap .contact_info .contact_box_header{
        padding-left: 0;
    }
    
    .product_info .item{
        width: calc(50% - 10px);
    }
    
    .product_content table {
        width: calc(50% - 20px) !important;
    }
    
    .categories .img_wrap{
        height: 110px;
    }
}

@media only screen and (min-width: 767.99px) and (max-width: 991.99px){
    .categories .right .row>div:last-child .category_box,
    .categories .center .category_box{
        height: 250px;
    }
    
    .categories .right .row>div:last-child .category_box .img_wrap,
    .categories .center .img_wrap{
        height: 200px;
    }

    .categories .left .col-12,
    .categories .right .col-12{
        width: 50%;
    }
    
    .categories .right .row>div:nth-child(1),
    .categories .left .row>div:nth-child(1){
        padding-right: 8px;
    }
    
    .categories .right .row>div:nth-child(2),
    .categories .left .row>div:nth-child(2){
        padding-left: 8px;
    }
    
    .categories .right .row>div:last-child{
        width: 100%;
    }
}

@media only screen and (max-width: 767.99px){
    .about .about_left{
        text-align: center;
        margin-top: 0;
    }

    .about .about_left p{
        margin-bottom: 28px;
    }

    .categories .right .img_wrap,
    .categories .img_wrap,
    .categories .center .img_wrap{
        height: 90px;
    }
    
    main form{
        width: 100%;
    }
    
    main form .form-control{
        padding-right: 40%;
    }
    
    main form .btn .text{
        padding: 0;
    }
    
    .product_info .item{
        width: calc(100% - 10px);
    }
    
    .product_content table {
        width: calc(100% - 20px) !important;
    }
    
    .zoom-box .viewer-box{
        display: none !important;
    }
}

@media only screen and (max-width: 567px){
    footer .order-info-box .order-btn, 
    footer .contact-info-box .contact-btn{
        padding: 15px 48px;
        width: max-content;
    }

    main form,
    main .carousel-caption .carousel_text{
        width: 100%;
    }


}

@media only screen and (max-width: 376px){
    main form .btn .search_icon{
        margin-left: 10px;
    }
    
    main form .btn .text{
        font-size: 16px;
    }
    
    main form button.btn:before{
        right: 93%;
    }
    
    .categories .img_wrap{
        right: 25px;
    }
}

@media (min-width: 576px){
    #productOrderModal .modal-dialog {
        max-width: 580px;
    }
}