@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
figure {
    margin: 0;
}
a,
button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}
body {
    font-family: "Inter", sans-serif;
    font-family: "Baskervville", serif;
    font-family: "Alyamama", serif;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}
.main-wrpper {
    height: auto;
    width: 100%;
}
.container {
    max-width: 1600px;
    padding: 0 15px;
    margin: 0 auto;
}
/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    background: transparent;
    padding: 60px 0 20px;
    border: none;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    background: linear-gradient(180deg, #041b2c 0%, rgba(14, 26, 47, 0) 100%);
}
header.fix-head{
    position: fixed;
    background-color: #000;
    padding: 30px 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
    margin: 0;
    display: block;
    position: relative;
    z-index: 5;
}
.navbar-brand img {
    max-width: 100%;
    height: 35px;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-nav {
    margin-left: auto;
    margin-right: 0;
    gap: 40px;
    display: flex;
    align-items: flex-start;
}
.navbar-light .navbar-nav .nav-link {
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: 1.2px;
    display: block;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    color: #06F6F3;
}
.navbar-light .navbar-nav .btn-head {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #ffffff;
    border: 1px solid #07a0ae;
    display: table;
    padding: 12px 30px;
    border-radius: 20px;
}
.navbar-light .navbar-nav .btn-head:hover {
    background-color: #07a0ae;
    color: #fff;
}
.navbar-light .navbar-nav > li {
    position: relative;
}
.navbar-light .navbar-nav .submenu-toggle {
    display: none;
}
.navbar-light .navbar-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 220px;
    margin: 14px 0 0;
    padding: 10px 0;
    background: #041b2c;
    border: 1px solid rgba(7, 160, 174, 0.35);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: 0.25s linear;
    z-index: 130;
    text-align: center;
}
.navbar-light .navbar-nav .sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}
.navbar-light .navbar-nav > li.menu-item-has-children:hover > .sub-menu,
.navbar-light .navbar-nav > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.navbar-light .navbar-nav .sub-menu .nav-link {
    padding: 8px 18px;
    font-size: 15px;
    line-height: 22px;
    white-space: nowrap;
}
.navbar-light .navbar-nav .sub-menu .nav-link br {
    display: none;
}
.navbar-light .navbar-nav .sub-menu > li {
    position: relative;
}
.navbar-light .navbar-nav .sub-menu .menu-item-has-children > .nav-link {
    padding-right: 28px;
    position: relative;
}
.navbar-light .navbar-nav .sub-menu .menu-item-has-children > .nav-link::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #fff;
    border-top: 1.5px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}
.navbar-light .navbar-nav .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin: 0 0 0 8px;
    transform: none;
    text-align: left;
    z-index: 131;
}
.navbar-light .navbar-nav .sub-menu .sub-menu::before {
    left: -8px;
    right: auto;
    top: 0;
    width: 8px;
    height: 100%;
}
.navbar-light .navbar-nav .sub-menu > li.menu-item-has-children:hover > .sub-menu,
.navbar-light .navbar-nav .sub-menu > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 16px;
    z-index: 131;
    flex-shrink: 0;
}
.header-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.header-search-toggle svg {
    display: block;
    width: 20px;
    height: 21px;
}
.header-search-form {
    position: absolute;
    right: 0;
    top: 172%;
    width: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-50%);
    transition: width 0.3s ease, opacity 0.3s ease;
}
.header-search.is-open .header-search-form {
    width: 280px;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    padding-right: 48px;
}
.header-search-input {
    width: 100%;
    height: 44px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 22px;
    background: rgba(4, 27, 44, 0.85);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 22px;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
	border-radius: 20px !important;
}
.header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.header-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 48px;
    max-height: 280px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(14, 26, 47, 0.12);
    z-index: 132;
}
.header-search-results.is-open {
    display: block;
}
.header-search-item {
    display: block;
    width: 100%;
    padding: 12px 18px;
    border: 0;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #0e1a2f;
    text-align: left;
    cursor: pointer;
}
.header-search-item.is-hidden {
    display: none;
}
.header-search-item:hover,
.header-search-item.is-active {
    background: rgba(6, 246, 243, 0.12);
    color: #05abaa;
}
.header-search-empty {
    display: none;
    padding: 12px 18px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #6b7280;
    text-align: left;
}
.header-search-empty.is-visible {
    display: block;
}

@media (max-width: 1199px) {
    .navbar-brand {
        order: 1;
    }
    .header-search {
        order: 2;
        margin-left: auto;
        margin-right: 12px;
        position: static;
    }
    .navbar-light .navbar-toggler {
        position: relative;
        z-index: 130;
        order: 3;
    }
    .navbar-light .navbar-nav {
        overflow-y: auto;
        overflow-x: hidden;
        align-items: stretch;
        order: 4;
    }
    .navbar-light .navbar-nav > li {
        width: 100%;
    }
    .navbar-light .navbar-nav > li > .nav-link {
        text-align: left;
    }
    .navbar-light .navbar-nav li.menu-item-has-children {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        column-gap: 12px;
        max-width: none;
        width: 100%;
    }
    .navbar-light .navbar-nav li.menu-item-has-children > .nav-link {
        grid-column: 1;
        padding-right: 8px;
    }
    .navbar-light .navbar-nav .sub-menu .menu-item-has-children > .nav-link::after {
        display: none;
    }
    .navbar-light .navbar-nav .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 2;
        width: 36px;
        height: 36px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #fff;
        flex-shrink: 0;
        position: relative;
    }
    .navbar-light .navbar-nav .submenu-toggle::before,
    .navbar-light .navbar-nav .submenu-toggle::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #fff;
        transform: translate(-50%, -50%);
        transition: 0.25s linear;
    }
    .navbar-light .navbar-nav .submenu-toggle::before {
        width: 14px;
        height: 2px;
    }
    .navbar-light .navbar-nav .submenu-toggle::after {
        width: 2px;
        height: 14px;
    }
    .navbar-light .navbar-nav li.menu-item-has-children.open > .submenu-toggle::after {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 0;
    }
    .navbar-light .navbar-nav .sub-menu,
    .navbar-light .navbar-nav li.menu-item-has-children:hover > .sub-menu,
    .navbar-light .navbar-nav li.menu-item-has-children:focus-within > .sub-menu {
        display: block;
        position: static;
        left: auto;
        top: auto;
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        max-height: 0;
        margin: 0;
        padding: 0 0 0 16px;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.28);
        border: 0;
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        text-align: left;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }
    .navbar-light .navbar-nav .sub-menu::before {
        display: none;
    }
    .navbar-light .navbar-nav li.menu-item-has-children.open > .sub-menu,
    .navbar-light .navbar-nav li.menu-item-has-children.open:hover > .sub-menu,
    .navbar-light .navbar-nav li.menu-item-has-children.open:focus-within > .sub-menu {
        max-height: 1200px;
        padding: 10px 16px 10px 16px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        overflow: visible;
    }
    .navbar-light .navbar-nav .sub-menu .sub-menu {
        margin-top: 8px;
        background: rgba(0, 0, 0, 0.18);
    }
    .navbar-light .navbar-nav .sub-menu .nav-link {
        padding: 8px 0;
        font-size: 14px;
        line-height: 22px;
        white-space: normal;
        text-align: left;
        opacity: 0.85;
    }
    .navbar-light .navbar-nav .sub-menu .nav-link:hover,
    .navbar-light .navbar-nav .sub-menu .nav-link.active {
        opacity: 1;
    }
    .header-search.is-open .header-search-form {
        position: absolute;
        top: calc(100% + 10px);
        left: 15px;
        right: 15px;
        width: auto;
        transform: none;
        padding-right: 0;
        overflow: visible;
    }
    .header-search-results {
        right: 0;
    }
}


/* **** toggler **** */
.navbar-light .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;padding: 0;display: none;}
.navbar-light .navbar-toggler:focus {box-shadow: none;outline: none; }
.navbar-light .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active, .navbar-toggler:focus { outline: none; }
.navbar-light .navbar-toggler-icon {width: 24px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid #fff;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {width: 24px;position: absolute;height: 2px;background-color: #fff;top: 0;right: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after {top: 8px;width: 24px;}
.add-fix .navbar-toggler-icon:after {transform: rotate(45deg);}
.add-fix .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
.add-fix .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */
/* **** End Header **** */

/* **** Hero **** */
.hero-wrp {
    /* padding: 340px 0 127px; */
    padding: 220px 0 100px;
	padding:280px 0 50px;
    text-align: center;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-wrp .lottie-block{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
	mix-blend-mode: overlay;
    top: 0;
	z-index: 1;
}
.hero-wrp .lottie-block #lottie{
	width: 100%;
    top: -25%;
    position: relative;
	left:-5%;
}
.hero-wrp .lottie-block svg{
    height: 100%;
    width: 100%;
}
.main-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    mix-blend-mode: color-dodge;
}
.main-bg .bg-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero-wrp .hero-detail{
    position: relative;
    z-index: 5;
}
.hero-wrp .hero-detail h1 {
    font-weight: 500;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 10px;
}
.hero-wrp .hero-detail h2{
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #06f6f3;
    margin: 0 0 135px;
}
.hero-wrp .hero-detail p {
    max-width: 652px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin: 0 auto;
}
/* **** End Hero **** */

/* **** solutions **** */
.inner-back{
    -webkit-background: radial-gradient(75.35% 435.17% at 4.53% 34.63%, #000000 0%, #244cbe 100%);
    background: radial-gradient(75.35% 435.17% at 4.53% 34.63%, #000000 0%, #244cbe 100%);
}
.solutions-wrp {
    padding: 100px 0; 
position: relative;
    z-index: 1;	
}
.solutions-wrp .container {
    max-width: 1023px;
}
.solutions-wrp .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px;
}
.solutions-wrp .solution-box {
    position: relative;
    border: 1px solid #00c0be;
    border-radius: 20px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.solutions-wrp .solution-box .box-img {
    width: 100%;
    border-radius: 20px;
}
.solutions-wrp .solution-box .box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.solutions-wrp .solution-box .box-detail {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 16px;
    height: 269px;
    border-radius: 20px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.solutions-wrp .solution-box:hover .box-detail {
    height: 100%;
    background: #0D192D;
}
.solutions-wrp .sboxnt:nth-child(3) .solution-box:hover .box-detail {
background: #0E1A2F;
background-blend-mode: multiply;
}

.solutions-wrp .solution-box:hover .box-detail .description {
    background-color: transparent;
}
.solutions-wrp .solution-box:hover .box-detail .description p {
    opacity: 1;
}
.solutions-wrp .solution-box .box-detail .description {
    background: rgb(12, 24, 43, 0.8);
    border-radius: 20px;
    padding: 20px 15px 20px 28px;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    position: relative;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.solutions-wrp .solution-box .box-detail .description h3 {
    font-family: "Alyamama", serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #ffffff;
    height: 121px;
    position: absolute;
    left: 0;
    right: 0;
    top: 55px;
    padding: 0 15px 0 28px;
}
.solutions-wrp .solution-box .box-detail .description p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin: 0 0 38px;
    opacity: 0;
    -webkit-transition: opacity 0.3s linear 0.3s;
    transition: opacity 0.3s linear 0.3s;
}
.solutions-wrp .solution-box .box-detail .description a {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #00c0be;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* **** End solutions **** */

/* **** Technologies **** */
.technologies-wrp {
    padding: 0px 0 185px;
}
.technologies-wrp .container {
    max-width: 1370px;
	max-width:1023px;
}
.technologies-wrp .technologies-block {
    background: #000000;
    border: 1px solid #00c5c0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 491px;
    padding: 50px;
    position: relative;
}
.technologies-wrp .technologies-block::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    /*-webkit-background: radial-gradient(75.35% 435.17% at 4.53% 34.63%, #000000 0%, #244cbe 100%);
    background: radial-gradient(79.38% 435.17% at 4.53% 34.63%, #000000 0%, #244cbe 100%);*/
	background: radial-gradient(436.32% 85.47% at 4.53% 34.63%, #000 0%, #244CBE 100%);
    mix-blend-mode: overlay;
    border-radius: 20px;
    z-index: 5;
}
.technologies-wrp .technologies-block::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 17%;
    width: 78%;
    /*-webkit-background: radial-gradient(75.35% 435.17% at 4.53% 34.63%, #000000 0%, #244cbe 100%);
    background: radial-gradient(79.38% 435.17% at 4.53% 34.63%, #000000 0%, #244cbe 100%);*/
	border-radius: 20px;
	background: linear-gradient(105deg, #000 13.57%, rgba(36, 76, 190, 0.00) 80.11%);
	mix-blend-mode: overlay;
    border-radius: 20px;
    z-index: 6;
}
.technologies-wrp .technologies-block .bg-video {
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    bottom: 0;
    border-radius: 0 20px 20px 0;
    width: 76%;
    object-fit: cover;
}
.technologies-wrp .technologies-block .technologies-detail {
    position: relative;
    z-index: 9;
    border-radius: 20px;
    padding: 45px;
	position:relative;
	background: rgba(12, 24, 43, 0.84); 
}
/*.technologies-wrp .technologies-block .technologies-detail:before{
	content:'';
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	mix-blend-mode:multiply;
	background: rgba(12, 24, 43, 0.84); 
}*/
.technologies-wrp .technologies-block h2 {
    font-family: "Alyamama", serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 51px;
    color: #ffffff;
    margin: 0 0 30px;
}
.technologies-wrp .technologies-block p {
    max-width: 394px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin: 0 0 25px;
}
.technologies-wrp .technologies-block a {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #00c5c0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.technologies-wrp .technologies-block a:hover {
    /*text-decoration: underline;*/
}
/* **** End Technologies **** */

/* **** Connect Team **** */
.connect-team-wrp {
    padding: 212px 0 375px;
    -webkit-background: radial-gradient(75.35% 435.17% at 4.53% 34.63%, #000000 0%, #244cbe 100%);
    background: radial-gradient(75.35% 435.17% at 4.53% 34.63%, #000000 0%, #244cbe 100%);
    position: relative;
	overflow: hidden;
}
.connect-team-wrp .team-vector {
    position: absolute;
    top: 63%;
    left: 37%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    max-width: 100%;
    pointer-events: none;
	mix-blend-mode: color-dodge;
}
.connect-team-wrp .team-detail {
    max-width: 750px;
    margin-left: auto;
}
.connect-team-wrp .team-detail h2 {
    font-family: "Alyamama", serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 43px;
    color: #ffffff;
    margin: 0 0 20px;
}
.connect-team-wrp .team-detail p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    max-width: 394px;
    margin: 0 0 24px;
}
.connect-team-wrp .team-detail ul {
    margin: 0 0 50px;
}
.connect-team-wrp .team-detail ul li {
    margin: 0 0 10px;
}
.connect-team-wrp .team-detail ul li:last-child {
    margin: 0;
}
.connect-team-wrp .team-detail ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}
.connect-team-wrp .team-detail ul li a span {
    width: 20px;
}
/* **** End Connect Team **** */

.btn-primary {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    background: #00c5c0;
    border: 1px solid #00c5c0;
    border-radius: 20px;
    display: table;
    padding: 15px 43.29px;
}
.btn-primary:hover {
    background-color: #d9d9d9;
    color: #0e1a2f;
}

/* **** Footer **** */
footer {
    padding: 120px 0 95px;
}
footer .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
footer .footer-logo a {
    margin: 0 0 33px;
    display: table;
}
footer .footer-logo a img {
    max-width: 100%;
}
footer .footer-logo p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #0e1a2f;
    margin: 0;
    max-width: 351px;
}
footer .quicklinks h3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00c5c0;
    margin: 0 0 15px;
}
footer .quicklinks ul li {
    margin: 0 0 13px;
}
footer .quicklinks ul li a,footer .quicklinks ul li {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #0e1a2f;
}
footer .quicklinks ul li a:hover {
    color: #00c5c0;
}
footer .quicklinks .social-icons {
    display: flex;
    align-items: center;
    gap: 28px;
	margin-top: 15px;
}
footer .copyright {
    margin: 80px 0 0;
    padding: 10px 0 0;
    border-top: 1px solid #0e1a2f;
}
footer .copyright .row {
    grid-template-columns: repeat(2, 1fr);
}
footer .copyright p {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #0e1a2f;
    margin: 0;
}
footer .copyright .copylinks ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 45px;
}
footer .copyright .copylinks a {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #0e1a2f;
}
footer .copyright .copylinks a:hover {
    color: #00c5c0;
}
/* **** End Footer **** */

/* **** About **** */
.about-banner-wrp {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 105px 0 0;
    overflow: hidden;
}
.catrgory-banner-heart{
    position: absolute;
    left: 50%;
    top: 60%;
    /*max-width: 150px;*/
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    mix-blend-mode: overlay;
    pointer-events: none;
}
.page-template-template-common-page-php .about-banner-wrp .about-man{z-index:1;}
.page-template-template-common-page-php .about-banner-wrp .main-bg{mix-blend-mode: inherit;}
.single-products .catrgory-banner-heart{mix-blend-mode: hard-light; z-index: 1;}
.single-products .main-bg{mix-blend-mode:normal;}
.tax-product_category .main-bg{mix-blend-mode:normal;}
.about-banner-wrp .about-man{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.about-banner-wrp h1,.single-products .about-banner-wrp p,.tax-product_category .about-banner-wrp p{
    font-weight: 500;
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #ffffff;
    position: relative;
    z-index: 5;
}
.about-wrp {
    padding: 80px 0;
}
.about-wrp h2,h2.partnertitle{
    font-family: "Baskervville", serif;
    font-weight: 600;
    font-size: 45px;
	font-size:40px;
    line-height: 58px;
    letter-spacing: 0.05em;
    color: #00c0be;
    margin: 0 0 75px;
}
h2.partnertitle{ text-align:center; margin:0 0 20px;}
.about-wrp .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.about-wrp .row .col-md-8 {
    width: 64%;
    padding: 0 15px;
}
.about-wrp .row .col-md-4 {
    width: 36%;
    padding: 0 15px;
}
.about-wrp .about-detail p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #0e1a2f;
    margin: 0 0 30px;
	font-size: 16px;
    line-height: 25px;
}
.about-wrp .about-detail p b {
    font-weight: 600;
}
.about-wrp .about-image img {
    max-width: 100%;
}

.clinical-team-wrp {
    position: relative;
    padding: 121px 0;
    text-align: center;
}
.clinical-team-wrp h2 {
    font-family: "Baskervville", serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 39px;
    text-align: center;
    color: #ffffff;
    margin: 0 0 20px;
}
.clinical-team-wrp p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
    margin: 0 0 40px;
}
.clinical-team-wrp .btn-primary {
    margin: 0 auto;
	padding:15px 43.29px;
}
/* **** End About **** */

/* **** Category **** */
.category-banner-wrp {
    height: 858px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 128px 0 0;
}
.category-banner-wrp.newcatgorybanner{height:550px; padding:0;}
.category-banner-wrp .category-banner-detail .container {
    max-width: 1270px;
    width: 1270px;
}
.category-banner-wrp .category-banner-detail .row {
    display: flex;
    align-items: center;
}
.category-banner-wrp .category-banner-detail .row .banner-title {
    width: 70%;
}
.category-banner-wrp .category-banner-detail .row .banner-img {
    width: 30%;
}

.category-banner-wrp .category-banner-detail img {
    max-width: 100%;
    mix-blend-mode: overlay;
	mix-blend-mode: hard-light;
}
.category-banner-wrp.newcatgorybanner .category-banner-detail img { max-height: 250px; object-fit: cover;}
.category-banner-wrp.newcatgorybanner .category-banner-detail{margin-top:5%;}
.category-banner-wrp .category-banner-detail h2,.category-banner-wrp .category-banner-detail h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 65px;
    max-width: 669px;
}
.category-banner-wrp .category-banner-detail p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #06f6f3;
    margin: 0;
    max-width: 619px;
}

.circulatory-support-wrp {
    padding: 10px 0 80px;
}
.circulatory-support-wrp .container {
    max-width: 1400px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    margin: 0 0 100px;
}
.breadcrumbs li,
.breadcrumbs li a {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.05em;
    color: #0e1a2f;
}
.breadcrumbs li a::after {
    content: " >>";
    position: relative;
    margin: 0 10px;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.05em;
    color: #0e1a2f;
}
.circulatory-support-wrp .description {
    padding: 0 0 100px;
}
.circulatory-support-wrp .description p {
    max-width: 907px;
    font-weight: 300;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    letter-spacing: 1px;
    color: #0e1a2f;
    margin: 0 auto;
}
.circulatory-support-wrp .titlebar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 150px;
    margin: 0 0 50px;
}
.circulatory-support-wrp .titlebar h2,.circulatory-support-wrp .titlebar h1 {
    font-family: "Baskervville", serif;
    font-weight: 600;
    font-size: 37px;
    line-height: 48px;
    letter-spacing: 0.05em;
    color: #05abaa;
}
.circulatory-support-wrp .titlebar .form-search {
    position: relative;
    width: 412px;
}
.circulatory-support-wrp .titlebar .form-search .form-control {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.05em;
    color: #0e1a2f;
    padding: 16px 24px 16px 50px;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    box-shadow: none;
    outline: none;
    width: 100%;
}
.circulatory-support-wrp .titlebar .form-search .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.circulatory-support-wrp .support-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    row-gap: 75px;
}
.circulatory-support-wrp .support-box .box-img { height: 266px; width: 100%; position: relative; margin: 0 0 20px; border-radius: 20px; overflow: hidden; } 
.circulatory-support-wrp .support-box .box-img::before { position: absolute; content: ""; inset: -6px; border-radius: 20px; border: 1px solid #06f6f3; box-shadow: inset 0px 0px 4px 3px #06f6f3; -webkit-transition: all 0.3s linear; transition: all 0.3s linear; } 
.circulatory-support-wrp .support-box:hover .box-img::before { inset: 0; } 

.circulatory-support-wrp .support-box .box-img img { height: 100%; width: 100%; object-fit: cover; }
.circulatory-support-wrp .support-box .box-detail h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #0e1a2f;
    margin: 0;
}
.circulatory-support-wrp .support-box .box-detail h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.2em;
    text-transform: capitalize;
    color: #0e1a2f;
    margin: 0 0 18px;
}
.circulatory-support-wrp .support-box .box-detail p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #0e1a2f;
    margin: 0;
}
.circulatory-support-wrp .product-group {
    margin: 0 0 60px;
}
.circulatory-support-wrp .product-group:last-child {
    margin-bottom: 0;
}
.circulatory-support-wrp .product-group-title {
    font-family: "Baskervville", serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.05em;
    color: #05abaa;
    margin: 0 0 30px;
    text-align: left;
}
@media (max-width: 767px) {
    .circulatory-support-wrp .product-group {
        margin: 0 0 40px;
    }
    .circulatory-support-wrp .product-group-title {
        font-size: 22px;
        line-height: 28px;
        margin: 0 0 20px;
    }
}
/* **** End Category **** */

.maltron-bioscan-wrp {
    padding: 10px 0 80px;
}
.maltron-bioscan-wrp .container {
    max-width: 1500px;
}
.maltron-bioscan-wrp .row {
    display: flex;
    margin: 0 -15px;
}
.maltron-bioscan-wrp .col-md-8 {
    width: 58.20%;
    padding: 0 15px;
}
.maltron-bioscan-wrp .col-md-4 {
    width: 41.8%;
    padding: 0 15px;
}
.maltron-bioscan-wrp .bioscan-detail h2,.single-products .maltron-bioscan-wrp .bioscan-detail h1 {
    font-family: "Baskervville", serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 58px;
    letter-spacing: 0.05em;
    color: #00c0be;
    margin: 0 0 60px;
}
.maltron-bioscan-wrp .bioscan-detail h6,.single-products .maltron-bioscan-wrp .bioscan-detail h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #0e1a2f;
    margin: 0 0 25px;
	font-family: "Poppins", sans-serif;
	font-size: 26px;
}
.maltron-bioscan-wrp .bioscan-detail p {
    font-weight: 400;
    font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.1px;
    text-transform: capitalize;
    color: #0e1a2f;
    margin: 0 0 40px;
	font-size:16px;
	line-height:25px;
}
.maltron-bioscan-wrp .bioscan-img img{
    max-width: 100%;
    margin-left: auto;
    display: table;
}
.maltron-bioscan-wrp .custom-tabs {
    background: #f5f5f5;
    border: 1px solid #00c5c0;
    border-radius: 20px;
    overflow: hidden;
}
.maltron-bioscan-wrp .custom-tabs .tab-header {
    display: grid;
    border-bottom: 1px solid #00c5c0;
}
.maltron-bioscan-wrp .custom-tabs.oneheader .tab-header {
    display: grid;
    border-bottom: 1px solid #00c5c0;
    grid-template-columns: repeat(1, 1fr);
}
.maltron-bioscan-wrp .custom-tabs.twoheader .tab-header {
	grid-template-columns: repeat(2, 1fr);
}
.maltron-bioscan-wrp .custom-tabs.threeheader .tab-header {
	grid-template-columns: repeat(3, 1fr);
}
.maltron-bioscan-wrp .custom-tabs.fourheader .tab-header {
	grid-template-columns: repeat(4, 1fr);
}
.maltron-bioscan-wrp .custom-tabs.fiveheader .tab-header {
	grid-template-columns: repeat(5, 1fr);
}
.maltron-bioscan-wrp .custom-tabs .tab-header button {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #8f9093;
    padding: 17px;
    border-right: 1px solid #00c5c0;
}
.maltron-bioscan-wrp .custom-tabs .tab-header button:last-child {
    border: none;
}
.maltron-bioscan-wrp .custom-tabs .tab-header button.active,
.maltron-bioscan-wrp .custom-tabs .tab-header button:hover {
    color: #0e1a2f;
    background-color: #ffffff;
}
.maltron-bioscan-wrp .custom-tabs .tab-content {
    padding: 45px 20px;
    display: none;
}
.maltron-bioscan-wrp .custom-tabs .tab-content.active {
    display: block;
}
.maltron-bioscan-wrp .custom-tabs .tab-content ul {
    padding-left: 24px;
}
.maltron-bioscan-wrp .custom-tabs .tab-content ul li,.maltron-bioscan-wrp .custom-tabs .tab-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #0e1a2f;
    list-style: disc;
}
.maltron-bioscan-wrp .custom-tabs .tab-content p{margin:0px;}
.maltron-bioscan-wrp .custom-tabs .tab-content ul li strong {
    font-weight: 600;
}
.maltron-wrp {
    padding: 0 0 64px;
}
.maltron-wrp .container {
    max-width: 1500px;
}
.maltron-wrp .maltron-item {
    padding: 0 0 30px;
    margin: 0 0 50px;
    border-bottom: 1px solid #d9d9d9;
}
.maltron-wrp .maltron-item .maltron-box {
    display: flex;
    align-items: flex-start;
    gap: 75px;
}
.maltron-wrp .maltron-item .maltron-box .box-img {
    width: 430px;
    min-width: 430px;
    background: #ffffff;
    border-radius: 20px;
	-webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
	border: 1px solid transparent;
}
.maltron-wrp .maltron-item .maltron-box .box-img:hover{
	border: 3px solid #06F6F3;
	box-shadow: 0 0 4px 3px #06F6F3 inset;
}
.maltron-wrp .maltron-item .maltron-box .box-img img {
    width: 100%;
    border-radius: 20px;
}
.maltron-wrp .box-detail h3 {
    font-family: "Baskervville", serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 39px;
    letter-spacing: 0.05em;
    color: #00c0be;
    margin: 0 0 30px;
}
.maltron-wrp .box-detail h6 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #0e1a2f;
    margin: 0 0 20px;
}
.maltron-wrp .box-detail h5 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #0e1a2f;
    margin: 0 0 15px;
}
.maltron-wrp .box-detail p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #0e1a2f;
    margin: 0 0 30px;
}
.maltron-wrp .box-detail ul {
    padding-left: 24px;
    margin: 0 0 30px;
}
.maltron-wrp .box-detail ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #0e1a2f;
    list-style: disc;
}
.maltron-wrp .box-detail .btn-secondary {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #0e1a2f;
    border: 1px solid #00c5c0;
    border-radius: 20px;
    padding: 6px 20.13px;
    width: fit-content;
	-webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.collapse-content.active {
    max-height: 1000px;
}
.maltron-wrp .box-detail .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
	margin-top: 20px;
}
.maltron-wrp .box-detail .btn-secondary svg {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.maltron-wrp .box-detail .btn-secondary:hover{
	background: #00C5C0;
	border: 1px solid #00C5C0;
	color:white;
}
.maltron-wrp .box-detail .btn-secondary:hover svg path {
fill: #ffffff;
}
.maltron-wrp .box-detail .btn-secondary.active svg {
    transform: rotate(180deg);
}
.maltron-wrp .btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
}
.maltron-wrp .btn-group .btn-secondary {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #000000;
    padding: 5px 15px;
    background: #ffffff;
    border: 1px solid #00c5c0;
    border-radius: 20px;
}
.maltron-wrp .btn-group .btn-secondary:hover {
    background-color: #00c5c0;
    color: #fff;
}
.maltron-wrp .btn-group .btn-primary {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #fff;
    padding: 5px 15px;
    border: 1px solid #00c5c0;
    border-radius: 20px;
}
.maltron-wrp .btn-group .btn-primary:hover {
    color: #000;
}

/* **** sponsor **** */
.sponsor-wrp{
    padding: 24.5px 0;
    background-color: #FBF8F8;
}
.sponsor-wrp .sponsor-slider{
    width:100%;
}
.sponsor-wrp .sponsor-slider .swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
    height:120px;
    width: fit-content;
}
.sponsor-wrp .sponsor-slider .swiper-slide img{
    max-width: 120px;
    height:120px;
    max-height: 100%;
    object-fit:contain;
    transition:.3s;
}
/* **** End sponsor **** */



.fade{
  opacity:0;
  transition:opacity .6s ease;
}

.fade.show{
  opacity:1;
}