:root {
    --purplecolor: #21345e;
    --redcolor: #da2222;
    --blackcolor: #212529;
    --graycolor: #BFC9CB;
    --lightcolor: #ECF2F2;
    --whitecolor: #FFFFFF;
    --easeoutcubic: cubic-bezier(.215, .61, .355, 1);
}

/*---------------------- Public Style ---------------------*/

body {
    background-color: var(--whitecolor);
    margin: 0;
    padding: 0;
    direction: rtl;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.overhide {
    overflow: hidden;
}

* {
    font-family: YekanBakh;
    outline: medium none !important;
    text-decoration: none !important;
}

.font-weight-900 {
    font-weight: 900;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-500 {
    font-weight: 500;
}

.container {
    max-width: 100%;
    padding: 0 200px;
}

::selection {
    background-color: var(--purplecolor);
    color: var(--whitecolor);
}

/*---------------------- Colors ---------------------*/

.text-purple {
    color: var(--purplecolor);
}

.text-red {
    color: var(--redcolor);
}

.text-black {
    color: var(--blackcolor);
}

.text-gray {
    color: var(--graycolor);
}

.text-light {
    color: var(--lightcolor);
}

.text-white {
    color: var(--whitecolor);
}

/*---------------------- /Colors ---------------------*/

/*---------------------- Backgrounds ---------------------*/

.bg-purple {
    background-color: var(--purplecolor);
}

.bg-red {
    background-color: var(--redcolor);
}

.bg-black {
    background-color: var(--blackcolor);
}

.bg-gray {
    background-color: var(--graycolor);
}

.bg-light {
    background-color: var(--lightcolor);
}

.bg-white {
    background-color: var(--whitecolor);
}

/*---------------------- /Backgrounds ---------------------*/

/*---------------------- Font Sizes ---------------------*/

.font-size-10 {
    font-size: 10px;
}

.font-size-12 {
    font-size: 12px;
}

.font-size-13 {
    font-size: 13px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-18 {
    font-size: 18px;
}

.font-size-20 {
    font-size: 20px;
}

.font-size-22 {
    font-size: 22px;
}

.font-size-24 {
    font-size: 24px;
}

.font-size-26 {
    font-size: 26px;
}

.font-size-28 {
    font-size: 28px;
}

.font-size-30 {
    font-size: 30px;
}

/*---------------------- /Font Sizes ---------------------*/

/*---------------------- Border Radius ---------------------*/

.rounded-2 {
    border-radius: 2px;
}

.rounded-4 {
    border-radius: 4px;
}

.rounded-6 {
    border-radius: 6px;
}

.rounded-8 {
    border-radius: 8px;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-12 {
    border-radius: 12px;
}

.rounded-14 {
    border-radius: 14px;
}

.rounded-16 {
    border-radius: 16px;
}

.rounded-18 {
    border-radius: 18px;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-22 {
    border-radius: 22px;
}

.rounded-24 {
    border-radius: 24px;
}

.rounded-26 {
    border-radius: 26px;
}

.rounded-28 {
    border-radius: 28px;
}

.rounded-30 {
    border-radius: 30px;
}

.rounded-lg {
    border-radius: 500px;
}

.rounded-circle {
    border-radius: 100%;
}

/*---------------------- /Border Radius ---------------------*/

/*---------------------- Border Colors ---------------------*/

.border-color-100 {
    border-color: var(--lightcolor);
    background-clip: padding-box;
}

.border-style-dashed {
    border-style: dashed;
}

/*---------------------- /Border Colors ---------------------*/

/*---------------------- Margins ---------------------*/

.mg-0 {
    margin: 0;
}

.mg-5 {
    margin: 5px;
}

.mg-10 {
    margin: 10px;
}

.mg-15 {
    margin: 15px;
}

.mg-20 {
    margin: 20px;
}

.mg-25 {
    margin: 25px;
}

.mg-30 {
    margin: 30px;
}

.mg-40 {
    margin: 40px;
}

/*---------------------- Margin X ---------------------*/

.mgx-0 {
    margin-right: 0;
    margin-left: 0;
}

.mgx-2 {
    margin-right: 2px;
    margin-left: 2px;
}

.mgx-5 {
    margin-right: 5px;
    margin-left: 5px;
}

.mgx-10 {
    margin-right: 10px;
    margin-left: 10px;
}

.mgx-15 {
    margin-right: 15px;
    margin-left: 15px;
}

.mgx-20 {
    margin-right: 20px;
    margin-left: 20px;
}

.mgx-25 {
    margin-right: 25px;
    margin-left: 25px;
}

.mgx-30 {
    margin-right: 30px;
    margin-left: 30px;
}

.mgx-40 {
    margin-right: 40px;
    margin-left: 40px;
}

/*---------------------- /Margin X ---------------------*/

/*---------------------- Margin Y ---------------------*/

.mgy-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mgy-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.mgy-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mgy-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.mgy-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mgy-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.mgy-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mgy-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

/*---------------------- /Margin Y ---------------------*/

/*---------------------- Margin Top ---------------------*/

.mgt-0 {
    margin-top: 0;
}

.mgt-5 {
    margin-top: 5px;
}

.mgt-10 {
    margin-top: 10px;
}

.mgt-15 {
    margin-top: 15px;
}

.mgt-20 {
    margin-top: 20px;
}

.mgt-25 {
    margin-top: 25px;
}

.mgt-30 {
    margin-top: 30px;
}

.mgt-40 {
    margin-top: 40px;
}

/*---------------------- /Margin Top ---------------------*/

/*---------------------- Margin Bottom ---------------------*/

.mgb-0 {
    margin-bottom: 0;
}

.mgb-5 {
    margin-bottom: 5px;
}

.mgb-10 {
    margin-bottom: 10px;
}

.mgb-15 {
    margin-bottom: 15px;
}

.mgb-20 {
    margin-bottom: 20px;
}

.mgb-25 {
    margin-bottom: 25px;
}

.mgb-30 {
    margin-bottom: 30px;
}

.mgb-40 {
    margin-bottom: 40px;
}

/*---------------------- /Margin Bottom ---------------------*/

/*---------------------- Margin Right ---------------------*/

.mgr-0 {
    margin-right: 0;
}

.mgr-5 {
    margin-right: 5px;
}

.mgr-10 {
    margin-right: 10px;
}

.mgr-15 {
    margin-right: 15px;
}

.mgr-20 {
    margin-right: 20px;
}

.mgr-25 {
    margin-right: 25px;
}

.mgr-30 {
    margin-right: 30px;
}

.mgr-40 {
    margin-right: 40px;
}

/*---------------------- /Margin Right ---------------------*/

/*---------------------- Margin Left ---------------------*/

.mgl-0 {
    margin-left: 0;
}

.mgl-5 {
    margin-left: 5px;
}

.mgl-10 {
    margin-left: 10px;
}

.mgl-15 {
    margin-left: 15px;
}

.mgl-20 {
    margin-left: 20px;
}

.mgl-25 {
    margin-left: 25px;
}

.mgl-30 {
    margin-left: 30px;
}

.mgl-0 {
    margin-left: 0;
}

.mgl-5 {
    margin-left: 5px;
}

.mgl-10 {
    margin-left: 10px;
}

.mgl-15 {
    margin-left: 15px;
}

.mgl-20 {
    margin-left: 20px;
}

.mgl-25 {
    margin-left: 25px;
}

.mgl-40 {
    margin-left: 40px;
}

/*---------------------- /Margin Left ---------------------*/

/*---------------------- /Margins ---------------------*/

/*---------------------- Paddings ---------------------*/

.pd-0 {
    padding: 0;
}

.pd-5 {
    padding: 5px;
}

.pd-10 {
    padding: 10px;
}

.pd-15 {
    padding: 15px;
}

.pd-20 {
    padding: 20px;
}

.pd-25 {
    padding: 25px;
}

.pd-30 {
    padding: 30px;
}

.pd-30 {
    padding: 30px;
}

/*---------------------- Padding X ---------------------*/

.pdx-0 {
    padding-right: 0;
    padding-left: 0;
}

.pdx-5 {
    padding-right: 5px;
    padding-left: 5px;
}

.pdx-10 {
    padding-right: 10px;
    padding-left: 10px;
}

.pdx-15 {
    padding-right: 15px;
    padding-left: 15px;
}

.pdx-20 {
    padding-right: 20px;
    padding-left: 20px;
}

.pdx-25 {
    padding-right: 25px;
    padding-left: 25px;
}

.pdx-30 {
    padding-right: 30px;
    padding-left: 30px;
}

.pdx-40 {
    padding-right: 40px;
    padding-left: 40px;
}

/*---------------------- /Padding X ---------------------*/

/*---------------------- Padding Y ---------------------*/

.pdy-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.pdy-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.pdy-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.pdy-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.pdy-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.pdy-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.pdy-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.pdy-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

/*---------------------- /Padding Y ---------------------*/

/*---------------------- Padding Top ---------------------*/

.pdt-0 {
    padding-top: 0;
}

.pdt-5 {
    padding-top: 5px;
}

.pdt-10 {
    padding-top: 10px;
}

.pdt-15 {
    padding-top: 15px;
}

.pdt-20 {
    padding-top: 20px;
}

.pdt-25 {
    padding-top: 25px;
}

.pdt-30 {
    padding-top: 30px;
}

.pdt-40 {
    padding-top: 40px;
}

/*---------------------- /Padding Top ---------------------*/

/*---------------------- Padding Bottom ---------------------*/

.pdb-0 {
    padding-bottom: 0;
}

.pdb-5 {
    padding-bottom: 5px;
}

.pdb-10 {
    padding-bottom: 10px;
}

.pdb-15 {
    padding-bottom: 15px;
}

.pdb-20 {
    padding-bottom: 20px;
}

.pdb-25 {
    padding-bottom: 25px;
}

.pdb-30 {
    padding-bottom: 30px;
}

.pdb-40 {
    padding-bottom: 40px;
}

/*---------------------- /Padding Bottom ---------------------*/

/*---------------------- Padding Right ---------------------*/

.pdr-0 {
    padding-right: 0;
}

.pdr-5 {
    padding-right: 5px;
}

.pdr-10 {
    padding-right: 10px;
}

.pdr-15 {
    padding-right: 15px;
}

.pdr-20 {
    padding-right: 20px;
}

.pdr-25 {
    padding-right: 25px;
}

.pdr-30 {
    padding-right: 30px;
}

.pdr-40 {
    padding-right: 40px;
}

/*---------------------- /Padding Right ---------------------*/

/*---------------------- Padding Left ---------------------*/

.pdl-0 {
    padding-left: 0;
}

.pdl-5 {
    padding-left: 5px;
}

.pdl-10 {
    padding-left: 10px;
}

.pdl-15 {
    padding-left: 15px;
}

.pdl-20 {
    padding-left: 20px;
}

.pdl-25 {
    padding-left: 25px;
}

.pdl-30 {
    padding-left: 30px;
}

.pdl-40 {
    padding-left: 40px;
}

/*---------------------- /Padding Left ---------------------*/

/*---------------------- /Paddings ---------------------*/

/*---------------------- Tooltip ---------------------*/

.tooltip {
    z-index: 99999;
}

.tooltip-inner {
    background-color: var(--blackcolor);
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 6px;
}

.tooltip .arrow::before {
    border-bottom-color: var(--blackcolor);
    border-top-color: var(--blackcolor);
}

/*---------------------- /Tooltip ---------------------*/

/*---------------------- Header Main ---------------------*/

.header-main {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 9999;
}
.header-page{
    position: relative;
    background: url('../images/site/bg-header.jpg') no-repeat center center / cover;
    padding-bottom: 20px;
}
.header-page::after {
    content: "";
    background: rgb(33, 37, 41);
    background: -moz-linear-gradient(0deg, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 1) 100%);
    background: linear-gradient(0deg, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#212529", endColorstr="#212529", GradientType=1);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.3;
    z-index: 10;
}

/*---------------------- Header Top ---------------------*/

.header-main .header-top{
    position: relative;
    padding: 20px 5px 30px;
    z-index: 99;
}

.header-main .socials .list-sc {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-main .socials .list-sc .item-sc {
    display: flex;
    font-size: 20px;
    font-weight: normal;
    color: var(--whitecolor);
    margin-left: 15px;
    transition: all 0.3s;
}

.header-main .contact .phone>a {
    transition: all 0.3s;
}

.header-main .socials .list-sc .item-sc:hover,
.header-main .contact .phone>a:hover {
    color: var(--blackcolor) !important;
}

.header-main .contact .btn-search {
    position: relative;
}

.header-main .contact .btn-search .input-search-ekib {
    position: absolute;
    left: 0;
    top: -10px;
    border: none;
    width: 300px;
    height: 40px;
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--blackcolor);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}
.header-main .contact .btn-search .input-search-ekib::placeholder{
    font-size: 12px;
    color: var(--graycolor);
    opacity: 1;
}

.header-main .contact .btn-search > i{
    position: relative;
    transition: all 0.4s;
}
.header-main .contact .btn-search.show > i{
    top: 2px;
    left: 2px;
    font-size: 18px;
    transform: rotate(180deg);
}

.header-main .contact .btn-search.show .input-search-ekib{
    opacity: 1;
    visibility: visible;
    left: 40px;
}

/*---------------------- /Header Top ---------------------*/

/*---------------------- Header Menu ---------------------*/

.header-main .container-affix {
    transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.header-main .container-affix.affix {
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
}

.header-main .container-affix.affix .header-menu {
    border-radius: 0;
    box-shadow: 0px 20px 25px -10px rgba(0, 0, 0, 0.20);
}

.header-main .header-menu {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--whitecolor);
    border-radius: 20px;
    padding: 0 30px;
    z-index: 99;
}

.header-main .header-menu .navbar {
    padding: 0;
}

/* .header-main .header-menu .navbar .navbar-brand {
    padding: 0;
    margin: 0 0 0 60px;
}

.header-main .header-menu .navbar .navbar-brand>img {
    height: 55px;
} */

.header-main .header-menu .navbar .navbar-brand {
	position: relative;
	padding: 0;
	margin: 0 0 0 60px;
	width: 150px;
}

.header-main .header-menu .navbar .navbar-brand .logo-box {
    background-color: var(--redcolor);
    width: 150px;
    height: 180px;
    border-radius: 0px 0px 20px 20px;
    position: absolute;
    right: 0;
    top: -65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    z-index: 9999;
    transition: all 0.3s;
}

.header-main .affix .header-menu .navbar .navbar-brand .logo-box {
    width: 130px;
    height: 160px;
    padding: 30px 15px 15px;
}

.header-main .header-menu .navbar .navbar-brand .logo-box::before {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent var(--redcolor) transparent;
    position: absolute;
    top: 0;
    left: -14px;
}

.header-main .header-menu .navbar .navbar-brand .logo-box::after {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 15px 0 0 15px;
    border-color: transparent transparent transparent var(--redcolor);;
    position: absolute;
    top: 0;
    right: -14px;
}

.header-main .header-menu .navbar .navbar-brand .logo-box>img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.header-main .affix .header-menu .navbar .navbar-brand .logo-box>img {
    height: 40px;
}

.header-main .header-menu .navbar .navbar-nav {
    padding: 0;
}

.header-main .header-menu .navbar .navbar-nav .nav-item {
    position: relative;
    margin-left: 40px;
}

.header-main .header-menu .navbar .navbar-nav .nav-link {
    position: relative;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--blackcolor);
    z-index: 10;
    transition: all 0.4s;
}

.header-main .header-menu .navbar .navbar-nav .nav-link::before {
    content: "";
    position: relative;
    width: 100%;
    height: 2px;
    display: block;
    bottom: -30px;
    background: currentColor;
    -webkit-transition: opacity .4s var(--easeoutcubic), -webkit-transform .4s var(--easeoutcubic);
    transition: opacity .4s var(--easeoutcubic), -webkit-transform .4s var(--easeoutcubic);
    transition: transform .4s var(--easeoutcubic), opacity .4s var(--easeoutcubic);
    transition: transform .4s var(--easeoutcubic), opacity .4s var(--easeoutcubic), -webkit-transform .4s var(--easeoutcubic);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.header-main .header-menu .navbar .navbar-nav .nav-link:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: center left;
    transform-origin: center left;
    background: var(--redcolor);
}

@-webkit-keyframes dashanim-active {
    0% {
        width: 100%;
        right: 0;
        left: auto
    }

    50.9% {
        width: 0;
        right: 0;
        left: auto
    }

    51% {
        right: auto;
        left: 0
    }

    99.9% {
        right: auto;
        left: 0
    }

    100% {
        width: 100%;
        right: 0;
        left: auto
    }
}

@keyframes dashanim-active {
    0% {
        width: 100%;
        right: 0;
        left: auto
    }

    50.9% {
        width: 0;
        right: 0;
        left: auto
    }

    51% {
        right: auto;
        left: 0
    }

    99.9% {
        right: auto;
        left: 0
    }

    100% {
        width: 100%;
        right: 0;
        left: auto
    }
}

.header-main .header-menu .navbar .navbar-nav .nav-link:hover,
.header-main .header-menu .navbar .dropdown.show .nav-link {
    color: var(--redcolor);
}

.header-main .header-menu .navbar .navbar-nav .nav-link>i {
    font-size: 10px;
    margin-right: 8px;
}

.header-main .header-menu .navbar .navbar-nav .dropdown-toggle::after {
    display: none;
}

.header-main .header-menu .navbar .dropdown .dropdown-menu {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    position: absolute;
    background: var(--purplecolor);
    padding: 20px;
    border-radius: 30px;
    z-index: 1022;
    top: 70px;
    right: 0;
    left: -148px;
}

.header-main .header-menu .navbar .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 60px;
}

.header-main .header-menu .navbar .dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    background-image: url("../images/site/before-sub-menu.svg") !important;
    background-position: center center;
    background-repeat: no-repeat;
    width: 26px;
    top: -17px;
    height: 40px;
    right: 25px;
    z-index: 1022;
    box-shadow: none;
}

.header-main .header-menu .navbar .dropdown-menu .dropdown-item {
    text-align: right;
    font-size: 14px;
    font-weight: 300;
    color: var(--whitecolor);
    padding: 8px 0;
    border-radius: 12px;
    transition: all 0.4s;
}

.header-main .header-menu .navbar .dropdown-menu .dropdown-item:hover {
    background-color: var(--whitecolor);
    color: var(--purplecolor);
    font-weight: 700;
    padding-right: 15px;
}

.header-main .header-menu .btns-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-main .header-menu .btns-head .btn-catalog {
    background-color: var(--purplecolor);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    height: 60px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    color: var(--whitecolor);
    margin-right: 10px;
    transition: all 0.4s;
}

.header-main .header-menu .btns-head .btn-catalog:hover {
    background-color: var(--redcolor);
}

.header-main .header-menu .btns-head .btn-catalog>i {
    font-size: 25px;
    margin-left: 10px;
}

.header-main .header-menu .btns-head .btn-lang {
    position: relative;
    background-color: var(--lightcolor);
    width: 90px;
    height: 60px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    transition: all 0.4s;
}

.header-main .header-menu .btns-head .btn-lang:hover,
.header-main .header-menu .btns-head .btn-lang.show {
    background-color: var(--graycolor);
    padding-bottom: 15px;
}

.header-main .header-menu .btns-head .btn-lang::after {
    content: "\e900";
    font-family: 'icomoon';
    font-size: 12px;
    color: var(--white);
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: all 0.4s;
}

.header-main .header-menu .btns-head .btn-lang:hover::after,
.header-main .header-menu .btns-head .btn-lang.show::after {
    bottom: 3px;
    opacity: 1;
}

.header-main .header-menu .btns-head .btn-lang>img {
    height: 25px;
}

.header-main .header-menu .btns-head .btn-lang .dropdown-lang {
    position: absolute;
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0px 0 25px -10px rgba(0, 0, 0, 0.20);
    top: 80px;
    right: -60%;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.header-main .header-menu .btns-head .btn-lang.show .dropdown-lang {
    top: 60px;
    opacity: 1;
    visibility: visible;
}

.header-main .header-menu .btns-head .btn-lang .list-lang {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-main .header-menu .btns-head .btn-lang .list-lang a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 400;
    color: var(--blackcolor);
    padding: 10px 5px;
    border-radius: 10px;
    transition: all 0.4s;
}

.header-main .header-menu .btns-head .btn-lang .list-lang a:hover {
    background-color: var(--lightcolor);
    padding-right: 10px;
}

.header-main .header-menu .btns-head .btn-lang .list-lang a.active {
    background-color: var(--blackcolor);
    padding-right: 10px;
    color: var(--white);
}

.header-main .header-menu .btns-head .btn-lang .list-lang img {
    height: 20px;
    margin-left: 10px;
}

.header-main .header-menu .btns-head .box-icon-menu {
    background-color: var(--purplecolor);
    width: 80px;
    height: 50px;
    border-radius: 100px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.header-main .header-menu .btns-head .hamburger {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-main .header-menu .btns-head .hamburger-box {
    width: 28px;
    height: 24px;
}

.header-main .hamburger--slider .hamburger-inner {
    top: 5px;
}

.header-main .hamburger-inner,
.header-main .hamburger-inner::before,
.header-main .hamburger-inner::after {
    width: 28px;
    height: 2px;
    background-color: var(--whitecolor);
}

.header-main .hamburger--slider .hamburger-inner::before {
    top: 8px;
}

.header-main .hamburger--slider .hamburger-inner::after {
    top: 16px;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--whitecolor);
}

.header-main .hamburger.is-active:hover {
    opacity: 1;
}

.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(-90deg);
}

.header-main .header-menu .navbar .btn-catalog {
    background-color: var(--redcolor);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    height: 50px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    color: var(--whitecolor);
    margin-bottom: 20px;
    transition: all 0.4s;
}

.header-main .header-menu .navbar .btn-catalog>i {
    font-size: 22px;
    margin-left: 10px;
}

/*---------------------- /Header Menu ---------------------*/

/*---------------------- /Header Main ---------------------*/

/*---------------------- Content Main ---------------------*/

.content-main .title-section {
    width: 100%;
    text-align: center;
}

.content-main .title-section .title {
    font-size: 40px;
    font-weight: 900;
    color: var(--purplecolor);
    margin: 0;
}

.content-main .title-section .desc {
    font-size: 25px;
    font-weight: 400;
    color: var(--purplecolor);
    margin: 0;
}

.content-main .title-section .lines {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-main .title-section .lines .star {
    width: 40px;
}

.content-main .title-section .lines .rtl-line,
.content-main .title-section .lines .ltr-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.content-main .title-section .lines .rtl-line::before,
.content-main .title-section .lines .rtl-line::after,
.content-main .title-section .lines .ltr-line::before,
.content-main .title-section .lines .ltr-line::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 8px;
    border-radius: 50px;
    background-color: var(--lightcolor);
    margin-left: 10px;
}

.content-main .title-section .lines .rtl-line::after {
    width: 30px;
}

.content-main .title-section .lines .ltr-line {
    justify-content: flex-end;
}

.content-main .title-section .lines .ltr-line::before {
    width: 30px;
    margin-right: 10px;
    margin-left: auto;
}

.content-main .title-section .lines .ltr-line::after {
    width: 15px;
    margin-right: 10px;
    margin-left: auto;
}

.content-main .btn-more-ekib {
    background-color: var(--redcolor);
    padding: 15px 30px 15px 20px;
    height: 58px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--whitecolor);
    margin-right: auto;
    transition: all 0.4s;
}

.content-main .btn-more-ekib>i {
    font-size: 35px;
    margin-right: 15px;
    transition: all 0.4s;
}

.content-main .btn-more-ekib:hover>i {
    margin-right: 10px;
}

/*---------------------- Slideshow Main ---------------------*/

.content-main .sec-slideshow{
    position: relative;
}
.sec-slideshow .swiper-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
}

.sec-slideshow .swiper-wrapper,
.sec-slideshow .swiper-slide,
.sec-slideshow .swiper-slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-slideshow .swiper-slide {
    position: relative;
}

.sec-slideshow .swiper-slide::after {
    content: "";
    background: rgb(33, 37, 41);
    background: -moz-linear-gradient(0deg, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 1) 100%);
    background: linear-gradient(0deg, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#212529", endColorstr="#212529", GradientType=1);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.8;
    z-index: 10;
}

.sec-slideshow .options-swiper {
    position: absolute;
    top: 35%;
    right: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.sec-slideshow .swiper-pagination {
    position: relative;
    bottom: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: auto;
    top: auto;
    transform: none;
}

.sec-slideshow .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    margin: 5px 0 !important;
    background-color: var(--whitecolor);
    opacity: 0.15;
    transition: all 0.4s;
}

.sec-slideshow .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--redcolor);
    height: 60px;
    opacity: 1;
}

.sec-slideshow .swiper-button {
    position: relative;
    display: flex;
    font-size: 40px;
    color: var(--whitecolor);
    opacity: 0.2;
    transition: all 0.4s;
}

.sec-slideshow .swiper-button:hover {
    opacity: 1;
}

.sec-slideshow .swiper-button::before,
.sec-slideshow .swiper-button::after {
    content: "";
    width: 4px;
    height: 10px;
    border-radius: 10px;
    background-color: var(--whitecolor);
    position: absolute;
    bottom: -20px;
    right: 0;
    left: 0;
    margin: 0 auto;
    transition: all 0.3s;
}

.sec-slideshow .swiper-button::after {
    height: 15px;
    bottom: -45px;
}

.sec-slideshow .swiper-slider-next {
    margin-bottom: 70px;
}

.sec-slideshow .swiper-slider-prev {
    margin-top: 70px;
}

.sec-slideshow .swiper-slider-prev::before {
    bottom: auto;
    top: -20px;
}

.sec-slideshow .swiper-slider-prev::after {
    bottom: auto;
    top: -45px;
}

.sec-slideshow .swiper-slider-next:hover::before {
    bottom: -15px;
}

.sec-slideshow .swiper-slider-next:hover::after {
    bottom: -40px;
}

.sec-slideshow .swiper-slider-prev:hover::before {
    top: -15px;
}

.sec-slideshow .swiper-slider-prev:hover::after {
    top: -40px;
}

.sec-slideshow .page-scroll {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 320px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--blackcolor);
    font-size: 18px;
    font-weight: 600;
    z-index: 99;
    margin: 0 auto;
    padding-top: 15px;
}

.sec-slideshow .page-scroll::before {
    content: "";
    background: url('../images/site/scroll-curve.svg') no-repeat center center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.sec-slideshow .page-scroll>i {
    position: relative;
    font-size: 40px;
    margin-top: 3px;
    z-index: 10;
}

.sec-slideshow .page-scroll>i,
.sec-slideshow .page-scroll>.text {
    position: relative;
    z-index: 10;
}

/*---------------------- /Slideshow Main ---------------------*/

/*---------------------- Catagory Product ---------------------*/

.sec-catagory-product {
    padding: 150px 0;
}

.sec-catagory-product .swiper-catagory {
    margin-top: 60px;
}

.sec-catagory-product .swiper-slide {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.sec-catagory-product .swiper-slide::before {
    content: "";
    width: 250px;
    height: 60px;
    border-radius: 20px;
    background-color: var(--purplecolor);
    transform: rotate(-5deg);
    position: absolute;
    top: 50px;
    right: 10px;
    z-index: 1;
    opacity: 0;
    transition: all 0.4s;
}

.sec-catagory-product .swiper-slide:hover::before {
    opacity: 1;
    top: 10px;
}

.sec-catagory-product .swiper-slide::after {
    content: "";
    width: 200px;
    height: 50px;
    border-radius: 20px;
    background-color: var(--redcolor);
    transform: rotate(5deg);
    position: absolute;
    top: 50px;
    left: 10px;
    z-index: 0;
    opacity: 0;
    transition: all 0.4s;
}

.sec-catagory-product .swiper-slide:hover::after {
    transition-delay: 0.1s;
    opacity: 1;
    top: 15px;
}

.sec-catagory-product .box-ctg {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: var(--purplecolor);
    border-radius: 30px;
    padding-bottom: 50px;
    z-index: 10;
    transition: all 0.4s;
}

.sec-catagory-product .box-ctg:hover {
    background-color: var(--graycolor);
}

.sec-catagory-product .box-ctg .image-ctg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-catagory-product .box-ctg .image-ctg>img {
    height: 160px;
    max-width: 80%;
    object-fit: contain;
    transition: all 0.4s;
}

.sec-catagory-product .box-ctg:hover .image-ctg>img {
    transform: rotate(15deg);
}

.sec-catagory-product .box-ctg .title-ctg {
    position: absolute;
    bottom: 0;
    width: 220px;
    height: 50px;
    z-index: 10;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    padding-top: 14px;
}

.sec-catagory-product .box-ctg .title-ctg .text {
    position: relative;
    margin: 0;
    z-index: 10;
    font-size: 20px;
    font-weight: 400;
    color: var(--blackcolor);
    width: 80%;
    margin: 0 auto;
    transition: all 0.4s;
}

.sec-catagory-product .box-ctg:hover .title-ctg .text {
    font-weight: bold;
    color: var(--redcolor);
}

.sec-catagory-product .box-ctg .title-ctg::before {
    content: "";
    background: url('../images/site/catagory-curve.svg') no-repeat center center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.sec-catagory-product .row-swiper {
    position: relative;
}

.sec-catagory-product .swiper-button {
    position: absolute;
    top: 46%;
    z-index: 99;
    font-size: 40px;
    color: var(--lightcolor);
    transition: all 0.4s;
}

.sec-catagory-product .swiper-button:hover {
    color: var(--purplecolor);
}

.sec-catagory-product .swiper-ctg-next {
    right: -80px;
}

.sec-catagory-product .swiper-ctg-prev {
    left: -80px;
}

/*---------------------- /Catagory Product ---------------------*/

/*---------------------- Section Slogan ---------------------*/

.sec-slogan {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.sec-slogan .slogan-logo {
    background: var(--redcolor) url('../images/site/logo-slogan.png') repeat-x center center / 260px;
    width: 130%;
    height: 75px;
    position: absolute;
    top: 25%;
    right: -30%;
    transform: translateX(0) rotate(1.9deg);
    z-index: 5;
}

.sec-slogan .slogan-text {
    background: var(--purplecolor);
    width: 130%;
    height: 75px;
    position: absolute;
    top: 25%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(0) rotate(-1.9deg);
    z-index: 10;
}

.sec-slogan .slogan-text h3 {
    font-size: 22px;
    font-weight: 400;
    color: var(--whitecolor);
    margin: 0 30px;
    white-space: nowrap;
}

.sec-slogan .slogan-text img {
    width: 25px;
    filter: brightness(0) invert(1);
}

.elevatorL-transition {
    animation: moveLeft 1s forwards;
    /*   animation-delay:2s; */
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -3s);

}

.elevatorR-transition {
    animation: moveRight 1s forwards;
    /*     animation-delay:2s; */
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -3s);
}

@keyframes moveLeft {
    0% {
        transform: translateX(0) rotate(1.9deg);
    }

    100% {
        transform: translateX(-30em) rotate(1.9deg);
    }
}

@keyframes moveRight {
    0% {
        transform: translateX(0px) rotate(-1.9deg);
    }

    100% {
        transform: translateX(30em) rotate(-1.9deg);
    }
}

/*---------------------- /Section Slogan ---------------------*/

/*---------------------- Section About ---------------------*/

.sec-aboutus {
    position: relative;
    padding: 150px 0;
}

.sec-aboutus .title-main {
    margin: 0;
}

.sec-aboutus .title-main .company {
    display: block;
    font-size: 40px;
    font-weight: 400;
    color: var(--purplecolor);
    text-align: right;
}

.sec-aboutus .title-main .ekib {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 40px;
    font-weight: 900;
    color: var(--purplecolor);
}

.sec-aboutus .title-main .ekib .star {
    width: 40px;
    margin-right: 10px;
    transform: rotate(-2deg);
}

.sec-aboutus .desc {
    font-size: 20px;
    font-weight: 300;
    color: var(--blackcolor);
    text-align: justify;
    margin: 30px 0 0;
    line-height: 40px;
}

.sec-aboutus .btn-more-ekib {
    margin-top: 40px;
}

.sec-aboutus .btn-more-ekib:hover {
    background-color: var(--purplecolor);
}

.sec-aboutus .media-about {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* .sec-aboutus .media-about::before {
    content: "";
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='600' ry='600' stroke='%23442B75FF' stroke-width='1.2' stroke-dasharray='10' stroke-dashoffset='10' stroke-linecap='round'/%3e%3c/svg%3e");
    width: 550px;
    height: 550px;
    position: absolute;
    top: -10px;
    right: 150px;
    z-index: 10;
    -webkit-animation: firstRotation 50s linear infinite;
    animation: firstRotation 50s linear infinite;
}

.sec-aboutus .media-about::after {
    content: "";
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='600' ry='600' stroke='%23BFC9CBFF' stroke-width='1.2' stroke-dasharray='10' stroke-dashoffset='10' stroke-linecap='round'/%3e%3c/svg%3e");
    width: 550px;
    height: 550px;
    position: absolute;
    top: -10px;
    right: 80px;
    z-index: 5;
    -webkit-animation: secondRotation 50s linear infinite;
    animation: secondRotation 50s linear infinite;
} */

.sec-aboutus .media-about .circle-images {
    width: 600px;
    position: relative;
    z-index: 99;
    height: 650px;
    background: url('../images/site/building.jpg');
    background-size: auto;
    background-size: 250%;
    background-repeat: no-repeat;
    mask-image: url('../images/logo/logo-mask.png');
    -webkit-mask-image: url('../images/logo/logo-mask.png');
    mask-border: url('../images/logo/logo-mask.png');
    -webkit-mask-border: url('../images/logo/logo-mask.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    animation: movee 10s infinite alternate;
    -webkit-animation: movee 10s infinite alternate;
}

.sec-aboutus .media-about .btn-play-video {
    position: absolute;
    top: 60%;
    right: 47%;
    z-index: 100;
}

.sec-aboutus .media-about .btn-play-video>i {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 100px;
    background: var(--redcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--whitecolor);
    z-index: 100;
}

.sec-aboutus .media-about .btn-play-video::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--purplecolor);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.sec-aboutus .media-about .year-company {
    position: absolute;
    bottom: 30px;
    right: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}

.sec-aboutus .media-about .year-company .year {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-weight: 600;
    color: var(--purplecolor);
    margin: 0;
    line-height: 1;
}

.sec-aboutus .media-about .year-company .year strong {
    font-size: 75px;
    font-weight: 900;
    color: var(--redcolor);
    padding-bottom: 10px;
    margin-left: 10px;
}

.sec-aboutus .media-about .year-company .desc {
    font-size: 24px;
    font-weight: 400;
    color: var(--graycolor);
    margin: 0;
    line-height: 0;
}

@-webkit-keyframes movee {
    0% {
        background-position: -150px -150px;
    }

    25% {
        background-position: 0px -100px;
    }

    75% {
        background-position: -50px 0;
    }

    100% {
        background-position: -100px -100px;
    }
}

@keyframes movee {
    0% {
        background-position: -150px -150px;
    }

    25% {
        background-position: 0px -100px;
    }

    75% {
        background-position: -50px 0;
    }

    100% {
        background-position: -100px -100px;
    }
}

@-webkit-keyframes firstRotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes firstRotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes secondRotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes secondRotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/*---------------------- /Section About ---------------------*/

/*---------------------- Catagory Ekib ---------------------*/

.sec-catagory-ekib .box-ctg {
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 30px;
    overflow: hidden;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.sec-catagory-ekib .item-small-ctg .box-ctg{
    padding: 30px;
}

.sec-catagory-ekib .box-ctg::before {
    content: "";
    background: rgb(33, 52, 94);
    background: -moz-linear-gradient(270deg, rgba(33, 52, 94, 1) 0%, rgba(218, 34, 34, 0.7) 50%, rgba(234, 53, 42, 0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(33, 52, 94, 1) 0%, rgba(218, 34, 34, 0.7) 50%, rgba(234, 53, 42, 0) 100%);
    background: linear-gradient(270deg, rgba(33, 52, 94, 1) 0%, rgba(218, 34, 34, 0.7) 50%, rgba(234, 53, 42, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#442b75", endColorstr="#ea352a", GradientType=1);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    z-index: 10;
    opacity: 0;
    transition: all 0.6s;
}

.sec-catagory-ekib .box-ctg:hover::before {
    opacity: 1;
    width: 120%;
}

.sec-catagory-ekib .box-ctg .image-ctg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.sec-catagory-ekib .box-ctg .image-ctg::after {
    content: "";
    background: rgb(33, 37, 41);
    background: -moz-linear-gradient(90deg, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 1) 100%);
    background: linear-gradient(90deg, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#212529", endColorstr="#212529", GradientType=1);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0.5;
    transition: all 0.4s;
}

.sec-catagory-ekib .box-ctg:hover .image-ctg::after {
    opacity: 0;
}

.sec-catagory-ekib .box-ctg .image-ctg>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.sec-catagory-ekib .box-ctg:hover .image-ctg>img {
    filter: grayscale(1);
}

.sec-catagory-ekib .box-ctg::after {
    content: "";
    background: url('../images/site/triangle.png') no-repeat center center / 40px;
    width: 40px;
    height: 40px;
    transform: rotate(-15deg);
    filter: brightness(0) invert(1);
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 20;
    transition: all 0.4s;
}
.sec-catagory-ekib .item-small-ctg .box-ctg::after{
    top: auto;
    bottom: 30px;
    transform: rotate(15deg) scaleY(-1);
}

.sec-catagory-ekib .box-ctg:hover::after {
    background-size: 80px;
    width: 80px;
    height: 80px;
    top: 20px;
    left: 20px;
    opacity: 0.2;
}

.sec-catagory-ekib .item-small-ctg .box-ctg::after{
    top: auto;
    bottom: 20px;
    left: 20px;
}

.sec-catagory-ekib .box-ctg .icon-ctg {
    position: relative;
    font-size: 80px;
    color: var(--whitecolor);
    z-index: 20;
    margin-left: 50px;
}

.sec-catagory-ekib .box-ctg .title-ctg {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    z-index: 20;
    line-height: 1.1;
    padding-top: 10px;
}

.sec-catagory-ekib .box-ctg .title-ctg>span {
    font-size: 25px;
    font-weight: 400;
    color: var(--whitecolor);
}

.sec-catagory-ekib .box-ctg .title-ctg>strong {
    font-size: 60px;
    font-weight: 900;
    color: var(--whitecolor);
}

.sec-catagory-ekib .item-small-ctg .box-ctg .title-ctg>span {
    font-size: 20px;
    font-weight: 400;
    color: var(--whitecolor);
}

.sec-catagory-ekib .item-small-ctg .box-ctg .title-ctg>strong {
    font-size: 50px;
    font-weight: 900;
    color: var(--whitecolor);
}

.sec-catagory-ekib .box-ctg .btn-more-products {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 40px;
    z-index: 20;
    left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-right: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--graycolor);
    transition: all 0.4s;
}
.sec-catagory-ekib .item-small-ctg .box-ctg .btn-more-products{
    bottom: auto;
    top: 0;
    padding-top: 0;
    padding-bottom: 10px;
}

.sec-catagory-ekib .box-ctg:hover .btn-more-products {
    font-weight: bold;
    color: var(--purplecolor);
}

.sec-catagory-ekib .box-ctg .btn-more-products::before {
    content: "";
    background: url('../images/site/banner-curve.svg') no-repeat center center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}
.sec-catagory-ekib .item-small-ctg .box-ctg .btn-more-products::before{
    transform: scaleY(-1);
}

.sec-catagory-ekib .box-ctg .btn-more-products>span,
.sec-catagory-ekib .box-ctg .btn-more-products>i {
    position: relative;
    z-index: 30;
}

.sec-catagory-ekib .box-ctg .btn-more-products>i {
    font-size: 28px;
    margin-right: 10px;
    transition: all 0.4s;
}

.sec-catagory-ekib .box-ctg:hover .btn-more-products>i {
    margin-right: 5px;
}

/*---------------------- /Catagory Ekib ---------------------*/

/*---------------------- Products Ekib ---------------------*/

.sec-products-ekib {
    background-color: var(--purplecolor);
    margin: 150px 0;
    padding: 100px 0 150px;
}

.sec-products-ekib .title-section .title,
.sec-products-ekib .title-section .desc{
    color: var(--whitecolor);
}

.sec-products-ekib .title-section .lines .rtl-line::before,
.sec-products-ekib .title-section .lines .rtl-line::after,
.sec-products-ekib .title-section .lines .ltr-line::before,
.sec-products-ekib .title-section .lines .ltr-line::after {
    background-color: var(--whitecolor);
}

.sec-products-ekib .head-products {
    margin: 40px 0;
}

.sec-products-ekib .title-section .lines .logo{
    width: 250px;
    margin-bottom: 20px;
}

.sec-products-ekib .head-products .desc {
    font-size: 18px;
    font-weight: 300;
    color: var(--whitecolor);
    line-height: 35px;
    margin: 0;
    text-align: justify;
}

.sec-products-ekib .head-products .btn-more-ekib {
    background-color: var(--redcolor);
}

.sec-products-ekib .head-products .btn-more-ekib:hover {
    background-color: var(--whitecolor);
    color: var(--purplecolor);
}

.sec-products-ekib .box-product {
    position: relative;
    margin: 15px 0;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
}

.sec-products-ekib .box-product>.img-product {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.sec-products-ekib .box-product>.img-product::before {
    content: "";
    background-color: var(--blackcolor);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 10;
}

.sec-products-ekib .box-product>.img-product::after {
    content: "";
    background: rgb(33, 52, 94);
    background: -moz-linear-gradient(0deg, rgba(33, 52, 94, 1) 0%, rgba(218, 34, 34, 0.5) 50%, rgba(234, 53, 42, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(33, 52, 94, 1) 0%, rgba(218, 34, 34, 0.5) 50%, rgba(234, 53, 42, 0) 100%);
    background: linear-gradient(0deg, rgba(33, 52, 94, 1) 0%, rgba(218, 34, 34, 0.5) 50%, rgba(234, 53, 42, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#442b75", endColorstr="#ea352a", GradientType=1);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    z-index: 10;
    transition: all 0.4s;
}

.sec-products-ekib .box-product:hover>.img-product::after {
    height: 100%;
    opacity: 1;
}

.sec-products-ekib .box-product .img-product>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.sec-products-ekib .box-product:hover .img-product>img {
    filter: grayscale(1);
    transform: scale(1.1);
}

.sec-products-ekib .box-product .code {
    background-color: var(--redcolor);
    padding: 10px 20px;
    border-radius: 100px;
    height: 45px;
    font-size: 16px;
    font-weight: 700;
    color: var(--whitecolor);
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s;
}

.sec-products-ekib .box-product:hover .code {
    opacity: 1;
    transform: scale(1);
}

.sec-products-ekib .box-product .title {
    position: absolute;
    bottom: -90px;
    right: 0;
    left: 0;
    text-align: center;
    z-index: 20;
    text-transform: uppercase;
    transition: all 0.4s;
}

.sec-products-ekib .box-product:hover .title {
    bottom: 70px;
}

.sec-products-ekib .box-product .title>a {
    color: var(--whitecolor);
    font-size: 26px;
    font-weight: 700;
    color: var(--whitecolor);
}

.sec-products-ekib .box-product .btn-more-view {
    position: absolute;
    bottom: -100px;
    width: 140px;
    height: 42px;
    z-index: 20;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    font-size: 40px;
    font-weight: 600;
    color: var(--purplecolor);
    transition: all 0.4s;
}

.sec-products-ekib .box-product:hover .btn-more-view {
    bottom: 0;
}

.sec-products-ekib .box-product .btn-more-view::before {
    content: "";
    background: url('../images/site/product-curve.svg') no-repeat center center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.sec-products-ekib .box-product .btn-more-view>i {
    position: relative;
    z-index: 20;
}

/*---------------------- /Products Ekib ---------------------*/

/*---------------------- Supplier Ekib ---------------------*/

.sec-supplier .content-supplier {
    text-align: right;
}

.sec-supplier .title-main {
    margin: 0;
}

.sec-supplier .title-main .ekib {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 40px;
    font-weight: 900;
    color: var(--purplecolor);
}

.sec-supplier .title-main .ekib .star {
    width: 40px;
    margin-right: 10px;
    filter: brightness(0) opacity(0.1);
    /* transform: rotate(-2deg); */
}

.sec-supplier .btn-more-ekib {
    margin-top: 20px;
    margin-right: 0;
    height: 48px;
}

.sec-supplier .btn-more-ekib:hover {
    background-color: var(--purplecolor);
}

.sec-supplier .content-supplier .desc {
    font-size: 20px;
    font-weight: 300;
    color: var(--blackcolor);
    text-align: justify;
    margin: 40px 0 0;
    line-height: 40px;
}

.sec-supplier .list-features {
    margin: 60px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.sec-supplier .list-features>li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 260px;
    margin: 15px 0 15px 60px;
    font-size: 18px;
    font-weight: 600;
    color: var(--blackcolor);
}

.sec-supplier .list-features>li>i {
    font-size: 25px;
    color: var(--redcolor);
    margin-left: 15px;
}

.sec-supplier .images-supplier {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 110px;
}

.sec-supplier .images-supplier .item-image {
    position: relative;
    width: 280px;
    height: 480px;
    border-radius: 500px;
    border: 10px solid var(--whitecolor);
    margin-right: 30px;
    flex-shrink: 0;
}

.sec-supplier .images-supplier .item-image .swiper {
    width: 100%;
    height: 100%;
    border-radius: 500px;
    overflow: hidden;
}

.sec-supplier .images-supplier .item-image .swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-supplier .images-supplier .item-image:nth-child(1) {
    top: -110px;
}

.sec-supplier .images-supplier .item-image::before {
    content: "";
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='140px' ry='140px' stroke='%23442B75FF' stroke-width='1.2' stroke-dasharray='10' stroke-dashoffset='10' stroke-linecap='round'/%3e%3c/svg%3e");
    width: 280px;
    height: 480px;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
}

.sec-supplier .images-supplier .item-image:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='140px' ry='140px' stroke='%23BFC9CBFF' stroke-width='1.2' stroke-dasharray='10' stroke-dashoffset='10' stroke-linecap='round'/%3e%3c/svg%3e");
}

.sec-supplier .images-supplier .item-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 500px;
}

.sec-supplier .media-supplier .year-company {
    position: absolute;
    bottom: -100px;
    right: -10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}

.sec-supplier .media-supplier .year-company .year {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 600;
    color: var(--purplecolor);
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.sec-supplier .media-supplier .year-company .year strong {
    font-size: 80px;
    font-weight: 900;
    color: var(--redcolor);
    padding-bottom: 10px;
    margin-left: 10px;
}

.sec-supplier .media-supplier .year-company .desc {
    font-size: 28px;
    font-weight: 400;
    color: var(--graycolor);
    margin: 0;
    line-height: 0;
}

/*---------------------- /Supplier Ekib ---------------------*/

/*---------------------- Banners ---------------------*/

.sec-banners {
    margin: 150px 0;
}

.sec-banners .box-banner {
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.4s;
}

.sec-banners .box-banner::after {
    content: "";
    background: url('../images/site/triangle.png') no-repeat center center / 40px;
    width: 40px;
    height: 40px;
    transform: rotate(-15deg);
    filter: brightness(0) invert(1);
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 20;
    transition: all 0.4s;
}

.sec-banners .box-banner:hover::after {
    background-size: 70px;
    width: 70px;
    height: 70px;
    top: 20px;
    left: 20px;
    opacity: 0.2;
}

.sec-banners .box-banner.box-employment {
    background-color: var(--purplecolor);
}

.sec-banners .box-banner.box-agent {
    background-color: var(--redcolor);
}

.sec-banners .box-banner:hover {
    background-color: var(--blackcolor);
}

.sec-banners .box-banner .icon-bnr {
    font-size: 80px;
    color: var(--whitecolor);
    margin-left: 50px;
}

.sec-banners .box-banner .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.sec-banners .box-banner .content .title {
    font-size: 30px;
    font-weight: 700;
    color: var(--whitecolor);
    margin: 0;
}

.sec-banners .box-banner .content .title {
    font-size: 30px;
    font-weight: 700;
    color: var(--whitecolor);
    margin: 0 0 5px;
}

.sec-banners .box-banner .content .desc {
    font-size: 18px;
    font-weight: 200;
    color: var(--whitecolor);
    margin: 0;
    padding-left: 50px;
    text-align: justify;
}

.sec-banners .box-banner .btn-link {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 40px;
    z-index: 20;
    left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--blackcolor);
    transition: all 0.4s;
}

.sec-banners .box-banner:hover .btn-link {
    font-weight: bold;
    color: var(--graycolor);
}

.sec-banners .box-banner .btn-link::before {
    content: "";
    background: url('../images/site/banner-curve.svg') no-repeat center center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.sec-banners .box-banner .btn-link>span,
.sec-banners .box-banner .btn-link>i {
    position: relative;
    z-index: 30;
}

.sec-banners .box-banner .btn-link>i {
    font-size: 28px;
    margin-right: 10px;
    transition: all 0.4s;
}

.sec-banners .box-banner:hover .btn-link>i {
    margin-right: 5px;
}

/*---------------------- /Banners ---------------------*/

/*---------------------- News Ekib ---------------------*/

.sec-news-ekib .head-news {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.sec-news-ekib .head-news .title-section {
    display: flex;
    align-items: center;
    width: auto;
}

.sec-news-ekib .head-news .title-section .star {
    margin-left: 15px;
}

.sec-news-ekib .head-news .btn-more-news {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 18px;
    font-weight: 700;
    color: var(--redcolor);
    flex-shrink: 0;
    transition: all 0.4s;
}

.sec-news-ekib .head-news .btn-more-news:hover {
    color: var(--purplecolor);
}

.sec-news-ekib .head-news .btn-more-news>i {
    font-size: 35px;
    margin-right: 15px;
    transition: all 0.4s;
}

.sec-news-ekib .head-news .btn-more-news:hover>i {
    margin-right: 10px;
}

.sec-news-ekib .box-news {
    position: relative;
    width: 100%;
}

.sec-news-ekib .box-news::before {
    content: "";
    width: 250px;
    height: 60px;
    border-radius: 20px;
    background-color: var(--purplecolor);
    transform: rotate(-5deg);
    position: absolute;
    top: 50px;
    right: 10px;
    z-index: 1;
    opacity: 0;
    transition: all 0.4s;
}

.sec-news-ekib .box-news:hover::before {
    opacity: 1;
    top: -10px;
}

.sec-news-ekib .box-news::after {
    content: "";
    width: 200px;
    height: 50px;
    border-radius: 20px;
    background-color: var(--redcolor);
    transform: rotate(5deg);
    position: absolute;
    top: 50px;
    left: 10px;
    z-index: 0;
    opacity: 0;
    transition: all 0.4s;
}

.sec-news-ekib .box-news:hover::after {
    transition-delay: 0.1s;
    opacity: 1;
    top: -5px;
}

.sec-news-ekib .box-news .box-style {
    position: relative;
    background-color: var(--purplecolor);
    width: 100%;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 20;
}

.sec-news-ekib .box-news .image-news {
    display: block;
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.sec-news-ekib .box-news .image-news::after {
    content: "";
    background: rgb(33, 52, 94);
    background: -moz-linear-gradient(0deg, rgba(218, 34, 34, 1) 0%, rgba(218, 34, 34, 0.5) 50%, rgba(234, 53, 42, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(218, 34, 34, 1) 0%, rgba(218, 34, 34, 0.5) 50%, rgba(234, 53, 42, 0) 100%);
    background: linear-gradient(0deg, rgba(218, 34, 34, 1) 0%, rgba(218, 34, 34, 0.5) 50%, rgba(234, 53, 42, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#442b75", endColorstr="#ea352a", GradientType=1);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    z-index: 10;
    transition: all 0.4s;
}

.sec-news-ekib .box-news:hover .image-news::after {
    opacity: 1;
    height: 100%;
}

.sec-news-ekib .box-news .image-news>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.sec-news-ekib .box-news:hover .image-news>img {
    filter: grayscale(1);
    transform: scale(1.1);
}

.sec-news-ekib .box-news .image-news .date {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 40px;
    z-index: 20;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.sec-news-ekib .box-news .image-news .date::before {
    content: "";
    background: url('../images/site/date-curve.svg') no-repeat center center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.sec-news-ekib .box-news .image-news .date>span {
    font-size: 16px;
    font-weight: 400;
    color: var(--whitecolor);
    opacity: 0.5;
}

.sec-news-ekib .box-news .content-news {
    padding: 20px;
}

.sec-news-ekib .box-news .content-news .title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px;
    text-align: center;
    line-height: normal;
}

.sec-news-ekib .box-news .content-news .title>a {
    display: block;
    color: var(--whitecolor);
    transition: all 0.4s;
}

.sec-news-ekib .box-news:hover .content-news .title>a {
    color: var(--redcolor);
}

.sec-news-ekib .box-news .content-news .desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    color: var(--whitecolor);
}

.sec-news-ekib .box-news .content-news .btn-more {
    position: absolute;
    bottom: 0;
    width: 140px;
    height: 35px;
    z-index: 20;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    font-size: 35px;
    font-weight: 600;
    color: var(--graycolor);
    transition: all 0.4s;
}

.sec-news-ekib .box-news:hover .content-news .btn-more {
    width: 145px;
    height: 40px;
    color: var(--redcolor);
}

.sec-news-ekib .box-news .content-news .btn-more::before {
    content: "";
    background: url('../images/site/news-curve.svg') no-repeat center center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.sec-news-ekib .box-news .content-news .btn-more>i {
    position: relative;
    z-index: 20;
}

/*---------------------- /News Ekib ---------------------*/

/*---------------------- /Content Main ---------------------*/

/*---------------------- Footer Main ---------------------*/

.footer-main {
    position: relative;
    background-color: var(--purplecolor);
    width: 100%;
    border-bottom: 10px solid var(--whitecolor);
    margin-top: 150px;
    padding-top: 100px;
}

/*---------------------- Footer Catalog ---------------------*/

.footer-main .footer-catalog {
    position: relative;
    width: 100%;
    height: 150px;
    background-color: var(--whitecolor);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-main .footer-catalog .item-cst{
    display: block;
    text-align: center;
}
.footer-main .footer-catalog .item-cst > img{
    height: 80px;
    max-width: 90px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

.footer-main .title-section {
    display: flex;
    align-items: center;
    width: auto;
    flex-shrink: 0;
    margin-left: 30px;
}

.footer-main .title-section .star {
    margin-left: 15px;
    width: 35px;
}

.footer-main .title-section .title {
    font-size: 34px;
    font-weight: 900;
    color: var(--purplecolor);
    margin: 0;
}

.footer-main .title-section .desc {
    font-size: 22px;
    font-weight: 400;
    color: var(--purplecolor);
    margin: 0;
}

/* .footer-main .footer-catalog::after {
    content: "";
    background: url('../images/site/star.svg') no-repeat center center / 50px;
    width: 50px;
    height: 50px;
    transform: rotate(-15deg);
    filter: brightness(0) invert(1) opacity(0.15);
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
    transition: all 0.4s;
} */

.footer-main .footer-catalog .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-main .footer-catalog .content .icon-catalog {
    font-size: 80px;
    margin-left: 60px;
    color: var(--whitecolor);
}

.footer-main .footer-catalog .content .info>span {
    display: block;
    font-size: 24px;
    font-weight: 200;
    color: var(--whitecolor);
    text-align: right;
}

.footer-main .footer-catalog .content .info>strong {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 24px;
    font-weight: 700;
    color: var(--whitecolor);
    text-align: right;
}

.footer-main .footer-catalog .content .info .star {
    width: 30px;
    transform: rotate(-2deg);
    margin-right: 15px;
}

.footer-main .footer-catalog .btn-catalog {
    background-color: var(--redcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    height: 60px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    color: var(--whitecolor);
    margin-right: 10px;
    transition: all 0.4s;
}

.footer-main .footer-catalog .btn-catalog:hover {
    background-color: var(--whitecolor);
    color: var(--purplecolor);
}

.footer-main .footer-catalog .btn-catalog>i {
    font-size: 25px;
    margin-left: 10px;
}

/*---------------------- /Footer Catalog ---------------------*/

/*---------------------- Footer About ---------------------*/

.footer-main .footer-about {
    position: relative;
    margin-top: 60px;
}

.footer-main .footer-about::before {
    content: "";
    background: url('../images/site/triangle.png') no-repeat center center / 50px;
    width: 50px;
    height: 60px;
    transform: rotate(15deg);
    filter: brightness(0) invert(1) opacity(0.15);
    position: absolute;
    bottom: 50px;
    left: -140px;
    z-index: 20;
    -webkit-animation: firstRotation 10s linear infinite;
    animation: firstRotation 10s linear infinite;
}

.footer-main .footer-about::after {
    content: "";
    background: url('../images/site/triangle.png') no-repeat center center / 60px;
    width: 60px;
    height: 70px;
    transform: rotate(-15deg);
    filter: brightness(0) invert(1);
    position: absolute;
    top: -30px;
    right: -140px;
    z-index: 20;
    -webkit-animation: secondRotation 10s linear infinite;
    animation: secondRotation 10s linear infinite;
}

.footer-main .footer-about .logo-footer {
    display: block;
    width: 300px;
    margin: 0 auto;
}

.footer-main .footer-about .logo-footer>img {
    width: 100%;
}

.footer-main .footer-about .desc-about {
    font-size: 20px;
    font-weight: 200;
    line-height: 45px;
    color: var(--whitecolor);
    text-align: justify;
    margin: 40px 0 60px;
}

.footer-main .footer-about .contact-us {
    background-color: var(--redcolor);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-align: right;
    padding: 30px;
    border-radius: 30px;
}

.footer-main .footer-about .text-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 30px;
    flex-shrink: 0;
}

.footer-main .footer-about .text-contact .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--whitecolor);
    margin: 0;
}

.footer-main .footer-about .text-contact .desc {
    font-size: 18px;
    font-weight: 200;
    color: var(--whitecolor);
    margin: 0;
}

.footer-main .footer-about .list-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--blackcolor);
}

.footer-main .footer-about .list-contact .item-cnt {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
}

.footer-main .footer-about .list-contact .item-cnt:last-child {
    margin-left: 0;
}

.footer-main .footer-about .item-cnt>i {
    font-size: 50px;
    color: var(--purplecolor);
    margin-left: 20px;
}

.footer-main .footer-about .item-phone>i {
    transform: scaleX(-1);
}

.footer-main .footer-about .item-cnt .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-main .footer-about .item-cnt .text p {
    font-size: 16px;
    font-weight: 200;
    color: var(--whitecolor);
    margin: 0;
}

.footer-main .footer-about .item-phone .text p {
    width: 100%;
    justify-content: space-between;
}

.footer-main .footer-about .item-cnt .text strong,
.footer-main .footer-about .item-cnt .text a {
    font-weight: 700;
    color: var(--whitecolor);
}

.footer-main .footer-about .item-cnt .text a {
    margin-right: 20px;
    font-size: 22px;
    transition: all 0.4s;
}

.footer-main .footer-about .item-cnt .text a:hover {
    color: var(--blackcolor);
}

.footer-main .footer-about .qrcode {
    background-color: var(--whitecolor);
    width: 150px;
    height: 150px;
    border-radius: 25px;
    padding: 10px;
    margin: 0 auto;
}

.footer-main .footer-about .qrcode>img {
    width: 100%;
}

.footer-main .footer-about .box-map-footer{
    width: 100%;
    min-height: 300px;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

/*---------------------- /Footer About ---------------------*/

/*---------------------- Footer Copyright ---------------------*/

.footer-main .footer-copyright {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0 20px;
}

.footer-main .footer-copyright .copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 30px;
}

.footer-main .footer-copyright .copyright .company {
    font-size: 16px;
    font-weight: 200;
    color: var(--whitecolor);
    margin: 0;
}

.footer-main .footer-copyright .copyright .designer {
    font-size: 16px;
    font-weight: 700;
    color: var(--whitecolor);
    margin: 0;
}

.footer-main .footer-copyright .copyright .designer>a {
    color: var(--whitecolor);
    transition: all 0.4s;
}

.footer-main .footer-copyright .copyright .designer>a:hover {
    color: var(--redcolor);
}

.footer-main .footer-copyright .menu-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-main .footer-copyright .menu-footer .list-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0 0 10px;
    list-style: none;
}

.footer-main .footer-copyright .menu-footer .list-menu a {
    font-size: 16px;
    font-weight: 200;
    color: var(--whitecolor);
    margin-right: 20px;
    transition: all 0.4s;
}

.footer-main .footer-copyright .menu-footer .list-menu:hover a {
    opacity: 0.5;
}

.footer-main .footer-copyright .menu-footer .list-menu a:hover {
    font-weight: 700;
    opacity: 1;
}

.footer-main .footer-copyright .socials .list-sc {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-main .footer-copyright .socials .list-sc .item-sc {
    display: flex;
    font-size: 20px;
    font-weight: normal;
    color: var(--whitecolor);
    margin-left: 15px;
    transition: all 0.4s;
    transition: all 0.3s;
}

.footer-main .footer-copyright .socials .list-sc:hover .item-sc {
    opacity: 0.2;
}

.footer-main .footer-copyright .socials .list-sc .item-sc:hover {
    opacity: 1;
}

.footer-main .footer-copyright .socials .list-sc .item-sc:last-child {
    margin-left: 0;
}

.footer-main .footer-copyright .page-scroll {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 320px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--blackcolor);
    font-size: 18px;
    font-weight: 600;
    z-index: 99;
    margin: 0 auto;
    padding-top: 8px;
}

.footer-main .footer-copyright .page-scroll::before {
    content: "";
    background: url('../images/site/scroll-curve.svg') no-repeat center center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.footer-main .footer-copyright .page-scroll>i {
    position: relative;
    font-size: 40px;
    margin-bottom: 3px;
    z-index: 10;
}

.footer-main .footer-copyright .page-scroll>i,
.footer-main .footer-copyright .page-scroll>.text {
    position: relative;
    z-index: 10;
}

/*---------------------- /Footer Copyright ---------------------*/

/*---------------------- /Footer Main ---------------------*/

/*---------------------- Modal ---------------------*/

.modal-backdrop {
    background-color: var(--blackcolor);
    z-index: 99999;
}

.modal-backdrop.show {
    opacity: 0.7;
}

.modal-ekib {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    z-index: 999999;
    transition: all 0.5s;
}

.modal-ekib.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.modal-ekib .modal-content {
    border-radius: 30px;
    background-color: var(--blackcolor);
}

.modal-ekib .modal-header {
    position: relative;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.modal-ekib .modal-header .modal-title {
    font-weight: bold;
    color: var(--whitecolor);
    font-size: 20px;
    display: flex;
    align-items: center;
}

.modal-ekib .modal-header .close {
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    background-color: var(--whitecolor);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 300;
    color: var(--blackcolor);
    opacity: 1;
    text-shadow: none;
    transition: all 0.4s;
}

.modal-ekib .modal-header .close:hover {
    background-color: var(--redcolor);
    color: var(--white);
    opacity: 1;
}

.modal-ekib .modal-header .logo-modal {
    background: url('../images/site/scroll-curve.svg') no-repeat center center / 250px;
    width: 250px;
    height: 65px;
    position: absolute;
    top: -2px;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleY(-1);
}

.modal-ekib .modal-header .logo-modal img {
    height: 30px;
    transform: scaleY(-1);
}

.modal-ekib .modal-body {
    padding: 20px;
}

.modal-ekib .desc-modal {
    text-align: center;
    font-size: 16px;
    color: var(--graycolor);
    font-weight: 300;
    margin-bottom: 20px;
}

/*---------------------- /Modal ---------------------*/

/*---------------------- Responsives ---------------------*/

@media only screen and (min-width:1700px) and (max-width: 1800px) {
    .container {
        padding: 0 100px;
    }
}

@media only screen and (min-width:1300px) and (max-width: 1700px) {
    .container {
        padding: 0 30px;
    }

    .header-main .header-menu .navbar .navbar-brand {
        margin: 0 0 0 40px;
    }

    .header-main .header-menu .navbar .navbar-nav .nav-item {
        margin-left: 30px;
    }

    .header-main .header-menu .navbar .navbar-nav .nav-link {
        font-size: 16px;
    }

    .sec-catagory-product .row-swiper {
        padding: 0 100px;
    }

    .sec-catagory-product .swiper-ctg-next {
        right: 20px;
    }

    .sec-catagory-product .swiper-ctg-prev {
        left: 20px;
    }

    .sec-slogan .slogan-text h3 {
        font-size: 18px;
    }

    .sec-aboutus .media-about .circle-images {
        width: 680px;
        height: 680px;
    }

    .sec-aboutus .media-about::before,
    .sec-aboutus .media-about::after {
        width: 500px;
        height: 500px;
    }

    .sec-supplier .content-supplier .desc {
        padding-left: 80px;
        font-size: 18px;
    }

    .footer-main .footer-about .list-contact .item-cnt {
        margin-left: 40px;
    }

    .footer-main .footer-about .item-cnt>i {
        font-size: 50px;
    }

    .footer-main .footer-about .text-contact .title,
    .footer-main .footer-about .item-cnt .text a {
        font-size: 22px;
    }

    .footer-main .footer-about .text-contact .desc,
    .footer-main .footer-about .item-cnt .text p {
        font-size: 16px;
    }
    .sec-aboutus .media-about .btn-play-video {
        right: 58%;
    }
    .sec-aboutus .media-about .year-company {
        right: 45%;
    }
}

/*---------------------- /Responsives ---------------------*/