/*
[Master Stylesheet] 
Project: Health Care Html
-------------------------------------------------------------------*/
/********************************************************
    body start
*******************************************************/

:root {
    --hc-primary-color:#2AA7FF;
    --hc-white-color: #ffffff;
    --hc-black-color: #002B46;
    --hc-font-color: #6E8DA0;
    --hc-transition: all 0.5s;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Thin.woff2') format('woff2'),
        url('../fonts/Metropolis-Thin.woff') format('woff'),
        url('../fonts/Metropolis-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis Extra';
    src: url('../fonts/Metropolis-ExtraLight.woff2') format('woff2'),
        url('../fonts/Metropolis-ExtraLight.woff') format('woff'),
        url('../fonts/Metropolis-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Light.woff2') format('woff2'),
        url('../fonts/Metropolis-Light.woff') format('woff'),
        url('../fonts/Metropolis-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.woff2') format('woff2'),
        url('../fonts/Metropolis-Regular.woff') format('woff'),
        url('../fonts/Metropolis-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Medium.woff2') format('woff2'),
        url('../fonts/Metropolis-Medium.woff') format('woff'),
        url('../fonts/Metropolis-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-SemiBold.woff2') format('woff2'),
        url('../fonts/Metropolis-SemiBold.woff') format('woff'),
        url('../fonts/Metropolis-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Bold.woff2') format('woff2'),
        url('../fonts/Metropolis-Bold.woff') format('woff'),
        url('../fonts/Metropolis-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis Extra';
    src: url('../fonts/Metropolis-ExtraBold.woff2') format('woff2'),
        url('../fonts/Metropolis-ExtraBold.woff') format('woff'),
        url('../fonts/Metropolis-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Black.woff2') format('woff2'),
        url('../fonts/Metropolis-Black.woff') format('woff'),
        url('../fonts/Metropolis-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

html {
  scroll-behavior: smooth;
}

*,*:before,*:after{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

*::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

*::-webkit-scrollbar
{
    width: 4px;
    background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb
{
    border-radius: 1rem;
    background: var(--hc-primary-color);
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: 'Metropolis';
    color: var(--hc-font-color);
    background-color: #F5FAFF;
    font-size: 16px;
    font-weight: 500;
}

a, a:hover, a:focus, button, button:hover, button:focus{	
	text-decoration: none;
	-webkit-transition: var(--hc-transition);
    -moz-transition: var(--hc-transition);
    -ms-transition: var(--hc-transition);
    -o-transition: var(--hc-transition);
    transition: var(--hc-transition);
}
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: var(--hc-transition);
    -moz-transition: var(--hc-transition);
    -ms-transition: var(--hc-transition);
    -o-transition: var(--hc-transition);
    transition: var(--hc-transition);
	margin:0;
	padding:0;	
	word-break: break-word;
    color: var(--hc-black-color);
}

h5{
    font-size: 30px;
    font-weight: 500;
}

h4{
    font-size: 40px;
    font-weight: 600;
}

h3{
    font-size: 50px;
    font-weight: 900;
}

input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :hover, :focus{
	outline: none !important;
	box-shadow:none;
    border: none;
    text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;
}

/********************************************************
    Button Style
*******************************************************/

.hc_btn {
    min-height: 60px;
    border-radius: 10px;
    min-width: 170px;
    width: fit-content;
    color: var(--hc-white-color);
    background: var(--hc-primary-color);
    padding: 10px 20px;
    border: none;
    transition: var(--hc-transition);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    font-size: 16px;
    line-height: normal;
}

.hc_btn:hover {
    color: var(--hc-primary-color);
    background: transparent;
    border: 1px solid var(--hc-primary-color);
}

/********************************************************
    Loader Style
*******************************************************/

.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--hc-white-color);
}

.spinner #pulsar {
    stroke-dasharray: 281;
    -webkit-animation: dash 2.5s infinite linear forwards;
}

@-webkit-keyframes dash {
    from {
        stroke-dashoffset: 814;
    }

    to {
        stroke-dashoffset: -814;
    }
}

/********************************************************
    Go to Top Style
 *******************************************************/
.hc_top_icon a {
    display: flex;
    background-color: var(--hc-primary-color);
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    transition: var(--hc-transition)  opacity 0;
    visibility: hidden;
    z-index: 1000;
    animation: 4s installation infinite alternate;
    cursor: pointer;
}

@keyframes installation {
    0%{
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(0px);
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(-20px);
    }
}

.hc_top_icon a:active {
  background-color: var(--hc-primary-color);
}

.hc_top_icon a.show {
  opacity: 1;
  visibility: visible;
}
/********************************************************
    Common Style
*******************************************************/

section{
    padding: 100px 0;
}

.row{
    row-gap: 30px;
}

.hc_section_heading {
    text-align: center;
    margin-bottom: 30px;
}

.hc_section_heading .hc_section_top {
    display: inline-flex;
    padding: 20px 28px;
    position: relative;
    border-radius: 25px;
    background-image: linear-gradient(180deg, rgb(219 237 255 / 100%) 0%, rgb(220 237 253 / 80%) 20%, rgb(221 236 252 / 60%) 40%, rgb(223 236 250 / 40%) 60%, rgb(224 236 248 / 10%) 80%);
}

.hc_section_heading .hc_section_top h3{
    background: linear-gradient(180deg, #2AA7FF 0%, #4F7FFF 111.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hc_section_heading .hc_section_top h3 span {
    position: absolute;
    bottom: -35px;
    left: 0;
    background: linear-gradient(180deg, rgba(42, 167, 255, 0.50) -61.67%, rgba(42, 167, 255, 0.44) -61.65%, rgba(42, 167, 255, 0.00) 71.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -1;
}

.hc_section_heading h4 {
    position: relative;
}

.hc_section_heading p {
    max-width: 615px;
    margin: 10px auto 0;
}

.hc_section_heading2 {
    text-align: center;
    margin-bottom: 10px;
}

.hc_section_heading2 p {
    max-width: 480px;
    margin: 10px auto 0;
}

/********************************************************
    Banner Section Style
*******************************************************/

.hc_banner_wrapper {
    background-image: url(../images/banner-bg.webp);
    padding: 60px 0 15px;
    background-size: cover;
    background-position: center bottom;
    position: relative;
}

.hc_logo {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hc_banner_text {
    text-align: center;
    margin-top: 45px;
    position: relative;
    z-index: 1;
}

.hc_banner_text h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hc_banner_text h1 {
    font-size: 50px;
    font-weight: 700;
    background-image: url(../images/bnr-heading.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 576px 100%;
    padding: 8px 0;
}

.hc_banner_text p {
    max-width: 615px;
    margin: 25px auto 35px;
}

.hc_banner_text .hc_btn {
    min-width: 230px;
    gap: 10px;
    margin: auto;
    filter: drop-shadow(15px 20px 60px rgba(42, 167, 255, 0.20));
}

.hc_banner_text .hc_btn svg {
    fill: var(--hc-white-color);
    transition: var(--hc-transition);
}

.hc_banner_text .hc_btn:hover svg {
    fill: var(--hc-primary-color);
    animation: hc_lr 1s infinite alternate;
}

@keyframes hc_lr {
    0% {
        transform: translateX(0)
    }
    to {
        transform: translateX(10px)
    }
}

.hc_banner_img {
    position: relative;
    text-align: center;
    margin-top: 60px;
    z-index: 1;
}

.hc_banner_desktop {
    position: relative;
    display: inline-block;
}

.hc_banner_desktop p {
    color: var(--hc-white-color);
    font-size: 24px;
    font-weight: 700;
    width: 110px;
    height: 110px;
    background: linear-gradient(180deg, #FF3767 0%, #FFA53A 100%);
    filter: drop-shadow(16px 14px 30px rgba(255, 113, 79, 0.20));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -55px;
    right: -55px;
    line-height: 1.1;
    animation: hc_rotateY 3s infinite;
    animation-delay: 1s;
}

@keyframes hc_rotateY {
    0% {
        transform: rotateY(0deg);
    }
    20% {
        transform: rotateY(360deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.hc_bnrleft, .hc_bnrright {
    position: absolute;
    animation: hc_ud 3s infinite alternate;
}

@keyframes hc_ud {
    0% {
        transform: translateY(0)
    }
    to {
        transform: translateY(-10px)
    }
}

.hc_bnrleft {
    top: 31px;
    left: 16px;
}

.hc_bnrright {
    top: 37px;
    right: 22px;
}

/********************************************************
    Demo Section Style
*******************************************************/

.hc_demo_wrapper {
    padding: 120px 0 60px;
}

.hc_demo_list .row{
    row-gap: 50px;
}

.hc_demo_card {
    text-align: center;
    max-width: 361px;
    margin: auto;
    position: relative;
}

.hc_demo_img_box {
    background: url(../images/demo-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 16px;
    border-radius: 25px;
}

.hc_demo_img {
    transition: var(--hc-transition);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.hc_demo_card:hover .hc_demo_img{
    transform: translateY(-25px);
}

.hc_demo_img::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 41, 79, 0.00) -4.33%, rgba(0, 30, 58, 0.75) 100%);
    transform: translateY(100%);
    transition: var(--hc-transition);
}

.hc_demo_card:hover .hc_demo_img::before{
    transform: translateY(0);
}

.hc_demo_inner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
    transform: translateY(30%);
    transition: var(--hc-transition);
    opacity: 0;
    visibility: hidden;
}

.hc_demo_card:hover .hc_demo_inner{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.hc_demo_btn a {
    margin: 20px auto 0;
}

.hc_btn.bs-3 {
    background: #FFB322;
    color: var(--hc-white-color);
    border: transparent;
}

.hc_btn.bs-5 {
    background: #FF2257;
    color: var(--hc-white-color);
    border: transparent;
}

.hc_demo_card p {
    color: var(--hc-white-color);
    font-size: 16px;
    font-weight: 700;
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #FF3767 0%, #FFA53A 100%);
    filter: drop-shadow(16px 14px 30px rgba(255, 113, 79, 0.20));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -21px;
    right: -21px;
    line-height: 1.1;
    animation: hc_rotateY 3s infinite;
    animation-delay: 1s;
}

/********************************************************
    Inner Page Section Style
*******************************************************/

.hc_inner_wrapper {
    padding: 60px 0 90px;
}

.hc_inner_list .row{
    row-gap: 40px;
}

.hc_inner_card {
    text-align: center;
    max-width: 361px;
    margin: auto;
    position: relative;
}

.hc_inner_img_box {
    background: url(../images/demo-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 16px;
    border-radius: 25px;
}

.hc_inner_img {
    transition: var(--hc-transition);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.hc_inner_img::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 41, 79, 0.00) -4.33%, rgba(0, 30, 58, 0.75) 100%);
    transform: translateY(100%);
    transition: var(--hc-transition);
}

.hc_inner_card:hover .hc_inner_img::before{
    transform: translateY(0);
}

.hc_inner_card:hover .hc_inner_img{
    transform: translateY(-25px);
}

.hc_page_inner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(30%);
    transition: var(--hc-transition);
    opacity: 0;
    visibility: hidden;
}

.hc_inner_card:hover .hc_page_inner{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.hc_inner_link{
    margin-top: 25px;
}

.hc_inner_link a {
    color: var(--hc-black-color);
    font-weight: 700;
    font-size: 18px;
}

/********************************************************
    Responsive Section Style
*******************************************************/


.hc_responsive_inner {
    background-color: #041322;
    border-radius: 50px;
    overflow: hidden;
    padding: 60px 90px;
}

.hc_responsive_heading {
    text-align: center;
    margin-bottom: 50px;
}

.hc_responsive_heading h4 {
    color: var(--hc-white-color);
    margin-bottom: 10px;
}

.hc_desktop_view {
    display: flex;
    align-items: center;
    gap: 30px 150px;
    flex-wrap: wrap;
}

.hc_res_img {
    position: relative;
}

.hc_res_img img {
    position: relative;
}

.hc_desktop_view .hc_res_img::before {
    position: absolute;
    content: "";
    width: 540px;
    height: 540px;
    background: #FEB322;
    border-radius: 50%;
    left: -230px;
    top: -40px;
}

.hc_res_text{
    position: relative;
}

.hc_desktop_view .hc_res_text::before {
    position: absolute;
    content: "";
    background-image: url(../images/res-bg.png);
    background-repeat: no-repeat;
    width: 88px;
    height: 80px;
    top: -22px;
    left: -35px;
}

.hc_res_text h5{
    color: var(--hc-white-color);
    position: relative;
}

.hc_laptop_view {
    display: flex;
    align-items: center;
    gap: 30px 150px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 120px 0 100px;
}

.hc_laptop_view .hc_res_img::before {
    position: absolute;
    content: "";
    width: 500px;
    height: 500px;
    background: #FF2257;
    border-radius: 50%;
    right: -230px;
    top: -60px;
}

.hc_laptop_view .hc_res_text::before {
    position: absolute;
    content: "";
    background-image: url(../images/res-bg.png);
    background-repeat: no-repeat;
    width: 88px;
    height: 80px;
    top: -22px;
    right: -35px;
    transform: rotateY(180deg);
}

.hc_tab_view {
    display: flex;
    align-items: center;
    gap: 30px 90px;
    flex-wrap: wrap;
}

.hc_tab_view .hc_res_text{
    margin-left: 30px;
}

.hc_tab_view .hc_res_text h5 {
    max-width: 269px;
    text-align: center;
}

.hc_tab_view .hc_res_text::before {
    position: absolute;
    content: "";
    background-image: url(../images/res-text.png);
    background-repeat: no-repeat;
    width: 175px;
    height: 159px;
    top: -22px;
    left: -25px;
}

.hc_tab_img, .hc_tab_img img, .hc_mob_img, .hc_mob_img img {
    position: relative;
}

.hc_tab_view .hc_tab_img::before {
    position: absolute;
    content: "";
    width: 460px;
    height: 460px;
    background: #FF2257;
    border-radius: 50%;
    left: -155px;
    top: 120px;
}

.hc_tab_view .hc_mob_img::before {
    position: absolute;
    content: "";
    width: 220px;
    height: 220px;
    background: #FEB322;
    border-radius: 50%;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
}

/********************************************************
    Fonts & icons Section Style
*******************************************************/

.hc_fonts_wrapper {
    padding: 90px 0;
}

.hc_fonts_img_res {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hc_fonts_img_res img {
    filter: drop-shadow(-1.55px 0px 30.993px rgba(39, 98, 131, 0.15));
}

/********************************************************
    9 Home Page & Multiple Color Section Style
*******************************************************/

.hc_multiplecolor_content{
    background-color: #041322;
    border-radius: 50px;
    overflow: hidden;
    padding: 50px;
    background-image: url(../images/nine-bg.webp);
    background-repeat: no-repeat;
}

.hc_multiplecolor_text {
    margin-top: 30px;
}

.hc_multiplecolor_text h4 {
    max-width: 250px;
    color: var(--hc-white-color);
    margin-bottom: 5px;
}

.hc_multiplecolor_text h3 {
    font-size: 40px;
    background: linear-gradient(90deg, #C727FF -5.19%, #FF50CE 50.67%, #0075FF 104.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 285px;
}

.hc_multiplecolor_text ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 235px;
    gap: 20px 15px;
    margin-top: 40px;
}

.hc_multiplecolor_text ul li {
    display: flex;
    gap: 10px;
    width: calc(100% /2 - 15px);
    color: var(--hc-white-color);
    align-items: center;
}

.hc_multiplecolor_text ul li span {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: block;
}

.hc_multiplecolor_text ul li:nth-child(1) span{
    background: #E54242;
}

.hc_multiplecolor_text ul li:nth-child(2) span{
    background: #2a73d4;
}

.hc_multiplecolor_text ul li:nth-child(3) span{
    background: #1abc9c;
}

.hc_multiplecolor_text ul li:nth-child(4) span{
    background: #00ac7a;
}

.hc_multiplecolor_text ul li:nth-child(5) span{
    background: #0274fa;
}

.hc_multiplecolor_text ul li:nth-child(6) span{
    background: #2aa8ff;
}

/********************************************************
    Bootstrap Section Style
*******************************************************/

.hc_bootstrap_wrapper {
    padding: 100px 0;
}

.hc_bootstrap_content {
    display: flex;
    align-items: center;
}

.hc_bootstrap_img {
    min-width: 910px;
}

.hc_bootstrap_text {
    margin: -75px 0 0 -140px;
    text-align: right;
}

/********************************************************
    4 classic Blog Section Style
*******************************************************/

.hc_blog_content {
    position: relative;
    background-color: #041322;
    border-radius: 50px;
    overflow: hidden;
    padding: 212px 50px;
    background-image: url(../images/four-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.hc_blog_content::before {
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 40%);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.hc_blog_text, .hc_four_img {
    position: relative;
    text-align: center;
}

.hc_blog_text h3 {
    font-size: 40px;
    background: linear-gradient(90deg, #FF5C00 -5.19%, #FFB13C 50.67%, #FF8F27 104.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-top: 10px;
}

.hc_blog_text h4 {
    color: var(--hc-white-color);
}

/********************************************************
    Cross Browser Compatibility Section Style
*******************************************************/

.hc_browser_wrapper {
    padding: 100px 0;
    overflow: hidden;
}

.hc_browser_content {
    display: flex;
    justify-content: center;
    gap: 30px 65px;
}

.hc_browser_img, .hc_browser_img img {
    position: relative;
}

.hc_browser_img::before{
    position: absolute;
    content: "";    
    border-radius: 50%;
}

.hc_browser_img.one::before {
    background: #FEB322;
    width: 195px;
    height: 195px;
    bottom: 47px;
    left: -58px;
}

.hc_browser_img.two::before {
    background: #FF2257;
    width: 265px;
    height: 265px;
    top: -48px;
    right: -58px;
}

.hc_browser_icon {
    position: relative;
    background-image: url(../images/browser-bg.png);
    background-repeat: no-repeat;
    max-width: fit-content;
    margin: auto;
    padding: 20px;
    background-size: 100% 100%;
    margin-top: 15px;
}

.hc_browser_inner {
    background-color: var(--hc-white-color);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px 30px;
    padding: 30px 40px;
    flex-wrap: wrap;
    margin: auto;
    max-width: fit-content;
}

/********************************************************
    Flat Design Section Style
*******************************************************/

.hc_flat_content {
    background-color: #041322;
    border-radius: 50px;
    overflow: hidden;
    padding: 50px 40px 0;
    background-repeat: no-repeat;
}

.hc_flat_text {
    position: relative;
}

.hc_flat_text span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hc_flat_text h4 {
    color: var(--hc-white-color);
}

.hc_flat_text h3 {
    font-size: 40px;
    background: linear-gradient(90deg, #8F00FF -8.95%, #6476FF 52.54%, #00D1FF 121.84%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hc_flat_text p {
    color: var(--hc-white-color);
    max-width: 390px;
    margin-top: 10px;
}

.hc_flat_img {
    margin-top: -105px;
}

/********************************************************
    Well Documented Section Style
*******************************************************/

.hc_documented_wrapper {
    padding: 100px 0;
}

.hc_documented_content {
    display: flex;
    align-items: center;
}

.hc_documented_text {
    max-width: 260px;
    margin-right: -50px;
    margin-top: -115px;
}

/********************************************************
    Features Section Style
*******************************************************/

.hc_features_wrapper {
    padding-bottom: 100px;
}

.hc_features_list .row{
    row-gap: 50px;
}

.hc_feature_card {
    position: relative;
    background-color: var(--hc-white-color);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 260px;
    min-height: 260px;
    margin: auto;
    border: 1px solid transparent;
    transition: var(--hc-transition);
}

.hc_feature_bg {
    position: relative;
    width: 100%;
    margin: auto;
}

.hc_feature_bg::before {
    position: absolute;
    content: "";
    background-image: url(../images/feature-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 230px;
    height: 204px;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, 0);
    z-index: -1;
}

.hc_feature_card:hover{
    border: 1px solid rgb(42 167 255 / 30%);
    filter: drop-shadow(11px 11px 49px rgba(39, 98, 131, 0.10));
    transform: translateY(-20px);
}

.hc_feature_icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.hc_feature_icon.f1 {
    background: #EBF8FF;
}

.hc_feature_icon.f2 {
    background: #EBEBFF;
}
.hc_feature_icon.f3 {
    background: #EFF8FF;
}
.hc_feature_icon.f4 {
    background: #EFF6FF;
}
.hc_feature_icon.f5 {
    background: #EBF4FF;
}
.hc_feature_icon.f6 {
    background: #FFF3E0;
}
.hc_feature_icon.f7 {
    background: #ECECEC;
}
.hc_feature_icon.f8 {
    background: #FFF3D2;
}

.hc_feature_card p {
    font-size: 20px;
    font-weight: 500;
    color: var(--hc-black-color);
}

/********************************************************
    Rate Us Section Style
*******************************************************/

.hc_rating_wrapper {
    padding-bottom: 180px;
}

.hc_rating_content {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #041322;
    border-radius: 30px;
    overflow: hidden;
    padding: 30px 40px 0;
    background-image: url(../images/rating-bg.png);
    background-repeat: no-repeat;
}

.hc_star_img ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.hc_star_img {
    text-align: center;
}
.hc_star_img h4 {
    color: var(--hc-white-color);
    margin-top: 35px;
}
.hc_star_img h3 {
    background: linear-gradient(90deg, #8F00FF -8.95%, #6476FF 52.54%, #00D1FF 121.84%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
}
.hc_star_img p {
    max-width: 330px;
    margin-top: 10px;
    color: var(--hc-white-color);
}


/********************************************************
    footer Section Style
*******************************************************/
.hc_footer_wrapper {
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.hc_footer_logo {
    text-align: center;
    margin-top: -80px;
}

.hc_footer_logo span {
    border-radius: 50px;
    background: var(--hc-white-color);
    box-shadow: 15px 12.5px 83.167px 0px rgba(0, 108, 207, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    margin: auto;
    padding: 30px;
}

.hc_footer_text {
    text-align: center;
    position: relative;
    margin: 85px auto 90px;
    max-width: 975px;
}

.hc_footer_text h3 {
    font-weight: 600;
    margin-top: 10px;
}

.hc_footer_text span {
    background: var(--hc-white-color);
    filter: drop-shadow(14.444px 15.556px 44.444px rgba(39, 98, 131, 0.15));
     position: absolute; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.hc_footer_text span.hc_ftr_icon1 {
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
}

.hc_footer_text span.hc_ftr_icon2 {
    width: 100px;
    height: 100px;
    right: 0;
    bottom: -40px;
}

/********************************************************
    copyright Section Style
*******************************************************/
.hc_Copyright_wrapper {
    background: #041322;
    padding: 20px 0;
}
.hc_copyright_text p {
    text-align: center;
    color:var(--hc-white-color);
}
