header {
    position: relative;
}

.desktop_header {
    position: relative;
    padding: 20px 0 0;
}

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

.desktop_header .top .form-group {
    position: relative;
}

.desktop_header .top .form-group .form-control {
    font-size: 20px;
    height: 67px;
    padding: 10px 24px;
    border-radius: 30px;
    background: #F7F7F7;
}

.desktop_header .top .form-group .form-control::placeholder {
    color: var(--ct);
    font-size: 20px;
    font-weight: 400;
}

.desktop_header .top .form-group em {
    position: absolute;
    top: 22px;
    right: 20px;
    font-size: 22px;
}

.desktop_header .top .multi_links {
    display: flex;
    justify-content: end;
    margin-bottom: 0px;
}

.desktop_header .top .multi_links li {
    position: relative;
    margin-left: 24px;
    padding-left: 24px;
    margin-bottom: 0px;
}

.desktop_header .top .multi_links li a {
    color: var(--ct);
    text-decoration: none;
}

.desktop_header .top .multi_links li a img {
    margin-right: 4px;
}

.desktop_header .top .multi_links li::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: var(--ct);
}

.desktop_header .top .multi_links li:first-of-type::before {
    display: none;
}

@media(max-width:1440px) {
    .desktop_header .top .form-group .form-control {
        font-size: 16px;
    }
    .desktop_header .top .form-group .form-control::placeholder {
        font-size: 16px;
    }
}


/* ---- navigation ----  */

.desktop_header .bot {
    background-color: var(--c1);
}

.desktop_header .bot .txt_phone {
    color: var(--cf);
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
}

.desktop_header .bot .txt_phone em {
    margin-right: 6px;
}

.desktop_header .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.desktop_header .navigation a {
    color: var(--cf);
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: unset;
}

.desktop_header .navigation>li {
    position: static;
    line-height: normal;
    padding: 24px 0;
    margin-right: 48px;
    margin-bottom: 0px;
}

.desktop_header .navigation>li:last-of-type {
    margin-right: 0px;
}

.desktop_header .navigation li.has_child>a::after {
    content: "\f0d7";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: inline-block;
    font-size: 12px;
    height: 5px;
    position: relative;
    top: 0px;
    margin-left: 4px;
    transition: all 0.5s linear 0s;
}

.desktop_header .navigation li.has_child ul li.has_child>a::after {
    display: none;
}

.desktop_header .navigation>li>ul {
    z-index: 100;
    transition: all 0.5slinear;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    display: flex;
    flex-wrap: wrap;
    width: 98%;
    padding: 40px;
    margin: 0 auto;
    overflow-y: scroll;
    border-radius: 0 0 40px 40px;
    background-color: var(--cf);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.25);
}

.desktop_header .navigation>li:hover>ul {
    visibility: visible;
    opacity: 1;
    overflow: visible;
    height: auto;
    /* overflow-y: scroll; */
    /* overflow-x: hidden;
    max-height: 560px; */
}

.desktop_header .navigation>li>ul>li {
    flex: 0 0 33.3%;
    max-width: 33.3%;
    margin-bottom: 16px;
    list-style: none;
}

.desktop_header .navigation li ul li a {
    color: var(--ct);
    font-size: 32px;
    font-weight: 600;
}

.desktop_header .navigation li ul li ul {
    padding-top: 24px;
}

.desktop_header .navigation li ul li ul li {
    margin-bottom: 16px;
}

.desktop_header .navigation li ul li ul li:last-of-type {
    margin-bottom: 0px;
}

.desktop_header .navigation li ul li ul li a {
    display: block;
    font-size: 18px;
    font-weight: 400;
}


/* ---- product menu ---  */

.desktop_header .navigation li .product_menu>li {
    margin-bottom: 40px;
}

.desktop_header .navigation li .product_menu>li:nth-last-child(2),
.desktop_header .navigation li .product_menu>li:nth-last-child(1) {
    margin-bottom: 0px;
}


/* .desktop_header .navigation li .product_menu>li  */

.desktop_header .navigation li .product_menu>li>a {
    position: relative;
    padding-left: 56px;
}

.desktop_header .navigation li .product_menu>li>a img {
    position: absolute;
    top: 0;
    left: 0;
}

.desktop_header .navigation li .product_menu>li ul {
    padding-left: 56px;
    width: 420px;
}

.desktop_header .navigation li .product_menu>li ul li {
    position: relative;
    padding-bottom: 16px;
}

.desktop_header .navigation li .product_menu>li ul li a {
    display: block;
}

.desktop_header .navigation li .product_menu>li ul li::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    /* width: 70%; */
    height: 1px;
    background: linear-gradient(90deg, rgba(82, 96, 109, 0.00) 0%, #52606D 50%, rgba(82, 96, 109, 0.00) 100%);
}

.desktop_header .navigation li .product_menu>li ul li::after {
    position: absolute;
    content: "\f054";
    top: 0;
    right: 20px;
    color: var(--ct);
    font-size: 14px;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free'
}

.desktop_header .navigation li .product_menu>li ul li:last-of-type::before {
    display: none;
}


/* ---- product menu end ---  */


/* --- services_menu ---  */

.desktop_header .navigation li .services_menu>li {
    flex: 0 0 25%;
    max-width: 25%;
    margin-bottom: 30px;
}

.desktop_header .navigation li .services_menu>li:nth-last-child(3),
.desktop_header .navigation li .services_menu>li:nth-last-child(2),
.desktop_header .navigation li .services_menu>li:nth-last-child(1) {
    margin-bottom: 0px;
}

.desktop_header .navigation li .services_menu>li>a {
    font-size: 26px;
    color: var(--c1);
}

.desktop_header .navigation li .services_menu>li ul {
    padding-top: 18px;
    width: 80%;
}

.desktop_header .navigation li .services_menu>li ul li {
    position: relative;
}

.desktop_header .navigation li .services_menu>li ul li::before {
    position: absolute;
    content: "\f054";
    top: 1px;
    right: 20px;
    color: var(--ct);
    font-size: 14px;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free'
}

.desktop_header .navigation li .services_menu>li ul li a {
    font-weight: 500;
}


/* --- services_menu end ---  */


/* --- solution_menu ---  */

.desktop_header .navigation li .solution_menu {
    width: 70%;
}

.desktop_header .navigation li .solution_menu>li {
    flex: 0 0 50%;
    max-width: 50%;
}

.desktop_header .navigation li .solution_menu>li {
    margin-bottom: 32px;
}

.desktop_header .navigation li .solution_menu>li a {
    font-size: 28px;
}

.desktop_header .navigation li .solution_menu>li a img {
    margin-right: 4px;
}


/* --- solution_menu end ---  */

@media(max-width:1440px) {
    .desktop_header .navigation a {
        font-size: 20px;
    }
}

@media(max-width:1300px) {
    .desktop_header .navigation a {
        font-size: 18px;
    }
}

@media(max-width:1200px) {
    .desktop_header .navigation a {
        font-size: 16px;
    }
}


/* ---- mobilie header  ----  */

.mobile_header {
    padding: 20px 24px;
}

.mobile_header .icon-humburger {
    display: inline-block;
    width: 24px;
    height: 12px;
    position: relative;
    margin: auto;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    top: -3px;
}

.mobile_header .icon-humburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #0A2923;
    opacity: 1;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.mobile_header .icon-humburger span:nth-child(1) {
    top: 0px;
}

.mobile_header .icon-humburger span:nth-child(2) {
    top: 8px;
}

.mobile_header .icon-humburger span:nth-child(3) {
    top: 16px;
}

.mobile_header .icon-humburger span:nth-child(4),
.mobile_header .icon-humburger span:nth-child(5),
.mobile_header .icon-humburger span:nth-child(6) {
    display: none;
}

.mobile_header .icon-humburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 17px;
}

.mobile_header .icon-humburger.open span:nth-child(2) {
    opacity: 0;
}

.mobile_header .icon-humburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 17px;
}


/* -----  */

.mobile_header .xs_main_nav {
    background-color: white;
    position: absolute;
    top: 100%;
    left: -100%;
    right: 0;
    z-index: 30;
    transition: 0.4sease-in-out;
    opacity: 0;
    visibility: hidden;
}

.mobile_header .xs_main_nav.show {
    display: block;
    left: 0;
    opacity: 1;
    visibility: visible;
}

.mobile_header .navigation {
    padding: 24px 24px 32px;
    background-color: var(--c5);
}

.mobile_header .navigation a {
    display: block;
    font-size: 18px;
    color: var(--c2);
    font-weight: 500;
    text-decoration: unset;
}

.mobile_header .navigation .menu_expander {
    position: absolute;
    top: 0px;
    right: 5px;
    z-index: 31;
    cursor: pointer;
    width: 30%;
    /* width: 70px; */
    height: 40px;
    text-align: end;
}

.mobile_header .navigation li {
    position: relative;
    line-height: normal;
}

.mobile_header .navigation li ul li a {
    font-size: 16px;
}

.mobile_header .navigation li ul {
    display: none;
    padding-top: 24px;
    padding-left: 24px;
    padding-bottom: 0px;
}

.mobile_header .navigation a img {
    /* display: none; */
    width: 32px;
    height: 32px;
    margin-right: 7px;
}

.mobile_header .navigation a p {
    display: none;
}

.mobile_header .navigation li ul li ul li a img {
    width: 22px;
    height: 22px;
}

.mobile_header .toggle_wrap .t_content {
    padding-top: 12px;
}

.mobile_header .small_business_enterprise .t_content>em {
    /* display: none; */
    opacity: 0;
}

.mobile_header .small_business_enterprise .small_list {
    display: block !important;
    padding-left: 0;
}

.mobile_header .small_business_enterprise .enterprise_list {
    display: none !important;
    padding-left: 0;
}

.mobile_header .toggle_wrap input[type="checkbox"]:checked~div .enterprise_list {
    display: block !important;
}

.mobile_header .toggle_wrap input[type="checkbox"]:checked~div .small_list {
    display: none !important;
}

@media(max-width:768px) {
    .mobile_header .xs_logo img {
        max-width: 220px;
    }
}

.toggle_wrap {
    position: relative;
    text-align: start;
    width: 100%;
}

.toggle_wrap .toggle_btn {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 450px;
    height: 50px;
    z-index: 1;
}

.toggle_wrap label {
    position: relative;
    left: 0;
    width: 380px;
    height: 50px;
    border-radius: 60px;
    /* background-color: grey; */
    border: 1.5px solid var(--c2);
}

.toggle_wrap label::before {
    position: absolute;
    content: '';
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 50%;
    border-radius: 60px;
    background-color: var(--c3);
}

.toggle_wrap .t_content {
    padding-top: 32px;
}

.toggle_wrap .t_content .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: 50px;
}

.toggle_wrap .on,
.toggle_wrap .of {
    position: absolute;
    width: 50%;
    top: 4px;
    left: 0;
    bottom: 4px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 10px 32px;
    text-transform: capitalize;
}

.toggle_wrap .on {
    color: var(--cf);
}

.toggle_wrap .of {
    color: var(--c2);
    left: auto;
    right: 0;
}

.toggle_wrap .small_list {
    display: flex;
}

.toggle_wrap .enterprise_list {
    display: none;
}

.toggle_wrap input[type="checkbox"]:checked~label::before {
    left: auto;
    right: 4px;
    /* background-color: var(--c2); */
}

.toggle_wrap input[type="checkbox"]:checked~div .info .on {
    color: var(--c2);
}

.toggle_wrap input[type="checkbox"]:checked~div .info .of {
    color: var(--cf);
}

.toggle_wrap input[type="checkbox"]:checked~div .small_list {
    display: none;
}

.toggle_wrap input[type="checkbox"]:checked~div .enterprise_list {
    display: flex;
}

@media(max-width:768px) {
    .toggle_wrap .toggle_btn {
        width: 320px;
        height: 45px;
    }
    .toggle_wrap label {
        width: 320px;
        height: 45px;
    }
    .toggle_wrap label::before {
        width: 48%;
    }
    .toggle_wrap .t_content .info {
        width: 320px;
        height: 45px;
    }
    .toggle_wrap .on,
    .toggle_wrap .of {
        padding: 10px 14px;
    }
}