.about_company_body > div:last-child > h4 {
	border:none;
}
.about_company_body > div {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    -webkit-user-select:none;
    user-select:none;
    cursor:pointer;
}
.about_company_body > div:hover {
    background: #f5f5f5;
    border-color: #ebebeb;
}
.about_company_body > div::before {
	content: "";
    height: 9px;
    width: 9px;
    background-color: #e1e1e1;
    position: absolute;
    right: 20px;
    transition:inherit;
    border-radius:50%;
}
.about_company_body > div.active::before,
.about_company_body > div:hover::before {
	background-color:#eeaf5e;
}
.bg_note .about_company_body {
	padding:0px !important; 
}

.about_company_content {
	display:none;
}
.about_company_content.active {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.acc_content {
    width: 100%;
    padding: 50px 30px;
}
p.acc_title {
    font-weight: 600;
    font-size: 19px;
    padding-bottom: 30px;
    color: #151515;
}
p.acc_abs {
    line-height: 25px;
    color: #777777;
    font-size: 15px;
}

.new_products_btn{
    display: flex;
    overflow: hidden;
    align-self: center;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 34px;
    margin-right: 90px;
    cursor:pointer;
}
.new_products_btn > span {
    position: relative;
    display: inline-block;
    align-self: flex-end;
    height: 2px;
    width: 100%;
    background: #151515;
    transition: width .2s ease;
}
.new_products_btn > span > span {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    height: inherit;
    width: inherit;
    background: #eeaf5e;
    transform: translateX(-100%);
    animation: pagOutX .3s;
}
.new_products_btn:hover > span > span {
    animation: pagInX .3s forwards;
}
.new_products_btn:hover > span:nth-child(2) > span {
    animation-delay: .1s;
}
.new_products_btn:hover > span:nth-child(3) > span {
    animation-delay: .2s;
}
@keyframes pagInX {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0);
	}
}

@keyframes pagOutX {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(100%);
	}
}

@keyframes arrowTransformY {
	25% {
		transform: translateY(5px);
	}
	75% {
		transform: translateY(-5px);
	}
}





.menu_md {
	display:flex;
	align-items: center;
}
.new_products {
    position: fixed;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 448px;
    background-color: white;
    z-index: 15;
    transform: translateX(100%);
    -webkit-transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: 0.25s all cubic-bezier(0.65, 0.05, 0.36, 1);
    padding: 50px 20px 30px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.new_products_top {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    cursor:pointer;
}
.new_products_close_btn {
    position: relative;
    height: 52px;
    width: 62px;
    transform: rotate(45deg);
    z-index: -1;
}
.new_products_close_btn > span {
	position: absolute;
    background: #151515;
    transition: all .15s ease-in-out;
}
.new_products_close_btn > span:nth-child(1) {
    height: 0;
    width: 2px;
    top: 0;
    left: 50%;
    margin-left: -1px;
    transition-delay: 0s;
}
.new_products_close_btn > span:nth-child(2) {
    width: 0;
    height: 2px;
    left: 0;
    top: 50%;
    margin-top: -1px;
    transition-delay: .15s;
}
.new_products.active .new_products_close_btn > span:nth-child(1) {
	height: 100%;
    transition-delay: .3s;
}
.new_products.active .new_products_close_btn > span:nth-child(2) {
    width: 100%;
    transition-delay: .45s;
}
.new_products.active {
	transform: translateX(0);
}

span.new_products_section_title {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 20px;
    text-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.latest_item {
	margin-bottom: 30px;
}
.latest_item > a {
	position: relative;
	display:block;
	overflow: hidden;
}
.latest_item > a img{
	transform: scale(1.2);
	transition: transform 0.3s;
}
.latest_item:hover > a img{
	transform: scale(1);
}
.lpic {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    background-color:rgba(96, 193, 251, 0.44);
    z-index: 3;
}
.lpic > i {
	color:white;
	font-size: 25px;
	transition: font-size 0.3s;
}
.latest_item:hover .lpic {
	opacity: 1;
}
.latest_item:hover .lpic > i {
	font-size: 35px
}

.baseBoxLoader{
    display: flex;
    align-items: center;
}

.cubeBox{
    width: 200px;
    height: 200px;
    background-color: rgb(255, 0, 0);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 8s ease infinite;
}

.loadingLogo {
    position: absolute;
    z-index: 9;
    transform: rotate(-45deg) scale(1.3);
    opacity: 1;
     animation: fadeAnimate 2s infinite;
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,0.4));
}

.footerInfoCard{
    color: #fff;
    line-height: 1.5;
    margin-bottom: 15px;
}

.footerInfoCard a{
    color: #fff;
}

.footerSocialBox{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.footerSocialCard{
    font-size: 27px;
    color: #fff;
    margin: 0 10px;
}

.footerSocialCard a{
    color: #fff;
}

@keyframes fadeAnimate {
    0%{
        /* transform: ; */
        transform:rotate(-45deg) scale(1.3);
    }
    50%{
        transform:rotate(-45deg) scale(1);

    }
    100%{
        /* transform: scale(1.3); */
        transform:rotate(-45deg) scale(1.3);
    }
}

@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

@keyframes RotateAnimate {
    0%{
        transform: rotate(0);
    }
    50%{
        transform: rotate(180deg);
    }
    100%{
        transform: rotate(360deg);
    }
}



@media only screen and (max-width:991px){
	header {
	    height: 60px !important;
	}

    .about_company_content.active {
        flex-direction: column;
    }
}