/***********************
* Common
***********************/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: none;
    font-style: normal;
    position: relative;
    background-color: #F7FCFB !important;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none !important;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   z-index: 1;
   font-family: "Nokora", sans-serif;
}
h1 {
    font-size: 55px;
    font-weight: 600 ;
    margin-bottom: 35px;
}
h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 600 ;
    margin-bottom: 24px;
}
h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}
h5 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 16px;
}
h6 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 16px;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-24 {
    --bs-gutter-y: 24px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
ul,ol{
    padding: 0;
    margin: 0;
    list-style: none;
}
#primary{
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.Primary-btn {
    padding: 10px 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-size: 18px;
    line-height: 25px;
    background: linear-gradient(95.48deg, #10ADAD 6.14%, #257FD3 99.43%);
    color: #fff;
    background-size: 300px 300px;
    background-position: left;
}
.Primary-btn:hover {
    background-position: right;
    color: #fff;
}
/*************************
* Header start
*************************/
header.main-header {
    position: absolute;
    z-index: 99999;
    width: 100%;
    top: 0;
    padding-top: 20px;
}
.main-menu {
    padding: 0 30px;
    background-color: #fff;
    border-radius: 70px;
}
.main-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, rgba(64, 13, 62, 0) 4.92%, #101010 95.27%);
    z-index: -1;
}
.sticky-header--cloned.sticky-fixed.main-header::after{
    display: none;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.topbar-one-social-media {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
ul.topbar-one-social-media li a {
    height: 24px;
    width: 24px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#000;
}
ul.topbar-left {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
ul.topbar-left li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
ul.topbar-left li a {
    color: #fff;
}
.main-menu-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    max-width: 170px;
}
.menu-nav {
    margin-left: auto;
    margin-right: 40px;
}
.main-menu-right {
    text-align: end;
}
.main-menu ul.main-menu-nav {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.main-menu ul.main-menu-nav>li>a {
    color: #000;
        font-size: 18px;
}
.main-menu ul.main-menu-nav>li.current-menu-item>a, .main-menu ul.main-menu-nav>li:hover>a {
    color: #00A8A8;
}
.topbar {
    padding-top: 15px;
}
.main-menu ul.main-menu-nav>li {
    padding: 25px 20px;
    position: relative;
}
.main-menu ul.main-menu-nav>li::after {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 50%;
    border-radius: 4px;
    height: 2px;
    transition: all 0.5s;
    transform: translateX(-50%);
    width: 0;
    background: linear-gradient(95.48deg, #10ADAD 6.14%, #257FD3 99.43%);
}
.main-menu ul.main-menu-nav>li:hover::after {
    width: 100%;
}
.main-menu ul.main-menu-nav>li.current-menu-item::after {
    width: 100%;
}
.sticky-header--cloned.sticky-fixed {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s;
    visibility: visible;
        padding-top: 5px;
}
.sticky-fixed {
    position: fixed  !important;
    transform: translateY(0);
    z-index: 999;
    transition: all 1.5s;
}
.sticky-header--cloned {
    position: fixed !important;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
}
.sticky-header--cloned.sticky-fixed .main-menu{
    box-shadow: 0 7px 50px 0 rgba(0, 0, 0, .1);
}
.main-menu.sticky-header--cloned.sticky-fixed .main-menu-inner {
    max-width: 1320px;
    margin: auto;
}
.main-menu.sticky-header--cloned.sticky-fixed .logo {
    margin-top: 0;
    padding: 10px;
    max-width: 190px;
}
.main-menu.sticky-header--cloned.sticky-fixed ul.main-menu-nav>li {
    padding: 37px 0;
}
.main-menu.sticky-header--cloned.sticky-fixed ul.main-menu-nav>li::after {
    bottom: 34px;
}
.main-menu ul.main-menu-nav>li ul {
    position: absolute;
    width: 250px;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    background-color: #fff;
    z-index: 999;
    padding: 0;
    border-radius: 8px;
    margin: 0;
}
.main-menu ul.main-menu-nav>li:hover ul{
     opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}
.main-menu ul.main-menu-nav>li ul li {
    padding: 10px 16px;
    border-bottom: 1px solid #a11d9e75;
    transition: all 0.5s;
    position: relative;
}
.main-menu ul.main-menu-nav>li ul li:last-child {
    border-bottom: 0;
}
.main-menu ul.main-menu-nav>li ul li a {
    color: #000;
}
.main-menu ul.main-menu-nav>li ul li:hover {
    padding-left: 30px;
}
.main-menu ul.main-menu-nav>li ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    height: 2px;
    width: 0;
    transition: all 0.5s;
    background-color: #a11d9e;
    transform: translateY(-50%);
}
.main-menu ul.main-menu-nav>li ul li:hover::after {
    width: 15px;
}
.main-menu ul.main-menu-nav>li ul li:hover a {
    color: #a11d9e;
}
/*************************
* hero start
*************************/
.hero-section {
    padding: 200px 0 100px;
    position: relative;
}
.banner-content {
    padding-right: 50px;
    position: relative;
    z-index: 1;
    color: #fff;
}
.banner-content .tagline {
    font-family: "Marck Script", cursive;
    font-size: 24px;
    margin-bottom: 16px;
    display: inline-block;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.hero-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
.banner-content p {
    margin-bottom: 30px;
}
/*************************
* about start
*************************/
.about-section {padding: 100px 0;
    overflow: hidden;
}
.sub-heading {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #00A8A8;
    font-family: 'Marck Script';
    font-size: 22px;
}
.about-left  .lead-font {
    padding-left: 15px;
    font-size: 20px;
    border-left: 2px solid #00A8A8;
    margin-bottom: 20px;
    color: #000;
}
.about-left  p {
    margin-bottom: 24px;
}
.about-left {
    padding-right: 30px;
}
.about-right {
    position: relative;
    margin-left: 100px;
}
.about-image {
    border-radius: 20px;
    overflow: hidden;
}
.about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.about-image:hover img {
    transform: scale(1.1);
}
.about-retting {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 0 20px 0 20px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
ul.about-retting-image {
    display: flex;
    padding-left: 12px;
}
ul.about-retting-image img {
    border: 4px solid #fff;
    border-radius: 100%;
}
ul.about-retting-image li {
    margin-left: -12px;
}
.about-retting-star ul {
    display: flex;
    align-items: center;
    column-gap: 3px;
}
.about-retting-star ul li {
    color: #F1C644;
}
.about-retting-star ul li:last-child {
    color: #324047a3;
}
.about-retting-star p {
    margin-bottom: 0;
}
.about-wrapp {
    position: absolute;
    top: 40%;
    right: -10%;
}
.discount-wrapp {
    position: relative;
    background-color: #00A8A8;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    z-index: 2;
}
.discount-wrapp .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 106px;
    height: 106px;
    line-height: 106px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
}
.discount-wrapp .logo {
    padding: 16px;
    line-height: 74px;
}
.discount-tag {
    display: inline-block;
    min-height: 170px;
    min-width: 170px;
    border-radius: 50%;
    z-index: 1;
    font-size: 14px;
    font-family: var(--title-font);
    font-weight: 500;
    color: var(--title-color);
    text-align: center;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    animation: spin 10s infinite alternate-reverse;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*************************
* about start
*************************/
.value-section {
    padding-top: 100px;
    background-position: top center;
    background-size: cover;
    position: relative;
}
.value-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(90deg, #054749 0%, #35868880 100%);
}
.value-section .heading-box {
    color: #ffff;
    width: 50%;
    position: relative;
}
.heading-box {
    margin-bottom: 30px;
}
.heading-box h2 {
    margin-bottom: 15px;
}
.value-section .heading-box .sub-heading {
    color: #fff;
}
.value-box {
    border-radius: 20px;
    padding: 30px 24px;
    background-color: #fff;
    transition: all 0.5s;
    text-align: center;
        box-shadow: 0px 10px 50px 20px #384d751c;
}
.value-box:hover {
    transform: translateY(-10px);
}
.value-box h4 {
    margin-bottom: 20px;
    color: #00A8A8;
}
.value-box .icon {
    height: 60px;
    width: 60px;
    margin: auto;
    margin-bottom: 24px;
    border-radius: 100%;
    background-color: #00A8A8;
        display: flex;
    align-items: center;
    justify-content: center;
}
.value-box .icon img {
    filter: brightness(50) invert(1);
    transition: all 0.5s;
}
.value-box:hover .icon img {
    transform: scaleX(-1);
}
.value-lower {
    transform: translateY(100px);
        margin-top: -100px;
}
.value-box p {
    margin-bottom: 0;
}
/*************************
* service start
*************************/
.services-section {
    padding: 200px 0 100px;
    overflow: hidden;
}
.service-box-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px;
}
.service-box {
    padding: 15px;
    border-radius: 10px;
    background-color: #b6e6e6;
    display: flex;
    column-gap: 10px;
    transition: all 0.5s;
}
.service-box h4 a {
    color: #000;
}
.service-box:hover h4 a{
    color: #fff;
}
.service-box .icon {
    flex-shrink: 0;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-box .icon img {
    height: 35px;
    width: 35px;
}
.service-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}
.service-box p {
    margin-bottom: 0;
    font-size: 14px;
}
.service-left {
    padding-right: 50px;
}
.service-right {
    position: relative;
    height: 100%;
}
.service-right .service-image {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
        box-shadow: 0px 10px 24px 20px #384d751c;
}
.service-right .service-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.service-right .service-image:hover img {
    transform: scale(1.1);
}
.service-counter {
    position: absolute;
    top: -60px;
    left: -70px;
    z-index: 1;
    height: 200px;
    width: 200px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 50px;
        box-shadow: 0px 10px 24px 20px #384d751c;
}

.service-counter p {
    display: flex;
    align-items: center;
}
.service-counter p:first-child {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 60px;
    height: 60px;
    color: #15afaf;
}
/*************************
* service start
*************************/
.heading-box.center {
    text-align: center;
}
.heading-box.center .sub-heading {
    justify-content: center;
}
.product-main-tab {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: center;
    background-color: #fff;
    border-radius: 30px;
    width: fit-content;
    margin: auto;
    margin-bottom: 20px;
    padding: 10px 20px;
    box-shadow: 0px 0px 36px 16px #384d7517;
        flex-wrap: wrap;
    row-gap: 10px;
}
.product-main-tab p {
    margin-bottom: 0;
    font-size: 16px;
    padding: 6px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s;
}
.product-main-tab p.active, .product-main-tab p:hover {
    background-color: #00a8a8;
    color: #fff;
}
.product-inner-tab {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: center;
    background-color: #fff;
    border-radius: 30px;
    width: fit-content;
    margin: auto;
    margin-bottom: 20px;
    padding: 10px 20px;
    box-shadow: 0px 0px 36px 16px #384d7517;
    flex-wrap: wrap;
    row-gap: 10px;
}
 .product-inner-tab p {
    margin-bottom: 0;
    font-size: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s;
    text-transform: capitalize;
}
.product-inner-tab p.active, .product-inner-tab p:hover{
    background-color: #00a8a8;
    color: #fff;
}
.product-tab-content {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}
.product-box {
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
        box-shadow: 0px 0px 36px 16px #384d7517;
}
.product-box .product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.product-box:hover .product-image img {
    transform: scale(1.1);
}
.product-box .product-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
        z-index: 1;
}
.product-box .product-title h4 {
    font-size: 20px;
    margin-bottom: 20px;
}
.product-box .product-title p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
}
.product-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40%;
    width: 100%;
    background: linear-gradient(180deg, rgb(9 34 105 / 0%) 0%, #000b2b 100%);
    transition: all 0.5s;
}
.product-box:hover::after {
    height: 100%;
}
.product-box .product-title h4  {
    color: #fff;
}
.product-section {
    padding: 160px 0 100px;
    overflow: hidden;
}
.product-box:hover .product-title-inner {
    margin-bottom: 0 !important;
}
.product-title-inner {
    transition: all 0.5s;
}
.whychoose-section {
    padding: 100px 0;
    background-position: center;
    background-size: cover;
    position: relative;
}
.whychoose-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(90deg, #054749 0%, #35868880 100%);
}
.why-choose-left {
    position: relative;
    z-index: 1;
    padding-right: 50px;
}
.why-choose-left .heading-box {
    color: #fff;
}
.why-choose-left .sub-heading {
    color: #fff;
}
.whychhose-box-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 24px;
    margin-top: 50px;
}
.whychhose-box {
    display: flex;
    column-gap: 10px;
}
.whychhose-box .icon {
    flex-shrink: 0;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background-color: #00A8A8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whychhose-box .whychhose-title {
    color: #fff;
}
.whychhose-box .whychhose-title h4 {
    margin-bottom: 10px;
    font-size: 20px;
}
.whychoose-right {
    position: sticky;
    top: 51vh;
}
.whychoose-right img {
    /*position: absolute;*/
    /*top: -30px;*/
}
.counter-outer {
    padding: 15px 30px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    margin-bottom: -70px;
}
.why-container-box {
    text-align: center;
}
.why-container-box p:last-child {
    margin-bottom: 0;
}
.why-container-box p span {
    color: #00A8A8;
    font-size: 40px;
    display: inline-block;
}
.why-container-box p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.promises-section {
    padding: 100px 0;
    overflow: hidden;
}
.promises-box {
    text-align: center;
    background-color: hsl(180deg 100% 40% / 10%);
    height: 100%;
    border-radius: 20px;
    padding: 24px 30px;
    transition: all 0.5s;
    box-shadow: 0px 0px 36px 16px transparent;
}
.promises-box .icon {
    height: 60px;
    width: 60px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 100%;
    background-color: #00A8A8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.promises-box p {
    margin-bottom: 0;
    transition: all 0.5s;
}
.promises-box h4 {
    transition: all 0.5s;
    margin-bottom: 15px;
}
.promises-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 36px 16px #0000001c;
    background-color: #00A8A8;
}
.promises-box:hover .icon img {
    transform: scaleX(-1);
    filter: brightness(0);
}
.promises-box .icon img {
    transition: all 0.5s;
}
.promises-box:hover .icon {
    background-color: #fff;
}
.promises-box:hover h4, .promises-box:hover p {
    color: #fff;
}

.testimonial-lower {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.testimonial-lower h4, .testimonial-lower p {
    margin-bottom: 0;
}
.testemian-custom-btn {
    display: flex;
    column-gap: 5px;
    padding: 5px;
    margin: auto;
    width: fit-content;
    border-radius: 50px;
    border: 1px solid #00CECE;
}
.testemian-custom-btn button.slick-arrow {
    height: 52px;
    width: 52px;
    padding: 0;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    box-shadow: none;
        transition: all 0.5s;
}
.testemian-custom-btn button.slick-arrow:hover {
    background-color: #00A8A8;
}
.testemian-custom-btn button.active svg path, .testemian-custom-btn button:hover svg path {
    fill: #fff;
}
.testemian-custom-btn button svg path {
    fill: #00A8A8;
    transition: all 0.5s;
}
.testemian-custom-btn button.slick-arrow.active, .testemian-custom-btn button.slick-arrow:hover {
    background-color: #00A8A8;
}
.testimonial-box {
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    margin: 0 15px;
}
.testimonial-box>p {
    font-size: 16px;
    margin-bottom: 24px;
}
.testimonial-lower .testimonial-image {
    height: 55px;
    width: 55px;
        border-radius: 100%;
    overflow: hidden;
}
.testimonial-slider {
    margin-bottom: 24px;
}
.cta-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    margin: 0 30px;
    border-radius: 30px;
    overflow: hidden;
}
.cta-content {
    padding-right: 60px;
}
.cta-content p {
    margin-bottom: 30px;
}
.testimonial-section {
    padding-bottom: 100px;
}
.cta-right {
    padding-left: 0;
    border-radius: 20px;
    overflow: hidden;
}
.cta-right li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    font-size: 18px;
}
.cta-right li::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point-icon.svg);
    background-size: 20px;
}
.blog-section {
    padding: 100px 0;
    overflow: hidden;
}
.blog-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.blog-details {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
    display: flex;
    align-items: center;
    column-gap: 50px;
    z-index: 1;
}
.blog-details h4 {
    margin-bottom: 0;
}
.blog-details h4 a {
    color: #fff;
}
.blog-details>a {
    height: 52px;
    width: 52px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: all 0.5s;
    background-color: #00A8A8;
    flex-shrink: 0;
}
.blog-box:hover .blog-details>a {
    transform: rotate(0deg);
}
.blog-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #121212 94.71%);
}
.blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.blog-box:hover .blog-image img {
    transform: scale(1.1);
}
footer {
    margin: 0 30px 30px 30px;
    border-radius: 20px;
    background-color: hsl(180deg 100% 40% / 10%);
    padding-top: 50px;
    overflow: hidden;
}
.footer-logo {
    margin-bottom: 20px;
    max-width: 300px;
}
.footer-about p {
    margin-bottom: 20px;
}
.contact {
    max-width: 290px;
}
.contact ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 15px;
}
.contact ul li span {
    flex-shrink: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00A8A8;
    border-radius: 100%;
}
.contact ul li a {
    color: #000;
}
.footer-about {
    padding-right: 30px;
}
.footer-link {
    display: flex;
    column-gap: 30px;
    justify-content: space-between;
        padding-left: 20px;
}
.footer-widget.menu {
    width: 200px;
    flex-shrink: 0;
}
.footer-link h3 {
    font-size: 22px;
}
.footer-link ul li a {
    color: #000;
    transition: all 0.5s;
}
.footer-link ul li {
    margin-bottom: 10px;
}
.footer-link ul li:hover a {
    color: #10adad;
}
.footer-lower {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #00A8A8;
    margin-top: 10px;
}
.footer-lower p {
    margin-bottom: 0;
}
.footer-lower p a {
    color: #000;
}
ul.social-media {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
ul.social-media li a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    background-color: #00A8A8;
    transition: all 0.5s;
}
ul.social-media li a:hover {
    color: #00A8A8;
    background-color: #fff;
}
.inqury-section {
    margin: 100px 0;
    position: relative;
}
.inqury-form-box {
    width: 50%;
    transform: translateY(100px);
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 36px 16px #384d7517;
}
.inqury-form .from-group p ,.contact-form-inner .from-group p{
    display: flex;
    column-gap: 24px;
    margin-bottom: 24px;
}
.inqury-form .from-group p textarea, .contact-form-inner .from-group p textarea {
    height: 150px !important;
}
.inqury-form .from-group p .form-control, .contact-form-inner .from-group p .form-control{
    height: auto;
    background-color: #00a8a85e;
    border: none;
    color: #000 !important;
    border-radius: 24px;
}
.inqury-form .from-group p .form-control::placeholder, .contact-form-inner .from-group p .form-control::placeholder {
    color: #000000a1
    ;
}
.inqury-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(90deg, #054749 0%, #35868880 100%);
}
.inqury-form .Primary-btn , .contact-form-inner .Primary-btn{
    padding: 14px 40px !important;
    border-radius: 12px !important;
    height: auto;
    font-size: 18px !important;
    line-height: 25px !important;
    background: linear-gradient(95.48deg, #10ADAD 6.14%, #257FD3 99.43%) !important;
    color: #fff !important;
    background-size: 300px 300px !important;
    background-position: left;
}
.product-lower {
    margin-top: 35px;
}
.circle-text-wrap-outer {
    position: absolute;
    top: 40px;
    left: -80px;
    width: 160px;
    height: 160px;
}
.circle-text-wrap {
    position: relative;
    width: 160px;
    height: 160px;
}
.circle-logo {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
svg.circle-text-svg {
    width: 100%;
    height: 100%;
    animation: rotateCircle 10s 
linear infinite;
    transform-origin: center center;
    background-color: #00A8A8;
    border-radius: 100%;
}
/* animation */
@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
text.circle-text {
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
}
svg.circle-text-svg textPath {
    fill: #fff;
}
.circle-logo img {
    max-width: 75px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}
.mobile-nav-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
 }
 .mobile-nav-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
 }
 .mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #044c526e;
    opacity: 0.9;
 }
 .mobile-nav-content {
    width: 100%;
    max-width: 320px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
    background-image: url(../img/mb-bg.jpg);
    background-position: center;
    background-size: cover;
	 background-color: #00A8A8;
}
.logo-box {
    max-width: 100%;
    padding: 30px;
    padding-left: 15px;
}
.logo-box img{
   width: 250px;
}
 .mobile-nav-wrapper.expanded .mobile-nav-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
 }
 .mobile-nav-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 42px;
    right: 15px;
 }
 .mobile-nav-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
 }
 .mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
 }
ul.mobile-menu {
    margin: 0;
    padding: 0;
    margin-top: 0px;
    margin-bottom:0px;
 }
ul.mobile-menu li {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
        position: relative;
            transition: all 0.5s;
 }
 ul.mobile-menu li:hover{
    background-color: rgba(33, 33, 33, 0.12);
 }
ul.mobile-menu li:last-child {
    border: none;
 }
 .locked {
    position: fixed;
    width: 100%;
    top: 0;
 }
ul.mobile-menu li a {
    font-size: 16px;
    line-height: 50px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.5s;
    padding: 0 25px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }
ul.mobile-menu .menu-item-has-children ul {
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #d5cdcd;
 }
ul.mobile-menu .menu-item-has-children ul li a {
    padding-left: 35px;
 }
ul.mobile-menu .menu-item-has-children button.expanded {
    transform: translateY(-50%)rotate(90deg);
 }
ul.mobile-menu .menu-item-has-children button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)rotate(-0deg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: none;
    transition: all 0.3s;
    line-height: 0px;
        background-color: #fff !important;
    padding: 0 !important;
    color: #000;
 }
 button.ast-menu-toggle {
    display: none !important;
}
 ul.mobile-menu li svg {
    margin: 0 !important;
    width: 20px !important;
}
.page-header-section {
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
        background-color: #0000006b;
    background-blend-mode: overlay;
}
.custom-breadcrumb {
    display: flex;
    align-items: baseline;
    column-gap: 10px;
    justify-content: center;
}
.page-header-section h1 {
    color: #fff;
    margin-bottom: 15px;
}
.page-header-section .heading-box {
    margin-bottom: 15px;
}
.custom-breadcrumb a, .custom-breadcrumb span {
    color: #fff;
}
.custom-breadcrumb a:hover {
    color: #00A8A8;
}
.about-section.two .about-right {
    position: relative;
    margin-left: 0;
    margin-right: 100px;
}
.circle-text-wrap-outer.two {
    left: auto;
    right: -100px;
}
.about-right, .about-image {
    height: 100%;
}
.whychoose-section.two {
    margin-top: 150px;
    background: none !important;
}
.whychoose-section.two::before {
    display: none;
}
.whychoose-section.two .sub-heading {
    color: #00A8A8;
}
.whychoose-section.two .heading-box {
    color: #000;
}
.whychoose-section.two .whychhose-box .whychhose-title {
    color: #000;
}
.whychoose-section.two .counter-outer {
    padding: 15px 30px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    margin-bottom: -30px;
    box-shadow: 0px 10px 24px 20px #384d751c;
}
.whychoose-section.two .whychoose-right img {
    position: absolute;
    top: -70px;
}
.promises-section.two {
    padding-top: 160px;
}
.cta-section.two {
    margin-bottom: 100px;
}
.contact-info-section {
    padding: 100px 0;
}
.contact-info-box {
    text-align: center;
    background-color: hsl(180deg 100% 40% / 10%);
    height: 100%;
    border-radius: 20px;
    padding: 24px 30px;
    transition: all 0.5s;
    box-shadow: 0px 0px 36px 16px transparent;
}
.contact-info-box .icon {
    height: 60px;
    width: 60px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 100%;
    background-color: #00A8A8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.contact-info-box .icon img {
    height: 35px;
    transition: all 0.5s;
}
.contact-info-box h4, .contact-info-box p, .contact-info-box a {
    transition: all 0.5s;
    margin-bottom: 15px;
    color: #000;
}
.contact-info-box a {
    font-weight: 600;
    font-size: 18px;
    color: #00a6a6;
	    display: block;
    margin-bottom: 0;
}
.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 36px 16px #0000001c;
    background-color: #00A8A8;
}
.contact-info-box:hover h4, .contact-info-box:hover p, .contact-info-box:hover a {
    color: #fff;
}
.contact-info-box:hover .icon img {
    transform: scaleX(-1);
    filter: brightness(0);
}
.contact-info-box:hover .icon {
    background-color: #fff;
}
.contact-form-inner {
    padding: 35px;
    border-radius: 20px;
    background-color: #00cccc1a;
    height: 100%;
}
.contact-form-section {
    padding-bottom: 100px;
}
.contact-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.contact-image {
    border-radius: 20px;
    overflow: hidden;
}
.contact-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.contact-image:hover img {
    transform: scale(1.1);
}
.contact-right ul.social-media {
    padding: 20px;
    border-radius: 12px;
    background-color: #00cccc1a;
    justify-content: center;
}
.product-section.two {
    padding-top: 100px;
}
.blog-page-section {
    padding: 100px 0;
}
.blog-box-two .blog-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}
.blog-box-two .blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.blog-box-two:hover .blog-image img {
    transform: scale(1.1);
}
ul.blog-meta {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #00a8a8;
        flex-wrap: wrap;
    row-gap: 5px;
}
ul.blog-meta li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
ul.blog-meta li p {
    margin-bottom: 0;
}
.blog-box-two h4 {
    font-size: 22px;
}
.blog-box-two h4 a {
    color: #000;
    background-image: linear-gradient(transparent calc(100% - 1px), #00a8a8 0.5px);
    background-repeat: no-repeat;
    background-position-y: -3px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s 
cubic-bezier(.215, .61, .355, 1) underline forwards;
}
.blog-box-two h4 a:hover{
    animation: 1s cubic-bezier(.215,.61,.355,1) underline-hover forwards;
}
@keyframes underline {
    0% {
        background-size: 100% 100%;
        background-position-x: 100%
    }

    100% {
        background-size: 0 100%;
        background-position-x: 100%
    }
}
@keyframes underline-hover {
    0% {
        background-position-x: 0;
        background-size: 0 100%
    }

    100% {
        background-position-x: 0;
        background-size: 100% 100%
    }
}
.blog-sidebar {
    position: sticky;
    top: 130px;
}
.recent-blog-widget {
    background-color: #00cccc1a;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}
.blog-item {
    display: flex;
    column-gap: 15px;
    border-bottom: 1px solid #00a8a8;
    padding: 20px 0;
}
.blog-image-right {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.blog-image-right img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    border-radius: 6px !important;
}
.blog-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.blog-item ul.blog-meta {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.blog-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.recent-blog-widget h4 {
    margin-bottom: 5px;
}
.recent-blog-widget h4 a {
    color: #000;
}
.services-cta {
    text-align: center;
    padding: 50px 40px;
    border-radius: 12px;
    background: linear-gradient(189.48deg, #10adad75 6.14%, #257fd3a1 99.43%);
}
.services-cta .logo {
    max-width: 240px;
    margin: auto;
    margin-bottom: 24px;
}
.services-cta .logo {
    max-width: 240px;
    margin: auto;
    margin-bottom: 24px;
}
.services-cta .cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    margin-bottom: 30px;
}
.services-cta .cta-call img {
    max-width: 29px;
}
.services-cta .cta-call a {
    color: #fff;
    font-size: 20px;
}
.pagination {
    margin-top: 40px;
    justify-content: space-between;
}
.pagination a{
    display: flex;
    align-items: center;
    column-gap: 15px;
    color:#000;
}
 .pagination a>img{
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 8px;
}
 .pagination .pagination-to{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
 .pagination .next .pagination-top{
    justify-content: end;
}
 .pagination .pagination-top span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
}
.pagination .next {
    margin-left: auto;
    width: 47%;
    background-color: #00cccc1a;
    padding: 20px;
    border-radius: 10px;
}
 .pagination .next a{
    justify-content: end;
} 
 .pagination .pre {
    margin-right: auto;
    width: 47%;
    background-color: #00cccc1a;
    padding: 20px;
    border-radius: 10px;
}
 .pagination h4{
    margin-bottom: 0;
    font-size: 18px;
}
.blog-block {
    margin-bottom: 30px;
}
.blog-details-image {
      margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}
.blog-block h4 {
    margin-bottom: 12px;
}
.blog-details-image img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.blog-details-image:hover img {
    transform: scale(1.1);
}
.blog-block ul li {
    margin-bottom: 8px;
    padding-left: 30px;
    position: relative;
}
.blog-block ul li::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point-icon.svg);
    background-size: 20px;
}
.blog-details-image-outer {
    display: flex;
    gap: 24px;
}
.blog-block.cta {
    background-color: #00cccc1a;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}
.blog-block p a {
    color: #000;
    font-weight: 600;
}
.blog-block .Primary-btn {
    color: #fff !important;
    font-weight: 500;
}
.single-product-section {
    padding: 100px 0;
}
.product-image {
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}
.product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.product-image:hover img {
    transform: scale(1.1);
}
.product-content p {
    margin-bottom: 30px;
}
.product-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.product-content ul {
    margin-bottom: 30px;
}
.product-content ul
 li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    color: #000;
}
.product-content ul li::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point-icon.svg);
    background-size: 20px;
}
aside.product-sidebar {
    position: sticky;
    top: 120px;
}
.product-sidebar .widget {
    background-color: #00cccc1a;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}
.widget-latest-products ul li a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #00a8a8;
    transition: all 0.5s;
    color: #000;
}
.widget-latest-products ul li:last-child a {
    border: none;
}
.widget-latest-products ul li a i {
    transition: all 0.5s;
    opacity: 0;
    color: #fff;
    padding-right: 15px;
}
.widget-latest-products ul li a:hover {
    background-color: #00a8a8;
    color: #fff;
    padding-left: 25px;
}
.widget-latest-products ul li a:hover i {
    opacity: 1;
}
.widget-category ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.widget-category ul li a {
    padding: 10px 18px;
    border-radius: 6px;
    background-color: #fff;
    color: #00a8a8;
    border: 1px solid #00a8a8;
        display: inline-block;
}
.widget-category ul li a:hover {
    background-color: #00a8a8;
    color: #fff;
}
.product-card-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-card {
    position: relative;
}
.product-card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.product-card-category {
    position: absolute;
    top: 20px;
    right: 20px;
}
.product-card-category a {
    border-radius: 12px;
    padding: 8px 20px;
    color: #fff;
    background-color: #00a8a8;
    display: inline-block;
}
h3.product-card-title {
    font-size: 24px;
    margin-bottom: 12px;
}
h3.product-card-title a {
    color: #000;
    font-weight: 500;
}
.product-card-excerpt {
    margin-bottom: 24px;
}
.map-section {
    margin: 0 30px 0;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
}
.partner-section {
    padding-bottom: 100px;
}
.partner-box {
    width: 175px;
    height: 90px;
    padding: 0 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #11adae;
}
.partner-section.about {
    padding-bottom: 60px;
}
.director-inner {
    background-color: hsl(180deg 100% 40% / 10%);
    border-radius: 20px;
    position: relative;
    display: flex;
    column-gap: 40px;
    padding: 35px;
    align-items: center;
    overflow: hidden;
}
.director-section {
    padding-bottom: 100px;
}
.director-image {
    width: 37%;
    flex-shrink: 0;
    transform: translateY(35px);
    text-align: center;
}
.director-image img {margin-top: -70px;width: 90%;     transform: translateY(35px);}
.director-details {
}
.director-details .title {
    margin-bottom: 30px;
}
.director-details .title h4 {
    font-size: 28px;
    margin-bottom: 0px;
}
.awards-section {
    padding-bottom: 100px;
}
.awards-left {
    padding-right: 80px;
}
.awards-right {
    border-radius: 20px;
    overflow: hidden;
}
.awards-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.awards-right:hover img {
    transform: scale(1.1);
}
.service-section-two {
    padding: 100px 0;
    background-color: #00cccc1a;
}
.service-left-two {
    position: sticky;
    top: 170px;
}
.service-box-two {
    display: flex;
    column-gap: 30px;
    align-items: center;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #199bbd;
    margin-bottom: 30px;
}
.service-box-two:last-child {
    margin-bottom: 0;
}
.service-image-two {
    border-radius: 20px;
    overflow: hidden;
}
.service-image-two img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.service-image-two:hover img {
    transform: scale(1.1);
}
.service-details-two h4 {
    margin-bottom: 12px;
}
.service-details-two ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    font-size: 16px;
}
.service-details-two ul li::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point-icon.svg);
    background-size: 20px;
}
.partner-section.two {
    padding-top: 50px;
}
.footer-widget.link {
    width: 150px;
        flex-shrink: 0;
}
.footer-widget.product ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
}
.footer-widget.product ul li {
    width: 48%;
}
.service-box:hover {
    background-color: #00A8A8;
    color: #fff;
}
.footer-about ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 15px;
}
.footer-about ul li span {
    flex-shrink: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00A8A8;
    border-radius: 100%;
}
.footer-about ul li a {
    color: #000;
}
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
270deg, rgba(64, 13, 62, 0) 4.92%, #101010 95.27%);
}
.footer-widget.product ul li a {
    pointer-events: none;
    cursor: default;
}
.Primary-btn:focus{
    color:#fff;
}
.blog-block h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.blog-image-outer {
    display: flex;
    column-gap: 24px;
}