@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #0E308C;
    --secondary: #12389E;
    --light: #E8EDF3;
    --text: rgba(16, 40, 75, 0.7);
    --white: #ffff;
    --dark: #96A3B6;
    --font1: "Montserrat", sans-serif;
    --font2: "Lexend", sans-serif;
}

body {
    margin: 0;
    font-family: var(--font1);
    font-size: 16px;
    line-height: 160%;
    overflow-x: hidden;
    color: var(--primary);
    padding-top: 95px;
}

a {
    color: var(--primary);
    text-decoration: none !important;
    transition: all 0.4s;
}

a:hover {
    color: var(--text);
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font2);
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    color: var(--white);
    background: var(--primary);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

html .container {
    max-width: 100%;
    margin: 0 auto;
    width: 1200px;
    padding: 0 25px;
}

html .container-sm {
    width: 1130px;
    max-width: 100%;
}

html .container-lg {
    max-width: 100%;
    width: 1370px;
    margin: 0 auto;
    padding: 0 25px;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

html .btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    font-family: var(--font2);
    font-size: 15px;
    color: #FFF;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.4s;
    border: 0;
    height: 50px;
    border-radius: 10px;
}

html .btn span {
    background: var(--secondary);
    padding: 0 25px;
    border-radius: inherit;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.4s;
}

html .btn .icon {
    background: var(--secondary);
    border-radius: inherit;
    color: inherit;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    aspect-ratio: 1 / 1;
}

html .btn:hover {
    color: var(--white);
    background: transparent;
}

html .btn:hover span {
    background: var(--primary);
}

html .btn:hover .icon {
    background: var(--primary);
}

html .btn-light {
    color: var(--primary);
}

html .btn-light:hover {
    color: var(--white);
}

html .btn-light span {
    background: var(--white);
}

html .btn-light:hover span {
    background: var(--primary);
}

html .btn-light .icon {
    background: var(--white);
}

html .btn-light:hover .icon {
    background: var(--primary);
}

.header-main-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky .header-main-bar {
    align-items: center;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    transition: all 0.4s;
    background-color: transparent;
    padding: 20px 0;
}

.hero_sec .container,
html header .container {
    width: 1370px;
}

header .header-bottom .btn {
    margin-left: 40px;
}

.sticky header {
    box-shadow: 0 6px 15px 0 rgb(0 0 0 / 4%);
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sticky header .header-logo a {
    max-width: 120px;
}

.header-logo a {
    display: block;
    max-width: 120px;
}

.sticky .header-logo a {
    max-width: 150px;
}

.header-logo img {
    display: block;
}

header nav>ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav>ul>li {
    position: relative;
}

header nav>ul>li+li {
    margin-left: 28px;
}

header nav>ul>li>a {
    color: var(--primary);
    font-weight: 300;
    font-size: 17px;
    display: inline-block;
    vertical-align: top;
    line-height: 110%;
    position: relative;
    transition: all 0.5s !important;
    font-family: var(--font2);
}

header nav>ul>li.menu-parent>a:after {
    content: "";
    display: inline-block;
    vertical-align: top;
    border-right: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin: 18px 0 0 8px;
    transition: all 0.4s;
}

header nav>ul>li:hover>a:after {
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

.sub-menu {
    position: absolute;
    top: 100%;
    background: var(--white);
    left: 0;
    min-width: 260px;
    padding: 8px;
    border-radius: 11px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translatey(20px);
    visibility: hidden;
    transition: all 0.4s;
    z-index: 9;
    font-size: 15px;
}

li:hover>.sub-menu {
    opacity: 1;
    transform: translatey(0);
    visibility: visible;
}

.sub-menu li {
    margin-bottom: 5px;
}

.sub-menu li:last-child {
    margin-bottom: 0;
}

.sub-menu li a {
    color: var(--dark);
    display: block;
    padding: 8px;
    border-radius: 4px;
    line-height: 120%;
    position: relative;
}

.sub-menu li a:hover {
    color: var(--white);
    background-color: var(--primary);
}

.sub-menu li.active {
    color: var(--primary);
    background: var(--light2);
    border-radius: 4px;
}

.sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

.sub-menu>li.list-item-parent {
    position: relative;
}

.sub-menu>li>a:hover,
.sub-menu>li:hover>a {
    background-color: var(--primary);
    color: var(--white);
}

.sub-menu>li:hover>a:after {
    border-color: var(--primary);
}

.header-navbar {
    margin-left: auto;
}

.main {
    position: relative;
}

.scrollToTop {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    border-radius: 55px;
    right: 30px;
    line-height: 40px;
    color: var(--white);
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    background: #061428;
    z-index: 9;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky .scrollToTop {
    animation-name: bounceInUp;
    opacity: 1;
}

.scrollToTop:hover {
    color: var(--white);
    background-color: var(--primary);
}

header nav>ul>li>a:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background: var(--primary);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    margin: auto;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
}

header nav>ul>li>a:hover {
    color: var(--primary);
}

header nav>ul>li>a:hover:before,
header nav>ul>li.active>a:before {
    visibility: visible;
    opacity: 1;
    bottom: -10px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-top {
    margin: 30px 30px 0;
    padding: 60px;
}

.footer-top .logo {
    margin-bottom: 60px;
}

.footer-top .logo a {
    max-width: 146px;
    display: block;
}

.footer-top .logo~p {
    font-weight: 400;
    line-height: 150%;
    color: #0A0D29;
    font-size: 16px;
}

.footer-top h6 {
    font-family: var(--font1);
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    border-bottom: 1px solid #12389E1A;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.quick-links a {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
}

.quick-links a:hover {
    color: var(--dark);
}

.footer-top .adrs p {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 18px;
}

.footer-top .adrs p:last-child {
    margin-bottom: 0px;
}

footer .container {
    width: 1450px;
}

.footer-top .ftr_b a {
    font-weight: 600;
    font-size: 70px;
    line-height: 100%;
}

.social_icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social_icons li a {
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #12389E1A;
    border-radius: 10px;
}

.social_icons li a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .quick-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-bottom .quick-links li {
    border-right: 1px solid #12389E24;
    padding-right: 10px;
}

.footer-bottom .quick-links li:last-child {
    border-right: none;
    padding-right: 0;
}

.laxraj-love svg {
    color: var(--primary);
    width: 14px;
    margin: 0 3px;
    font-size: 10px;
}

.stp_prcs_bx {
    overflow: hidden;
}

.stp_prcs_bx h4 {
    margin: 0;
    padding: 30px;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    background: #E8EDF3B2;
    backdrop-filter: blur(14px);
    border-radius: 20px;
}

section.stp_prcs_sec h2 {
    font-weight: 200;
    font-size: 220px;
    line-height: 100%;
    margin-top: 55px;
}

.stp_prcs_bx .image a {
    display: block;
    height: 270px;
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.stp_prcs_bx .image a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.stp_prcs_bx:hover .image a img {
    transform: scale(1.1);
}

section.stp_prcs_sec {
    padding-left: 40px;
}

.aplctn_bx .image {
    display: block;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.aplctn_bx .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.aplctn_bx:hover .image img {
    transform: scale(1.1);
}

.aplctn_bx {
    text-align: center;
    border: 1px solid #E8EDF3;
    border-radius: 20px;
    overflow: hidden;
}

.aplctn_bx h3 {
    font-weight: 300;
    font-size: 28px;
    line-height: 130%;
    text-align: center;
    width: 78%;
    margin: 20px auto;
}

.title h2 {
    font-weight: 200;
    font-size: 60px;
    line-height: 110%;
    margin: 0;
}

.title h2 span {
    color: var(--primary);
}

section.aplctn_sec h2 {
    font-size: 50px;
    margin-right: -90px;
}

html .badge {
    border: 1px solid #12389E24;
    font-family: Lexend;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 7px 12px;
    color: var(--secondary);
}

.aplctn_shp img {
    position: absolute;
    bottom: -170px;
    left: 0px;
}

section.aplctn_sec .txt-wrp {
    margin-bottom: -161px;
}

section.our_clent_crsl {
    overflow: hidden;
    padding-bottom: 20px !important;
}

section.our_clent_crsl h2 {
    font-weight: 200;
    font-size: 140px;
    line-height: 110%;
    margin-top: 50px;
}

section.our_clent_crsl .col-md-6>img {
    margin-bottom: -100px;
}

section.srp_prdct_sec .title .badge {
    margin-bottom: 20px;
}

section.srp_prdct_sec .title {
    margin-bottom: 120px;
}

section.srp_prdct_sec .txt_wrp {
    background: #E8EDF3;
    border-radius: 20px;
    padding: 70px 60px;
    text-align: center;
    min-height: 436px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.6s;
}

section.srp_prdct_sec .txt_wrp h4 {
    font-weight: 200;
    font-size: 44px;
    line-height: 110%;
    margin-bottom: 0;
}

section.srp_prdct_sec .txt_wrp p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

section.srp_prdct_sec .txt_wrp .content {
    max-height: 0;
    transition: all 1s;
    overflow: hidden;
}

section.srp_prdct_sec .txt_wrp:hover .content {
    max-height: 800px;
    margin: 32px 0 0;
}

section.srp_prdct_sec .image {
    position: relative;
    margin: 0 auto;
    display: block;
    text-align: center;
}

section.srp_prdct_sec .icon a {
    border: 1px solid #E8EDF3;
    height: 180px;
    width: 180px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 2;
}

section.srp_prdct_sec .icon a:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: rotate(30deg);
}

section.srp_prdct_sec .image {
    position: relative;
    margin: 0 auto;
    display: block;
    text-align: center;
    min-height: 436px;
}

.srp_prdct_sec .image img {
    filter: drop-shadow(0px 24px 14px #00000026);
}

.srp_prdct_sec .nes .image img {
    width: 380px;
}

.srp_prdct_sec .rs .image img {
    width: 280px;
    margin-right: 100px;
}

.srp_prdct_sec .ppbs .image img {
    width: 420px;
}

.srp_prdct_sec .rs .icon a {
    left: auto;
    right: 0;
    top: auto;
    bottom: 20px;
}

.srp_prdct_sec .item {
    margin-bottom: 100px;
}

.srp_prdct_sec .item:last-child {
    margin-bottom: 0px;
}

.counter p {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.counter .count {
    margin: 0;
    font-weight: 400;
    font-size: 70px;
    line-height: 80%;
}

section.abtus_sec .container {
    width: 1340px;
}

section.abtus_sec .title {
    margin-bottom: 38px;
}

section.abtus_sec p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 30px;
}

section.counter_sec {
    background: linear-gradient(180deg, #E8EDF3 0%, #FFFFFF 100%);
}

.abtus_sec {
    padding-bottom: 46px;
}

.abtus_sec:before {
    content: "";
    background: #E8EDF3;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    position: absolute;
    inset: 0;
    bottom: -1px;
    z-index: -1;
}

.abtus_sec img {
    filter: drop-shadow(0px 24px 14px #00000026);
}

.hero_sec h1 {
    font-weight: 700;
    font-size: 37px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero_sec h2 {
    font-size: 32px;
    font-weight: 200;
    line-height: 110%;
    margin-bottom: 40px;
}

.hero_sec .image {
    height: 545px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero_sec .image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 24px 14px #00000026);
}

.hero_sec .image:before {
    content: "";
    height: 460px;
    width: 460px;
    background-color: var(--secondary);
    border-radius: 50%;
    position: absolute;
    inset: 0;
    z-index: -1;
    margin: auto;
}

ul.social-icon {
    display: flex;
    align-items: center;
}

ul.social-icon a {
    border: 1px solid #FFFFFF1A;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #E8EDF3;
}

ul.social-icon a:hover {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);
}

.header-main-bar .header-right {
    display: flex;
    align-items: center;
}

html .h-btn {
    line-height: 44px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 10px;
    padding: 0 25px;
    font-family: Lexend;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

html .h-btn:hover {
    background-color: #000;
    color: var(--white);
}

div#google_translate_element .goog-te-gadget-simple {
    border: 0 !important;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

div#google_translate_element .goog-te-gadget-simple a>span {
    border: 0 !important;
    font-family: var(--font1);
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
}

div#google_translate_element .goog-te-gadget-simple a img~span[aria-hidden="true"] {
    font-size: 0;
}

div#google_translate_element .goog-te-gadget-simple a img~span[aria-hidden="true"]:before {
    content: "";
    height: 12px;
    width: 12px;
    display: inline-block;
    background-image: url('data:image/svg+xml,<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.75 0.75C8.75 0.75 5.804 3.75 4.75 3.75C3.6959 3.75 0.75 0.75 0.75 0.75" stroke="%230E308C" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

div#google_translate_element .goog-te-gadget-simple span {
    line-height: 100%;
    font-family: var(--font1);
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;

}

div#google_translate_element .goog-te-gadget-simple>.goog-te-gadget-icon {
    background-image: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.75 16.75C13.1683 16.75 16.75 13.1683 16.75 8.75C16.75 4.33172 13.1683 0.75 8.75 0.75C4.33172 0.75 0.75 4.33172 0.75 8.75C0.75 13.1683 4.33172 16.75 8.75 16.75Z" stroke="%230E308C" stroke-width="1.5"/><path d="M5.5498 8.75C5.5498 13.55 8.7498 16.75 8.7498 16.75C8.7498 16.75 11.9498 13.55 11.9498 8.75C11.9498 3.95 8.7498 0.75 8.7498 0.75C8.7498 0.75 5.5498 3.95 5.5498 8.75Z" stroke="%230E308C" stroke-width="1.5" stroke-linejoin="round"/><path d="M15.9498 11.15H1.5498" stroke="%230E308C" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M15.9498 6.35001H1.5498" stroke="%230E308C" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
    background-size: cover;
    height: 18px;
    width: 18px;
    background-position: 0 0 !important;
}

div#google_translate_element .goog-te-gadget-simple span a {
    display: inline-flex;
    align-items: center;
    margin: 0;
    gap: 5px;
}

div#google_translate_element .goog-te-gadget-simple span a>img {
    display: none;
}

.overlay {
    background-color: #ffffff0d;
    position: absolute;
    inset: 0;
    z-index: 9;
    height: 100vh;
    backdrop-filter: blur(12px);
    visibility: hidden;
    opacity: 0;
}

.overlay {
    background-color: #ffffff0d;
    position: absolute;
    inset: 0;
    z-index: 9;
    height: 100vh;
    backdrop-filter: blur(12px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.menu-show .overlay {
    visibility: visible;
    opacity: 1;
}

#google_translate_element .goog-te-gadget {
    font-size: 0;
    display: flex;
}

#google_translate_element .goog-te-gadget>span {
    display: none;
}

#google_translate_element select {
    --bs-form-select-bg-img: url('data:image/svg+xml,<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.75 0.75C8.75 0.75 5.804 3.75 4.75 3.75C3.6959 3.75 0.75 0.75 0.75 0.75" stroke="%230E308C" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>'), url("../images/global.svg");
    display: block;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img);
    background-repeat: no-repeat;
    background-position: right 12px, left center;
    background-size: 10px, 18px;
    border: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 0 0 transparent !important;
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    padding: 0 18px 0 26px;
    height: 28px;
    font-family: var(--font2);
    outline: none;
    cursor: pointer;
}

div#google_translate_element {
    display: block;
    width: 29%;
}

.hero_sec {
    padding-top: 70px;
}

.icn_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    line-height: 38px;
    border: 1px solid #0E308C33;
    border-radius: 50px;
}

.icn_btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

ul.quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.circlebtn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    min-width: 230px;
    height: 230px;
    border-radius: 500px;
}

.circlebtn img {
    display: block;
    width: 65px;
    transition: all 0.6s;
}

.circlebtn:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-image: url('../images/connect-us.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: spin 15s linear infinite;
}

.circlebtn:hover img {
    transform: rotate(45deg);
}

.circlebtnlight:before {
    filter: brightness(0) invert(1);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.footer-top ul.quick-links {
    border-top: 1px solid #12389E24;
    padding-top: 60px;
    margin-top: 60px;
}

.footer-top h2 {
    font-family: var(--font1);
    font-weight: 600;
    font-size: 120px;
    line-height: 100%;
    margin: 40px 0 0;
}

.footer-top .container {
    width: 1390px;
}

section.srp_prdct_sec {
    padding-top: 40px;
}

section.srp_prdct_sec .container {
    width: 1130px;
}

section.aplctn_sec .container {
    width: 1170px;
}

section.aplctn_sec {
    padding-bottom: 160px;
}

.cstm_row .col-md-4:nth-child(3n+2) {
    transform: translateY(93px);
}

.cstm_row .col-md-4:nth-child(3n+3) {
    transform: translateY(186px);
}

.stp_prcs_crsl {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

.stp_prcs_crsl .stp_prcs_bx {
    width: 380px;
    min-width: 380px;
    max-width: 100%;
}

section.stp_prcs_sec {
    padding-top: 200px;
}

footer {
    overflow: hidden;
}

footer .footer-top {
    position: relative;
    z-index: 1;
}

footer .footer-top .inner {
    background: var(--light);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 20px;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.client_crsl .swiper-wrapper {
    height: auto;
    padding-bottom: 20px;
}

#home_featpersonal-wrap>*,
#home_featpersonal-wrap>*>* {
    overflow: visible !important;
}

ul.home_featpersonal_img {
    padding: 0;
    margin: 0;
    list-style: none;
    white-space: nowrap;
    display: -ms-flexbox;
    display: flex;
}

ul.home_featpersonal_img li {
    border: 1px solid #E8EDF3;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px #12389E14;
    border-radius: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 200px;
    min-width: 200px;
    margin-right: 20px;
}

ul.home_featpersonal_img li img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-sec {
    padding-top: 30px;
    padding-bottom: 40px;
}

.feature-card-sec .container {
    width: 1370px;
}

.feature-card-sec h2 {
    font-size: 60px;
    font-weight: 200;
    line-height: 110%;
    margin-bottom: 50px;
    color: var(--secondary);
}

.feature-card-block {
    border-left: 1px solid var(--light);
    padding: 40px;
}

.feature-card-img {
    margin-bottom: 30px;
}

.feature-card-block h4 {
    color: var(--secondary);
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 16px;
    font-size: 26px;
}

.feature-card-block p {
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
}

.content-box-sec .container {
    width: 1370px;
}

.content-box-block {
    padding: 50px 40px;
    min-height: 400px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    border: 1px solid var(--secondary);
    border-radius: 20px;
    background: var(--white);
}

.content-box-wrapper-v1 {
    margin-bottom: 30px;
}

.content-box-block h2 {
    margin-bottom: 18px;
    font-weight: 400;
    line-height: 110%;
    font-size: 40px;
}

.content-box-block p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.content-tr-box h2 {
    color: var(--secondary);
}

.content-tr-box p {
    color: var(--primary);
}

.content-bg-box {
    background-color: var(--secondary);
}

.content-bg-box h2,
.content-bg-box p {
    color: var(--white);
}

.content-box-wrapper-v2 .content-box-block {
    min-height: 370px;
}

.content-box-wrapper-v2 p {
    font-weight: 400;
}

.content-box-wrapper-v1 .content-tr-box p {
    max-width: 300px;
}

.content-box-wrapper-v1 .content-bg-box p {
    max-width: 549px;
}

.content-box-wrapper-v2 .content-tr-box h2 {
    margin-bottom: 30px;
}

.content-box-wrapper-v2 .content-tr-box p {
    font-size: 24px;
    line-height: 140%;
    font-family: var(--font2);
}

section.content-box-sec {
    background: linear-gradient(180deg, #E8EDF3 0%, #FFFFFF 100%);
}

.hero_sec .image model-viewer#model {
    height: 100%;
    width: 100%;
    object-fit: contain;
    overflow: hidden;
}

model-viewer::part(progress-bar) {
    display: none !important;
}

model-viewer {
    outline: none !important;
    --progress-bar-height: 0px;
}

.process-card-sec {
    overflow: hidden;
}

.process-card-sec .container {
    width: 1370px;
}

/* .process-slider {
  width: 100vw;
  margin-right: calc(50% - 50vw);
} */
.process-card-sec .process-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-card-sec .process-item .process-box {
    display: flex;
}

.process-card-sec .process-title span {
    display: inline-block;
    border: 1px solid #12389E24;
    background: #FFFFFF;
    padding: 9px 12px;
    border-radius: 10px;
    font-family: var(--font2);
    font-weight: 400;
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    color: var(--primary);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.process-card-sec .process-title h3 {
    font-family: var(--font2);
    font-weight: 500;
    font-size: 26px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--primary);
}

.process-card-sec .process-img img {
    width: 300px;
    max-width: 300px;
    aspect-ratio: 9 / 9.5;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.process-card-sec .process-content {
    padding: 30px;
    backdrop-filter: blur(30px);
    border: 2px solid #E8EDF3;
    border-radius: 20px;
    display: flex;

}

.process-card-sec .process-content p {
    font-weight: 500;
    font-size: 15px;
    line-height: 150%;
    display: flex;
    align-items: center;
}

.process-slider .owl-stage-outer .owl-stage .owl-item.cloned:nth-child(2) {
    opacity: 0;
}

.process-card-sec {
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: auto;
    padding-left: 20px !important;
}

.process-slider {
    display: flex;
    /* height: 100%; */
    width: max-content;
    gap: 40px;
    padding-right: 17vw !important;
}

.process-item {
    width: 60vw;
    flex-shrink: 0;
}

.process-card-sec .container {
    max-width: 100%;
    padding: 0;
}

@media (max-width: 1599px) {
    .process-slider {
        padding-right: 7vw !important;
    }
}

@media (max-width: 1450px) {
    .process-slider {
        padding-right: 5vw !important;
    }
}

@media(max-width: 767px) {
    .process-slider {
        padding-right: 0px !important;
        overflow: unset;
    }

    html .process-item {
        width: calc(100% - 20px);
    }

    section.srp_prdct_sec .txt_wrp.new_era_srp {
        margin-top: 20px;
    }
}

/* contact us sec */

.contact-us-sec {
    padding-block: 80px;
}

.contact-row-first {
    margin-bottom: 80px;
}

.contact-row-first h6 {
    font-weight: 400;
    margin: 0;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #12389E24;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 110%;
    margin-bottom: 20px;
}

.contact-row-first h2 {
    font-size: 100px;
    font-weight: 200;
    line-height: 122%;
    margin-bottom: 12px;
}

.contact-row-first p {
    max-width: 524px;
}

.contact-row-second h3 {
    font-weight: 200;
    margin: 0 0 10px 0;
    font-size: 26px;
    line-height: 110%;
}

.contact-row-second h3:not(:first-child) {
    margin-top: 40px;
}

.contact-row-second h6 {
    margin: 0;
}

.contact-row-second h6 a {
    max-width: 396px;
    font-weight: 500;
    display: block;
    line-height: 150%;
    font-size: 20px;
    font-family: var(--font1);
    display: block;
}

.contact-row-second h2 {
    font-weight: 200;
    font-size: 36px;
    line-height: 110%;
    margin-bottom: 10px;
}

.contact-row-second p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin: 0;
    margin-bottom: 50px;
}

html .form-control,
html .form-select {
    border: 0;
    outline: none;
    box-shadow: none !important;
    border-radius: 0;
    background-color: transparent;
}

html .form-control {
    display: block;
    width: 100%;
    padding: 0 0 18px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: var(--secondary);
    border-bottom: 1px solid #12389E33;
    transition: border-color .3s ease;
}

html textarea.form-control {
    min-height: 0;
    max-height: 40px;
    resize: none;
}

html .form-select {
    padding: 0 30px 18px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    border-bottom: 1px solid #12389E33;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='none' stroke='%2312389E' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px;
    cursor: pointer;
}

html .form-control:focus,
html .form-select:focus {
    border-bottom-color: var(--secondary);
}

html .form-control::placeholder {
    color: var(--secondary);
    font-weight: 500 !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    font-family: var(--font1);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* certificate sec */

.certificate-sec {
    padding-block: 80px;
}

.certificate-sec h2 {
    font-weight: 200;
    font-size: 60px;
    line-height: 110%;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary);
}

.certificate-img {
    width: 100%;
    height: 413px;
    margin: 0 0 18px 18px;
    margin-bottom: 18px;
    position: relative;
    background-color: var(--white);
    box-shadow: 0px 8px 20px 0px #12389E14;
}

.certificate-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 248px;
    left: -18px;
    bottom: -18px;
    background-color: var(--light);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: -1;
    transition: all 0.5s ease;
}

.certificate-img:hover:after {
    width: 200px;
    height: 200px;
    background-color: var(--secondary);
}

.certificate-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.certificate-sec h6 {
    font-weight: 300;
    font-size: 20px;
    line-height: 110%;
    text-align: center;
    margin-top: 28px;
    margin-bottom: 0;
    color: var(--secondary);
}

/* about hero banner */

.about-hero-banner {
    padding-block: 80px;
}

.about-title-img h2 {
    font-weight: 200;
    font-size: 60px;
    line-height: 110%;
    color: var(--secondary);
    max-width: 455px;
    margin: 0;
    margin-bottom: 83px;
}

.about-content p {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    color: var(--secondary);
    line-height: 150%;
}

.about-content p:not(:last-child) {
    margin-bottom: 14px;
}

.about-hero-banner .counter {
    margin-top: 50px;
}

.counter span {
    display: block;
    margin: 0;
    margin-bottom: 10px;
    color: var(--secondarye);
    font-weight: 500;
    line-height: 140%;
    text-transform: uppercase;
    font-size: 16px;
}

.counter h2 {
    font-weight: 400;
    font-size: 80px;
    margin: 0;
    color: var(--secondarye);
    line-height: 80%;
}

/* precision sec */

.precision-sec {
    padding: 60px 35px;
    background-color: var(--secondary);
    border-radius: 20px;
    margin: 80px 40px;
    margin-top: 0;
    background-image: url(../images/construction-site-white.svg);
    background-repeat: no-repeat;
    background-position: 34% 100%;
    overflow: hidden;
    background-size: contain;
}

.precision-content-wrapper {
    gap: 160px;
}

.precision-content-wrapper h2 {
    font-size: 60px;
    line-height: 110%;
    font-weight: 200;
    max-width: 765px;
    color: var(--white);
    margin: 0;
}

.precision-content-wrapper p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    max-width: 506px;
    color: var(--white);
    font-family: var(--font1);
}

/* about column sec */

.about-column-sec {
    padding: 0;
}

.main-colum-img img {
    width: 100%;
    height: 560px;
    border-radius: 20px;
    object-fit: cover;
}

.three-box-vec {
    position: absolute;
    left: 0;
    top: -1px;
    width: 200px;
    height: 200px;
}

.three-box-vec img {
    width: 100%;
    height: 100%;
}

.about-column-wrapper h2 {
    font-weight: 200;
    font-size: 60px;
    line-height: 110%;
    margin: 0;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-column-wrapper p {
    font-family: var(--font1);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--secondary);
}

.about-column-wrapper p:not(:last-child) {
    margin-bottom: 14px;
}

.p-100 {
    padding-block: 100px;
}

/* smarter-remote-sec */

.smarter-remote-sec {
    padding: 0;
    padding-bottom: 100px;
}

.smarter-remote-img {
    display: flex;
    justify-content: end;
    align-self: flex-end;
}

.smarter-remote-img img {
    width: 456px;
    height: 540px;
    object-fit: contain;
}

.smarter-remote-content h2 {
    font-weight: 200;
    font-size: 60px;
    line-height: 110%;
    color: var(--secondary);
    margin-bottom: 20px;
}

.smarter-remote-content p {
    font-family: var(--font1);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--secondary);
}

.smarter-remote-content p:not(:last-child) {
    margin-bottom: 14px;
}

/* step process sec */

.power-lifting-sec {
    height: 730px;
    background-image:
        linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0) 66.83%),
        url("../images/power-of-lifting.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.power-lifting-sec h2 {
    font-weight: 200;
    font-size: 60px;
    line-height: 130%;
    color: var(--white);
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    max-width: 650px
}

/* purpose mission sec */

.purpose-mission-content {
    padding: 40px;
    background-color: var(--light);
    border-radius: 20px;
    max-height: 100%;
    flex: 1;
}

.purpose-mission-wrapper h2 {
    font-weight: 200;
    font-size: 60px;
    line-height: 110%;
    color: var(--secondary);
    margin: 0;
    margin-bottom: 30px;
}

.purpose-mission-wrapper h3 {
    font-weight: 400;
    font-size: 28px;
    line-height: 110%;
    margin: 0;
    margin-bottom: 20px;
    color: var(--secondary);
}

.purpose-mission-wrapper p:not(:last-child) {
    margin-bottom: 14px;
}

.purpose-mission-wrapper p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--secondary);
}

.purpose-mission-wrapper .row {
    align-items: stretch;
}

.purpose-mission-wrapper .row>div {
    display: flex;
    flex-direction: column;
}

/* expertise sec */
.expertise-sec {
    background-color: var(--secondary);
    position: relative;
}

.expertise-title-content {
    position: sticky;
    top: 200px;
}

.expertise-wrapper h2 {
    font-weight: 200;
    font-size: 120px;
    line-height: 110%;
    margin-bottom: 60px;
    color: var(--white);
}

.expertise-content:first-child {
    border-top: 1px solid #FFFFFF1A;
}

.expertise-content {
    padding: 40px 30px;
    border-bottom: 1px solid #FFFFFF1A;
    border-left: 0;
    border-right: 0;
}

.expertise-content h3 {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 28px;
    line-height: 110%;
    color: var(--white);
}

.expertise-content p:not(:last-child) {
    margin-bottom: 13px;
}

.expertise-content p {
    font-family: var(--font1);
    font-weight: 500;
    font-size: 15px;
    line-height: 150%;
    color: var(--white);
}

/* sustainability sec */

.sustainability-sec {
    padding-block: 80px;
}

.sustainability-wrapper h2 {
    font-weight: 200;
    font-size: 60px;
    line-height: 110%;
}

.sustainability-wrapper p {
    font-family: var(--font1);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    max-width: 431px;
}

/* core dna sec */

.core-dna-sec {
    padding-top: 100px;
    padding-bottom: 70px;
}

.core-dna-wrapper h2 {
    font-weight: 200;
    font-size: 90px;
    line-height: 110%;
    margin: 0;
}

.product-gallery #bigpic .item>a {
    display: block;
    height: 502px;
}

.product-gallery .item a>img {
    transition: all 0.5s;
    object-fit: contain;
    height: 100%;
    border-radius: 14px;
}

/* .product-gallery .item:hover a>img {
    transform: scale(1.1);
} */

.product-gallery .item .icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
    z-index: 2;
}

.product-gallery .item .icon img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.26);
    border-radius: 50px;
    transform: scale(1.2);
    transition: all 0.4s;
}

/* .product-gallery .item:hover .icon {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.5px);
    opacity: 1;
}

.product-gallery .item:hover .icon img {
    transform: scale(1);
} */

.product_g_big {
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}


.product_g_big::after {
    content: "";
    height: 460px;
    width: 460px;
    background-color: var(--secondary);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    margin: auto;
    display:none;
}


.product_g_thumbs .item {
    height: 140px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    padding: 22px 30px;
    background-color: var(--white);
    /*background-color: var(--light);*/
	border: 1px solid #d7d7d7;
}

.product_g_thumbs .owl-item.active.current .item {
    border: 1px solid var(--secondary);
}

.product_g_thumbs {
    transform: translateX(-7px);
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

html body .product-gallery .owl-carousel .owl-nav button {
    height: 40px;
    width: 40px;
    border: 1px solid #12389E33;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    position: absolute;
    top: 0;
    bottom: 0;
    transition: all 0.4s;
    margin: auto;
    border-radius: 10px;
    background-color: var(--white);
}

html body .product-gallery .owl-carousel .owl-nav button.owl-next {
    transform: scale(-1);
    left: auto;
    right: 0;
}

.product-detail h2 {
    font-weight: 200;
    font-size: 40px;
    line-height: 110%;
    margin-bottom: 20px;
    color: var(--secondary);
}

.product-detail p,
.product-detail ul li,
.product-detail ol li {
    font-family: var(--font1);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.product-detail ul li,
.product-detail ol li {
    padding-left: 22px;
    position: relative;
}

.product-detail ul li::after,
.product-detail ol li::after {
    content: "";
    position: absolute;
    background-image: url('data:image/svg+xml,<svg width="16" height="11" viewBox="0 0 16 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.22532 4.88867H0L0 6.11076H1.22532L1.22532 4.88867Z" fill="%2312389E"/><path d="M3.67552 4.88867H2.4502V6.11076H3.67552V4.88867Z" fill="%2312389E"/><path d="M6.12766 4.88867H4.90234V6.11076H6.12766V4.88867Z" fill="%2312389E"/><path d="M8.57688 4.88867H7.35156V6.11076H8.57688V4.88867Z" fill="%2312389E"/><path d="M11.0281 4.88867H9.80273V6.11076H11.0281V4.88867Z" fill="%2312389E"/><path d="M13.4783 4.88867H12.2529V6.11076H13.4783V4.88867Z" fill="%2312389E"/><path d="M15.9304 4.88867H14.7051V6.11076H15.9304V4.88867Z" fill="%2312389E"/><path d="M13.4792 2.44336H12.2539V3.66545H13.4792V2.44336Z" fill="%2312389E"/><path d="M11.0281 0L9.80273 0V1.22209H11.0281V0Z" fill="%2312389E"/><path d="M13.4792 7.33203H12.2539V8.55412H13.4792V7.33203Z" fill="%2312389E"/><path d="M11.0261 9.77734H9.80078V10.9994H11.0261V9.77734Z" fill="%2312389E"/></svg>');
    width: 15px;
    height: 10px;
    background-size: cover;
    left: 0;
    top: calc(50% - 5px);
}

.product-detail ul,
.product-detail ol {
    margin-bottom: 30px;
}

.product-detail ul li:not(:last-child),
.product-detail ol li:not(:last-child) {
    margin-bottom: 8px;
}

.product-detail p:not(:last-child) {
    margin-bottom: 30px;
}

.product-detail h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    margin-bottom: 14px;
}

.inquiry-block-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.inquiry-block-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 25px;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    text-transform: uppercase;
    color: var(--white);
    border-radius: 10px;
    transition: all 0.5s ease;
}

.inquiry-block-wrapper a:hover {
    opacity: 75%;
}

.inquiry-block-wrapper>a:first-child {
    background-color: var(--secondary);
}

.inquiry-block-wrapper>a:last-child {
    background-color: #00B71E;
}

.product-detail-breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    gap: 36px;
}

.product-detail-breadcrumb li {
    position: relative;
}

.product-detail-breadcrumb li:not(:first-child):after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary);
    left: calc(-39px / 2);
    top: calc(50% - 3px);
}

.product-detail-breadcrumb li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
}


/* attachment_sec */

.attachment_sec .attachment_wrapper {
    border: 1px solid var(--light);
    padding: 40px;
    border-radius: 20px;
}

.attachment_sec .attachment_wrapper h3 {
    font-family: var(--font2);
    font-weight: 200;
    font-size: 34px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    color: var(--secondary);
    margin: 0 0 19px 0;
}

.attachment_sec .attachment_wrapper .attachment_list {
    position: relative;
}

.attachment_sec .attachment_wrapper .attachment_list:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 252px;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    background: var(--light);
}



.attachment_sec .attachment_wrapper ul.attachment_list_item {
    max-width: 90%;
}

.attachment_sec .attachment_wrapper ul.attachment_list_item li {
    margin-bottom: 10px;
    border-radius: 10px;
}

.attachment_sec .attachment_wrapper ul.attachment_list_item li:last-child {
    margin-bottom: 0;
}

.attachment_sec .attachment_wrapper ul.attachment_list_item li a {
    display: block;
    border-radius: 10px;
    background-color: var(--secondary);
    padding: 10px 25px;
    transition: all 0.5s ease;
}

.attachment_sec .attachment_wrapper ul.attachment_list_item li a:hover {
    opacity: 75%;
}

.attachment_sec .attachment_wrapper ul.attachment_list_item li a .attachment_list_data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 19px;
    font-family: var(--font2);
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--white);
}

.attachment_sec .attachment_wrapper ul.attachment_list_item li a .attachment_list_data p {
    margin: 0;
    width: 100%;
}

.attachment_sec .attachment_wrapper .logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #E8EDF380;
    border-radius: 10px;
    width: 100%;
    /* max-width: 125px; */
    height: 80px;
}


/* technical-detail-sec */

.technical-detail-sec {
    padding-top: 0;
    padding-bottom: 100px;
}


.technical-detail-sec table {
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
	width: 100%;
}

.technical-detail-sec table tr td {
    font-family: var(--font1);
    font-weight: 600;
    font-size: 15px;
    line-height: 130%;
    padding: 16px 25px;
    border: 1px solid #12389E24;
}

.technical-detail-sec table tr td:nth-child(even) {
    font-weight: 500;
}

.product_detail_title h2 {
    font-weight: 200;
    font-size: 44px;
    line-height: 110%;
    margin-bottom: 40px;
}

.technical-detail-sec table tr:nth-child(odd) {
    background-color: var(--light);
}

.technical-detail-sec table tr:first-child td:first-child {
    border-radius: 12px 0 0 0;
}

.technical-detail-sec table tr:first-child td:last-child {
    border-radius: 0 12px 0 0;
}

.technical-detail-sec table tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.technical-detail-sec table tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

/* galerry_sec */

.galerry_sec {
    padding-top: 0;
    padding-bottom: 100px;
}

#gallery {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

#gallery {
    column-width: 350px;
    gap: 30px;
}

#gallery li {
    width: 100%;
    height: auto;
    display: block;
    break-inside: avoid;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.4s;
}

#gallery img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    position: static !important;
    transition: all 1s;
}

#gallery li:hover img {
    transform: scale(1.08);
}

/* product-category */
/* .our_product .title{
    padding-bottom: 60px;
} */
.our_product {
    padding-top: 30px;
}

.product-box {
    padding: 20px 20px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden
}

.product-box h4 a {
    font-size: 22px;
    color: var(--primary);
    /*text-transform: uppercase;*/
    font-weight: 500;
    line-height: 130%;
}

.product-title {
    padding-bottom: 20px;
}

.product-title h4 a {
    font-size: 20px;
}

.product_link {
    text-align: right;
    margin-top: 20px;
}

.product-box:after,
.product-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-left: 1px solid #00165933;
    border-top: 1px solid #00165933;
}

.product-box:after {
    right: 0;
    left: auto;
    bottom: 0;
    top: auto;
    transform: scale(-1);
}

.product_link a {
    color: var(--dark);
}

/*.our_product .product-box a.product-img{
    height: 188px;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.product-box:hover a.product-img img {
    transform: scale(1.05);
}

.product-box a.product-img img {
    transition: all 0.4s;
    max-width: 100%;
    width: auto;
    height: auto;
}

.product-box:hover {
    background: var(--white);
}

.product_link a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 90px solid var(--primary);
    border-left: 90px solid transparent;
    right: 0;
    bottom: 0;
    transition: all 0.4s;
    bottom: -120px;
    opacity: 0;
}

.product-box:hover .product_link a:after {
    bottom: 0px;
    opacity: 1;
}

.product-box .product_link a svg {
    position: relative;
    z-index: 1;
}

.product-box:hover .product_link a img {
    transform: scale(1.2);
}

.product-box:hover .product_link a {
    color: var(--white);
}

/* product-category */


/* product-img-content */

.product-img-content {
    padding-top: 0;
    padding-bottom: 100px;
}

.product-imgcontent-wrapper {
    display: block;
    border: 1px solid #12389E33;
    padding: 22px 15px;
    border-radius: 14px;
    height: 100%;
}


.product-imgcontent-wrapper span {
    display: block;
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
}

.product-img {
    padding: 18px 45px;
    height: 270px;
}

.product-img img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    object-fit: contain;
}

.product-imgcontent-wrapper:hover img {
    transform: translatey(-15px);
}

/* pop */


.form-box {
    padding: 50px 60px;
    width: 650px;
    max-width: 100%;
    margin-left: auto;
    background: var(--secondary);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.02);
    border-radius: 20px;
}

.form-field label {
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    color: var(--text);
    margin-bottom: 8px;
}

.form-field label em {
    font-style: normal;
    color: #D62B39;
}

html .form-control {
    padding: 12px 22px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    border: 0;
    box-shadow: none !important;
}

html textarea.form-control {
    min-height: 90px;
    resize: none;
}

.form-box .btn-wpr .btn {
    margin-top: 30px;
    background-color: white;
    padding: 20px 45px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all 0.5s ease;
    color: #000;
}

.form-box .btn-wpr .btn:hover {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}


html .btn-close {
    background: transparent;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    align-self: flex-end;
    margin: 30px;
    transition: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 1 !important;
    box-shadow: none !important;
}


html .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    position: relative;
    padding: var(--bs-modal-padding);
}

.form-box h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--white);

}

.form-box label {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 9px;
}

.form-box .form-control {
    color: #151515;
}

.form-box .form-control::placeholder {
    font-weight: 400 !important;
    color: #6e7074;
}


.product_list_page .container {
    width: 1360px;
}

.pl_banner {
    background-size: cover;
    background-position: center center;
    padding: 100px 50px 50px;
    position: relative;
    z-index: 1;
    margin: 0 0 30px;
    color: #fff;
}

.products_list_wrap h3 {
    font-size: 40px;
    font-weight: 200;
    margin: 60px 0 30px;
}

.pl_banner h2 {
    font-size: 60px;
    font-weight: 200;
    margin: 0;
}

.pl_banner .title {
    margin: 0 0 20px;
}

.pl_banner .title span.badge {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.pl_banner .title span.badge a {
    color: inherit;
}

.pl_banner:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, #12389E 0%, rgba(18, 56, 158, 0) 100%);
    z-index: -1;
}

.product-box .img {
    display: flex;
    align-items: center;
    height: 220px;
    justify-content: center;
}

.product-box .img img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.5s ease;
}

.product-box:hover .img img {
    transform: scale(0.9);
}

/* map section  */
.map-section,
.map-content {
    position: relative;
}

.map-wrapper {
    width: 100%;
    left: -6%;
    top: 18px;
    position: relative;
}

.map-image {
    width: 100%;
    height: 100%;
    max-width: 533px;
    display: block;
    object-fit: contain;
}

.location-pin {
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.map-wrapper .nav-link {
    padding: 0;
    background-color: transparent !important;
}

.map-wrapper .nav-link svg,
.map-wrapper .nav-link svg path {
    transition: all 0.4s ease;
}

.map-wrapper .nav-link.active svg,
.map-wrapper .nav-link:hover svg {
    transform: scale(1.25);
}

.map-wrapper .nav-link.active svg path:first-child,
.map-wrapper .nav-link:hover svg path:first-child {
    fill: var(--secondary);
}

/* tooltip base */
.city-tooltip {
    position: absolute;
    top: -43px;
    left: 35%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 0 17px;
    border-radius: 4px;
    font-family: var(--font2);
    font-weight: 600;
    font-size: 14px;
    line-height: 31px;
    letter-spacing: 0%;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 8px;
}

.map-wrapper .nav-link:hover .city-tooltip,
.map-wrapper .nav-link.active .city-tooltip {
    opacity: 1;
    visibility: visible;
}

.map-section .title-wrap {
    position: relative;
}

.map-section .title-wrap h2 {
    font-family: var(--font2);
    font-weight: 200;
    font-size: 100px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 16px;
}


.tab-content {
    position: absolute;
    padding: 30px;
    background: var(--light);
    border-radius: 20px;
    right: 0;
    bottom: -10%;
    width: 100%;
    max-width: 380px;
    height: fit-content;
}

.tab-content .tab-pane .call-detail {
    margin: 14px 0;
}

.tab-content h4 {
    font-family: var(--font2);
    font-weight: 600;
    font-size: 18px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--secondary);

}

.tab-content span {
    font-family: var(--font2);
    font-weight: 200;
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--secondary);
}

.tab-content p {
    font-family: var(--font1);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--secondary);
    margin: 0;
}