* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none !important;
}

body {
    width: 100%;
    overflow-x: hidden;
}

.page {
    width: 100%;
    display: flex;
}

.left-container {
    width: 95px;
    z-index: 100;
    background: #fff;
}

.logo-wraper {
    position: fixed;
    width: 95px;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 25px 0;
    border-right: 1px solid #c6c6c66c;
}

.menuBtn {
    width: 50px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 15px;
}

.menuBtn.header-menu-btn {
    transform: rotate(90deg);
    height: 50px;
    display: none;
}

.menuBtn .line {
    width: 2px;
    height: 50px;
    background: #00A79C;
    transform-origin: center center;
    transition: all .150s ease-in-out;
}

.down-button {
    background: none;
    border: none;
    cursor: pointer;
}

.down-button img {
    width: 20px;
    object-fit: cover;
}

.main-container {
    width: calc(100% - 95px);
    height: 100%;
}

.header-wrapper {
    width: calc(100% - 95px);
    height: 95px;
    background: #fff;
    position: fixed;
    z-index: 99;
    transition: transform .3s ease-out .1s, background .3s ease-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.header-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #c6c6c66c;
}

.header-wrapper.active {
    background: #43998A;
    border-bottom: 1px solid #fff;
    transform: translateY(0%) !important;
}

.header-wrapper.active .header-logo-wrapper a {
    color: #fff;
}
.header-wrapper .header-logo-wrapper a svg:last-child{
    width: 90px;
    height: auto;
}

.header-wrapper.active .header-nav ul li {
    opacity: 0;
    pointer-events: none;
}

.header-wrapper.active .header-nav ul li.header-button {
    opacity: 1;
    pointer-events: all;
}

.header-wrapper.active .header-nav ul li.header-button a {
    color: #fff;
    border: 1px solid #fff;
}

.header-wrapper.active .header-nav ul button {
    color: #fff;
}

.header-logo-wrapper a {
    font-family: 'gluck-bold';
    /*font-size: 50px;*/
    color: #00A79C;
    /* padding-left: 50px; */
}

.header-nav ul {
    display: flex;
    align-items: center;
    text-decoration: none;
    list-style: none;
    margin: 0;
}

.header-nav-link {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.header-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1AA79C;
    transform: translateY(-100%);
    transition: transform .2s ease-in;
    z-index: -1;
}
/*.header-nav-link::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    transform: translateY(100%);
    transition: transform .4s ease-in;
    position: absolute;
    bottom: 0;
    left: calc(50% - 10px);
}*/

.header-nav-link.active::before, /*.header-nav-link.active::after,*/ .header-nav-link.active_page::before, /*.header-nav-link.active_page::after, .header-nav-link:hover::after,*/ .header-nav-link:hover::before {
    transform: translateY(0);
}

.header-nav-link.drop-down-link .h-nav-item {
    transition: color .2s ease-in .1s;
}

.header-nav-link.active .h-nav-item, .header-nav-link.active_page .h-nav-item, .header-nav-link:hover .h-nav-item {
    color: #fff;
    transition: color .2s ease-in .1s;
}

.header-nav ul li {
    margin: 0;
    height: 95px;
}

.header-nav ul li.header-button {
    padding: 0;
    display: flex;
    align-items: center;
}

.header-nav ul li.header-button a {
    color: #43998A;
    border: 1px solid #43998A;
    padding: 7px 30px 4px;
    margin: 0 10px;
    font-family: 'Latinka-Medium';
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in;
    display: inline-block;
    height: unset !important;
}

.header-nav ul li.header-button a:hover {
    color: #fff;
}

.header-nav ul li.header-button a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #43998A;
    z-index: -1;
    transform: scaleX(0);
    transition: transform .3s ease-in;
    transform-origin: center right;
}

.header-nav ul li.header-button a:hover::before {
    transform: scaleX(1);
    transform-origin: center left;
}

.header-nav ul .h-nav-item {
    font-family: 'Latinka-SemiBold';
    color: #434343;
    font-size: 15px;
    letter-spacing: .5px;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    text-align: center;
}

.header-hover-menu {
    width: calc(100% - 95px);
    position: fixed;
    left: 95px;
    top: 95px;
    z-index: 97;
    pointer-events: none;
}

.header-hover-menu.active {
    pointer-events: all;
}

.hover-menu-wrapper-content {
    position: absolute;
    width: 100%;
    /* padding: 50px 150px; */
    top: 0;
    left: 0;
    opacity: 0;
    background: #fff;
    transition: all .1s ease-in .2s;
    pointer-events: none;
    z-index: 1;
    transform: translateY(-20%);
    border-bottom: 1px solid #c6c6c66c;
}

.hover-menu-wrapper-content.active {
    opacity: 1;
    pointer-events: all;
    z-index: 99;
    transform: translateY(0%);
    transition: all .2s ease-in .2s;
}

.hover-menu-inner {
    padding: 50px 150px;
}

.hover-menu-inner h2 {
    padding: 10px 0;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Latinka-Medium';
}

.hover-menu-pruducts ul li{
    padding: 5px 0;
}
.hover-menu-pruducts ul li a {
    /*line-height: 2.3;*/
    color: #373737;
    padding: 10px 0;
    font-family: 'Latinka-Regular';
    transition: all .2s ease-in;
    font-size: 14px;
}
.hover-menu-pruducts ul li a:hover {
    color: #43998A;
    font-weight: bold;
    padding-left: 10px;
}

.right-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f7f7f7;
    border-left: 1px solid #c6c6c66c;
}

.hover-menu-inner img {
    width: 270px;
    object-fit: contain;
}

.menu-wrapper {
    width: 100%;
    height: 100vh;
    background: #43998A;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 98;
    transform: translateX(0%);
    transition: transform .5s ease-in;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
}

.menu-wrapper.menu-active {
    pointer-events: all;
    transform: translateX(100%);
}

.menu-inner-wrapper {
    display: flex;
    flex-direction: column;
    width: calc(100% - 95px);
    height: calc(100% - 95px);
    padding: 35px 190px;
    padding-bottom: 90px;
    display: flex;
    justify-content: space-around;
}

.menu-inner-up,
.menu-inner-down {
    display: flex;
}

.menu-inner-product-up {
    border-bottom: 1px solid #ffffff85;
    overflow: hidden;
}

.menu-inner-product-up h2 {
    font-size: 25px;
    font-weight: 500;
    font-family: 'Latinka-Medium';
    color: #fff;
    margin-bottom: 15px;
    padding-left: 10px;
}

.menu-inner-product-down {
    display: flex;
    margin-top: 15px;
}

.menu-inner-product-down ul li {
    overflow: hidden;
}

.menu-inner-product-down ul li a {
    display: inline-block;
    font-family: 'latinka-extraLight';
    font-weight: 300;
    font-size: 22px;
    color: #fff;
    line-height: 1.8;
    padding-left: 10px;
    transition: .3s ease transform;
}

.menu-inner-product-down ul li a:hover {
    transform: translateX(5px);
}

.menu-cookie-wrapper {
    position: absolute;
    bottom: 15px;
    left: 145px;
    font-family: 'Latinka-Regular';
    font-size: 14px;
    /* font-weight: 300px; */
    color: #fff;
}

.system-integrations-container {
    background-color: #F8F8F8;
    margin-top: 120px;
    overflow: hidden;
}

.system-wraper-up {
    text-align: center;
    margin-top: 40px;
}

.system-wraper-up h2 {
    font-family: 'Latinka-SemiBold';
    font-weight: 600;
    font-size: 32px;
    /* padding: 15px 0; */
}

.system-wraper-up h2 span {
    color: #43998A;
}

.system-wraper-up p {
    font-family: 'Latinka-Regular';
    font-size: 16px;
    color: #7B7B7B;
    width: 33%;
    margin: 0 auto;
}

.system-wraper-down {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

.system-items {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 35px;
    width: 153px;
}

.system-items img {
    width: 100%;
}

.footer-container {
    border-bottom: 1px solid #c6c6c66c;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

#footerTrigger {
    position: absolute;
    top: 25%;
    right: 0;
    user-select: none;
    pointer-events: none;
}

.footer-item h2 {
    font-size: 15px;
    padding: 0;
    margin: 70px 0 45px 0;
    font-family: 'latinka-semibold';
}

.footer-item ul {
    padding: 0;
    margin: 0;
}

.footer-item ul li {
    padding: 5px 0;
    color: #000;
}

.footer-item ul li a {
    color: #000;
    font-size: 15px;
    font-family: 'latinka-regular';
}

.footer-down-item {
    width: 20%;
}

.footer-down-item a {
    color: #000;
    font-size: 13px;
    position: relative;
}

.footer-down-item a.gmail::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    background: #48BA95;
}

.footer-down .footer-down-item h2 {
    margin-bottom: 10px;
    font-family: 'Averta-Regular';
    font-weight: bold;
    font-size: 20px;
    /* white-space: nowrap; */
}

.footer-down .footer-down-item ul {
    padding: 0;
    margin: 0;
}

.exstra-footer {
    width: 12%;
}

.footer-down-item .icons {
    display: flex;
    flex-wrap: wrap;
    height: 72px;
}

.footer-down {
    margin-bottom: 60px;
}

.socail-icons {
    /*width: 33%;*/
    margin-right: 5px;
}
.socail-icons:hover i {
    color: #43998A;
}

.socail-icons img {
    width: 25px;
}

.footer-logo {
    margin: 70px 0 30px;
    filter: grayscale(1);
}

.footer-logo img {
    width: 160px;
}

.footer-down-item-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}