@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');
*, *:before, *:after {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:root {
  --coralred-color: #FF6F61;
  --white-color: #FEFFFE;
  --darkblue-color: #0B1526;
  --solidpink-color: #8E3B46;
}
a, img {
	border: 0px;
	outline: 0px;
}
html {
	height: 100%;
	width: 100%;
    box-sizing: border-box;
}
body {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden !important;
	font-family: "Funnel Display", sans-serif;
  	font-weight: 400;
  	font-style: normal;
    background: #1E293B;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Funnel Display", sans-serif;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
p{
    font-family: "Funnel Display", sans-serif;
    color: var(--white-color);
    font-size: 14px;
    line-height: 24px;
}
.main_fluid{
	width: 100%;
	display: block;
    position: relative;
}
.main-wrapper{
	max-width: 1260px;
	position: relative;
	margin: auto;
    padding: 0px 15px;
}
.hamburgermenu {
    cursor: pointer;
    position: relative;
    top: -4px;
    span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--white-color);
        margin: 5px 0;
        transition: all 0.3s;
    }
}
.mobile-menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darkblue-color);
    z-index: 99999;
    display: none;
    .mobilemenu-logo{
       padding: 30px;
       display: inline-block;
        img {
            width: 150px;
        }
    }
    .closemenu {
        position: absolute;
        top: 40px;
        right: 30px;
        cursor: pointer;
        span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--white-color);
            margin-bottom: 5px;
            &:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            &:nth-child(2) {
                opacity: 0;
            }
            &:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
        }
     }
    ul {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-left: 30px;
        margin-top: 40px;
        li {
            a {
                text-decoration: none;
                color: var(--white-color);
                font-size: 18px;
                font-weight: 600;
                transition: all 0.3s;
                &:hover {
                    color: var(--coralred-color);
                    transition: all 0.3s;
                }
            }
        }
        li.active a, li.current_page_item a {
            color: var(--coralred-color);
        }
     }
}
.header {
    position: absolute;
    z-index: 11;
    padding: 30px 0px;
    .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        @media (max-width:991px){
            gap: 15px;
        }
        .logo {
            @media (max-width:991px){
                margin-right: auto;
            }
        }
        .logo a {
            img{
                width: 150px;
                @media (max-width:767px){
                    width: 130px;
                }
            }
        }
        .menu {
            @media (max-width:991px){
                display: none;
            }
            ul {
                list-style-type: none;
                display: flex;
                grid-gap: 55px;
                li {
                    a {
                        text-decoration: none;
                        color: var(--white-color);
                        font-size: 18px;
                        font-weight: 600;
                        transition: all 0.3s;
                        &:hover {
                            color: var(--coralred-color);
                            transition: all 0.3s;
                        }
                    }
                }
                li.active a, li.current_page_item a {
                    color: var(--coralred-color);
                }
                LI.current_page_item A{}
            }
        }
        .book-appointment a {
            background: var(--coralred-color);
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            width: 180px;
            display: flex;
            color: #FEFFFE;
            transition: all 0.3s;
            position:relative;
            border-radius: 100px;
            height: 45px;
            justify-content: center;
            align-items: center;
            text-transform: capitalize;
            cursor: pointer;
            @media (max-width:767px){
                font-size: 14px;
                width: 150px;
            }
            &:hover {
                background: var(--solidpink-color);
                color: #FEFFFE;
                transition: all 0.3s;
            }
        }
    }
}
.header.sticky{
    position: fixed;
    top: 0px;
    box-shadow: 0px 0px 14px 6px rgba(0, 0, 0, 0.08);
    background: var(--darkblue-color);
    transition: all 0.3s;
    padding: 8px 0px;
}
.header.fixed-header{
    position: fixed;
    top: 0px;
    box-shadow: 0px -1px 14px 2px rgba(0, 0, 0, 0.08);
}
.hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100vh;
    @media (max-width:767px){
        height: auto;
    }
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: zoom-in-zoom-out 30s ease-out infinite;
    }
    .banner-content {
        position: absolute;
        max-width: 1260px;
        margin: auto;
        left: 0px;
        right: 0px;
        top: 25%;
        padding: 15px;
        @media (max-width:767px){
            top: 21%;
        }
        .inner{
            max-width: 798px;
            h1 {
                color: var(--white-color);
                font-size: 42px;
                font-weight: 700;
                max-width: 720px;
                margin-bottom: 20px;
                line-height: 120%;
                font-size: 3.1vw;
                @media (min-width:768px) and (max-width:1024px){
                    font-size: 7.2vw;
                }
                @media (max-width:767px){
                    font-size: 9.2vw;
                }
            }
            p {
                font-size: 18px;
                font-weight: 400;
                line-height: 30px;
                margin-bottom: 15px;
            }
            a{
                background: var(--coralred-color);
                font-size: 16px;
                font-weight: 700;
                text-decoration: none;
                width: 180px;
                display: flex;
                color: #FEFFFE;
                transition: all 0.3s;
                position:relative;
                border-radius: 100px;
                height: 50px;
                justify-content: center;
                align-items: center;
                text-transform: capitalize;
                margin-top: 30px;
                &:hover {
                    background: var(--solidpink-color);
                    color: #FEFFFE;
                    transition: all 0.3s;
                }
            }
        }
    }
}

.bannerservices {
    display: flex;
    grid-gap: 20px;
    margin-top: -180px;
    @media (max-width:767px){
        flex-direction: column;
        margin-top: 50px;
    }
    div {
        flex: 1;
        border-radius: 16px;
        box-sizing: border-box;
    }
    .item {
        display: grid;
        grid-template-columns: 55px 1fr;
        grid-gap: 15px;
        padding: 25px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        @media (max-width:1024px){
            grid-template-columns:none;
            padding:15px;
            grid-gap: 5px;
        }
        &:nth-child(1){
           background: var(--darkblue-color);
        }
         &:nth-child(2){
           background: var(--solidpink-color); 
        }
        &:nth-child(3){
          background: var(--coralred-color);
        }
        .icon{
            display: flex;
            align-items: flex-start;
            @media (max-width:1024px){
                width: 50px;
            }
            img{
                width: 100%;
            }
        }
        .content{
            span{
                font-size: 16px;
                color: var(--white-color);
                font-weight: 700;
                margin-bottom: 10px;
                display: block;
            }
            h2{
                font-size: 20px;
                color: #FEFFFE;
                font-weight: 700;
                margin-bottom: 15px;
                display: block;
            }
            p{
                font-size: 16px;
                line-height: 24px;
                font-weight: 400;
                @media (max-width:991px){
                    font-size: 14px;
                    line-height: 22px;
                }
            }
        }
    }
}
.rudhira-section {
    position: relative;
    &:after {
        position: absolute;
        left: -10%;
        top: 17%;
        width: 668px;
        height: 668px;
        content: '';
        background-image: url(../images/Ellipse.png);
        background-size: cover;
        z-index: -1;
        @media (max-width:1025px){
            display: none;
        }
    }
    &:before {
        position: absolute;
        right: 0;
        left: auto;
        top: 25%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-right: 500px solid var(--darkblue-color);
        border-bottom: 500px solid transparent;
        @media (max-width:1025px){
            display: none;
        }
    }
}
@keyframes smallMove {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.05);
  }
  100% {
   transform: rotate(0deg) scale(1);
  }
}
.about-rudhira {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 150px;
    grid-gap: 50px;
    align-items: center;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    @media (min-width:768px) and (max-width:1024px){
        grid-gap: 15px;
    }
   @media (max-width:767px){
        display: block;
    }
    .content {
        h2 {
            color: var(--white-color);
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 120%;
            @media (max-width:1024px){
                font-size: 28px;
            }
            span {
                color: var(--coralred-color);
            }
        }
        p {
            margin-bottom: 30px;
        }
        .items {
            display: flex;
            gap: 50px;
            margin-top: 50px;
            @media (max-width:1024px){
                gap: 20px;
            }
            @media (max-width:767px){
                flex-direction: column;
                gap: 40px;
            }
            .item {
                .icon-title {
                    display: flex;
                    gap: 20px;
                    align-items: center;
                    margin-bottom: 20px;
                    span {
                        color: var(--white-color);
                        font-size: 22px;
                        max-width: 90px;
                        @media (max-width:767px){
                            max-width: none;
                        }
                    }
                }
                ul {
                    padding-left: 25px;
                    li {
                        color: var(--white-color);
                        font-size: 14px;
                        line-height: 22px;
                        margin-top: 10px;
                    }
                }
            }
        }
    }
    .image {
        position: relative;
        @media (max-width:767px){
            padding-top: 100px;
            display: none;
        }
        &:after {
            position: absolute;
            right: 0;
            background: var(--solidpink-color);
            width: 80px;
            height: 80px;
            border-radius: 10px;
            content: '';
            top: -50px;
            z-index: 0;
            animation: grow-and-shrink 5000ms;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            @media (max-width:767px){
                top: 20px;
                right: 20px;
            }
        }
        &:before {
            position: absolute;
            left: 60%;
            background: var(--solidpink-color);
            width: 80px;
            height: 80px;
            border-radius: 10px;
            content: '';
            bottom: -40px;
            z-index: 0;
            animation: grow-and-shrink 5000ms;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
            animation-direction: alternate;
        }
        img {
            width: 100%;
            animation-name: smallMove;
            animation-duration: 9s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out; 
        }
    }
}
@keyframes grow-and-shrink {
    0% {
      transform: rotate(0deg) scale(1);
      background: var(--solidpink-color);
    }
    100% {
      transform: rotate(30deg) scale(1.2);
      background: var(--coralred-color);
    }
}
.stepbystep-section {
    margin-top: 120px;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    @media (max-width:767px){
        margin-top: 50px;
    }
    .inner {
        display: flex;
        gap: 30px;
        align-items: center;
        @media (min-width:768px) and (max-width:1024px){
            grid-gap: 15px;
        }
        @media (max-width:767px){
            flex-direction: column;
            gap: 20px;
        }
        div {
            flex: 1;
        }
        .image {
            overflow: hidden;
            @media (max-width:767px){
                order: 2;
                display: none;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
            }
        }
        .content {
            @media (max-width:767px){
                order: 1;
            }
            h2 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                line-height: 120%;
                margin-bottom: 50px;
                @media (max-width:1024px){
                    font-size: 28px;
                    margin-bottom:  20px;
                }
            }
            ul {
                li {
                    display: grid;
                    grid-template-columns: 50px 1fr;
                    gap: 20px;
                    align-items: center;
                    margin-bottom: 20px;
                    border: 1px solid var(--darkblue-color);
                    padding: 15px;
                    border-radius: 15px;
                    .icon {
                        img {
                            width: 100%;
                        }
                    }
                    .content {
                        h2 {
                            color: var(--white-color);
                            font-size: 22px;
                            margin-bottom: 15px;
                        }
                    }
                }
            }
        }
    }
}
.transforming-section {
    margin-top: 130px;
    position: relative;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    &:after {
        position: absolute;
        left: 0;
        top: 0%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-left: 500px solid var(--solidpink-color);
        border-bottom: 500px solid transparent;
        z-index: -1;
        @media (max-width:1025px){
            display: none;
        }
    }
    .inner {
        background: var(--darkblue-color);
        padding: 30px;
        border-radius: 35px;
        position: relative;
        @media (max-width:767px){
           padding: 20px;
           border-radius: 15px;
        }
        &:before {
            position: absolute;
            right: 0%;
            top: -24%;
            width: 668px;
            height: 668px;
            content: '';
            background-image: url("../images/Ellipse.png");
            background-size: cover;
            z-index: -1;
            @media (max-width:1025px){
                display: none;
            }
        }
        h2 {
            color: var(--white-color);
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 120%;
            max-width: 700px;
            @media (max-width:1024px){
                font-size: 28px;
            }
            span {
                color: var(--coralred-color);
            }
        }
        .immune {
            display: flex;
            gap: 50px;
            margin-top: 50px;
            @media (min-width:768px) and (max-width:1024px){
                grid-gap: 15px;
            }
            @media (max-width:767px){
                flex-direction: column;
                gap: 20px;
            }
            .image,
            .accordion {
                flex: 1;
            }
            .image {
                @media (max-width:767px){
                    display:none;
                }
                img {
                    width: 100%;
                    animation: animrotation 120s linear infinite;
                }
            }
        }
    }
}
@keyframes animrotation {
    0%{
        transform: rotate(0deg);
   }
    100%{
        transform: rotate(360deg);
   }
}
.accordion {
    /*counter-reset: my-awesome-counter;*/
    .faq-item {
        border-bottom: 1px solid #4A64AF;
        padding-bottom: 20px;
        margin-bottom: 20px;
        position: relative;
        @media (max-width:767px){
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        /*counter-increment: my-awesome-counter;
        padding-left: 40px;*/
        /*&:before {
            content: counter(my-awesome-counter, decimal-leading-zero)  ".";
            position: absolute;
            top: 0;
            color: #fff;
            font-size: 22px;
            left: 0;
        }*/
        .faq-question {
            color: var(--white-color);
            font-size: 22px;
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            transition: all 0.3s;
            cursor: pointer;
            &:hover {
                color: var(--coralred-color);
                transition: all 0.3s;
            }
            .arrow {
                position: absolute;
                right: 10px;
                top: 0;
                cursor: pointer;
                &::after{
                    content: '+';
                }
            }
        }
        .faq-answer {
            display: none;
            /*padding-right: 35px;*/
        }
    }
    .faq-item.active {
        .faq-question {
            color: var(--coralred-color);
             .arrow {
                &::after{
                    content: '_';
                    position: relative;
                    top: -9px;
                }
            }
        }
    }
}
.hm-blog-section {
    margin-top: 130px;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    h2{
        color: var(--white-color);
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 40px;
        line-height: 120%;
        text-align: center;
        @media (min-width:768px) and (max-width:1024px){
            font-size: 28px;
        }
        @media (max-width:767px){
            font-size: 28px;
            text-align: left;
        }
    }
    .hm-blog {
        display: grid;
        grid-template-columns: 0.9fr 1fr;
        gap: 30px;
        @media (min-width:768px) and (max-width:1024px){
            grid-gap: 15px;
        }
        @media (max-width:767px){
            grid-template-columns: 1fr;
        }
        .blogimage {
            display: flex;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .blog-content {
            padding: 30px;
            border: 1px solid #8E3B46;
            transition: all 0.3s;
            @media (min-width:768px) and (max-width:1024px){
               padding: 10px;
            }
            @media (max-width:767px){
                padding: 20px;
            }
            a.title {
                color: var(--white-color);
                font-size: 22px;
                margin-bottom: 10px;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                text-decoration: none;
                -webkit-box-orient: vertical;
                transition: all 0.3s;
                &:hover {
                    color: var(--coralred-color);
                    transition: all 0.3s;
                }
            }
            ul {
                list-style-type: none;
                display: flex;
                gap: 30px;
                margin-top: 15px;
                align-items: center;
                li {
                    color: #FEFFFE;
                    font-size: 14px;
                }
            }
            .readmore {
                background: var(--coralred-color);
                font-size: 14px;
                font-weight: 700;
                text-decoration: none;
                width: 140px;
                display: flex;
                color: #FEFFFE;
                transition: all 0.3s;
                position: relative;
                border-radius: 100px;
                height: 40px;
                justify-content: center;
                align-items: center;
                text-transform: capitalize;
                margin-top: 25px;
                &:hover {
                    background: var(--solidpink-color);
                    color: #FEFFFE;
                    transition: all 0.3s;
                }
            }
        }
        .leftblog {
            .blog-item {
                &:hover{
                    .blog-content{
                        background: var(--darkblue-color);
                        transition: all 0.3s;
                    }
                }
                .blogimage {
                    border-radius: 20px 20px 0 0;
                    @media (max-width:767px){
                         border-radius: 15px 15px 0 0;
                    }
                    img {
                        border-radius: 20px 20px 0 0;
                        @media (max-width:767px){
                            border-radius: 15px 15px 0 0;
                        }
                    }
                }
                .blog-content {
                    border-top: 0;
                    border-radius: 0 0 20px 20px;
                    @media (max-width:767px){
                        border-radius: 0 0 15px 15px;
                    }
                    p {
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-line-clamp: 5;
                        -webkit-box-orient: vertical;
                    }
                }
            }
        }
        .rightblog {
            display: grid;
            gap: 30px;
            grid-template-rows: 1fr 1fr;
            @media (max-width:767px){
                grid-template-columns: 1fr;
            }
            .blog-item {
                display: grid;
                grid-template-columns: 0.9fr 1fr;
                transition: all 0.3s;
                @media (max-width:767px){
                    grid-template-columns: 1fr;
                }
                &:hover{
                    .blog-content{
                        background: var(--darkblue-color);
                        transition: all 0.3s;
                    }
                }
                .blogimage {
                    border-radius: 20px 0 0 20px;
                    @media (max-width:767px){
                        border-radius: 15px 15px 0 0;
                    }
                    img {
                        border-radius: 20px 0 0 20px;
                        @media (max-width:767px){
                            border-radius: 15px 15px 0 0;
                        }
                    }
                }
                .blog-content {
                    border-left: 0;
                    border-radius: 0 20px 20px 0;
                    @media (max-width:767px){
                        border-radius: 0px 0px 15px 15px;
                        border: 1px solid #8E3B46;
                        border-top: 0px;
                    }
                    p {
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-line-clamp: 3;
                        -webkit-box-orient: vertical;
                    }
                }
            }
        }
    }
}

.hm-formsection{
    margin-top: 130px;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    &:after {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-right: 500px solid var(--solidpink-color);
        border-bottom: 500px solid transparent;
        z-index: -1;
        @media (max-width:1025px){
            display: none;
        }
    }
    &:before {
        position: absolute;
        left: 0%;
        top: 0%;
        width: 668px;
        height: 668px;
        content: '';
        background-image: url("../images/Ellipse.png");
        background-size: cover;
        z-index: -1;
        @media (max-width:1025px){
            display: none;
        }
    }
    .hm-form{
        background: url(../images/formbg.jpg) no-repeat center center;
        background-size: cover;
        height: 830px;
        border-radius: 20px;
        padding: 30px;
        animation: background-move 25s linear infinite alternate;
        @media (max-width:767px){
            padding: 15px;
            height: auto;
            border-radius: 15px;
        }
        .cf7form {
            max-width: 521px;
            background: #1E293B;
            padding: 40px;
            border-radius: 20px;
            height: 100%;
            @media (max-width:767px){
                padding: 20px;
                border-radius: 15px;
            }
            h2 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 20px;
                line-height: 120%;
                text-align: center;
                @media (min-width:768px) and (max-width:1024px){
                    font-size: 28px;
                }
                @media (max-width:767px){
                    font-size: 28px;
                    text-align: left;
                }
            }
            p {
                color: var(--white-color);
                font-size: 16px;
                margin-bottom: 30px;
                text-align: center;
                @media (max-width:767px){
                    text-align: left;
                }
            }
            .form-group {
                width: 100%;
                margin-bottom: 15px;
                input,
                textarea {
                    width: 100%;
                    height: 60px;
                    padding: 15px;
                    font-size: 16px;
                    border: 0;
                    border-radius: 5px;
                    font-family: "Funnel Display", sans-serif;
                    border: 1px solid var(--coralred-color);
                    background: var(--darkblue-color);
                    @media (max-width:767px){
                        height: 45px;
                    }
                }
                textarea {
                    height: 120px;
                }
            }
            input[type="submit"] {
                background: var(--coralred-color);
                font-size: 18px;
                font-weight: 700;
                text-decoration: none;
                width: 100%;
                display: flex;
                color: #FEFFFE;
                transition: all 0.3s;
                position: relative;
                border-radius: 100px;
                height: 70px;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                text-transform: uppercase;
                border: 0;
                 @media (max-width:767px){
                    height: 45px;
                    font-size: 14px;
                }
                &:hover {
                    background: var(--solidpink-color);
                    color: #FEFFFE;
                    transition: all 0.3s;
                }
            }
        }
    }
}

.subscribe-section {
    margin-top: 130px;
    position: relative;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    .subscribe {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 50px;
        align-items: center;
        @media (min-width:768px) and (max-width:1024px){
            grid-gap: 15px;
        }
        @media (max-width:767px){
            grid-template-columns: 1fr;
        }
        .content {
            h2 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 10px;
                line-height: 120%;
                max-width: 700px;
                @media (max-width:1024px){
                    font-size: 28px;
                }
            }
        }
        form {
            background: var(--darkblue-color);
            padding: 10px;
            border: 1px solid var(--coralred-color);
            border-radius: 100px;
            height: 75px;
            display: flex;
            align-items: center;
            width: 100%;
            gap: 20px;
            position: relative;
            justify-content: space-between;
            @media (max-width:767px){
                height: 65px;
            }
            input {
                width: 100%;
                border: 0;
                height: 60px;
                padding: 15px;
                border-radius: 100px;
                color: #FEFFFE;
                font-size: 16px;
                background-color: transparent;
                @media (max-width:767px){
                    height: 45px;
                    font-size: 14px;
                }
                &:focus {
                    outline: none;
                }
            }
            input[type="submit"] {
                background: var(--coralred-color);
                font-size: 18px;
                font-weight: 700;
                text-decoration: none;
                width: 250px;
                display: flex;
                color: #FEFFFE;
                transition: all 0.3s;
                position: relative;
                border-radius: 100px;
                height: 60px;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                text-transform: uppercase;
                border: 0;
                @media (max-width:767px){
                    height: 45px;
                    font-size: 14px;
                }
                &:hover {
                    background: var(--solidpink-color);
                    color: #FEFFFE;
                    transition: all 0.3s;
                }
            }
        }
    }
}
.footer {
    margin-top: 100px;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    .inner {
        border-top: 1px solid #8E3B46;
        padding-top: 75px;
        border-bottom: 1px solid #8E3B46;
        padding-bottom: 75px;
        display: flex;
        gap: 50px;
        @media (max-width:1025px){
            gap: 15px;
        }
        @media (max-width:767px){
            flex-direction: column;
            padding-bottom: 40px;
             padding-top: 40px;
        }
        div {
            flex: 1;
        }
        .logo {
            a {
                margin-bottom: 20px;
                display: flex;
                img{
                    @media (max-width:1025px){
                        width: 130px;
                    }
                }
            }
        }
        .menu {
            h3 {
                color: #FEFFFE;
                font-size: 22px;
                margin-bottom: 30px;
                @media (max-width:767px){
                    margin-bottom: 15px;
                }
            }
            p {
                margin-top: 10px;
                i {
                    margin-right: 10px;
                }
            }
            ul {
                list-style-type: none;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                @media (max-width:1025px){
                    gap: 10px;
                }
                li {
                    a {
                        color: #FEFFFE;
                        font-size: 14px;
                        text-decoration: none;
                        transition: all 0.3s;
                        &:hover {
                            color: var(--coralred-color);
                            transition: all 0.3s;
                        }
                    }
                }
            }
        }
    }
    .copyright {
        text-align: center;
        padding: 25px 0;
        .copyright-text {
            color: var(--coralred-color);
        }
    }
}

.inner-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: zoom-in-zoom-out 30s ease-out infinite;
    }
    .banner-content {
        position: absolute;
        max-width: 1260px;
        margin: auto;
        left: 0px;
        right: 0px;
        top: 50%;
        transform: translate(-50%, -50%);
        .inner{
            h1 {
                color: var(--white-color);
                font-size: 58px;
                font-weight: 700;
                margin-bottom: 20px;
                line-height: 120%;
                text-align: center;
                @media (max-width:1024px){
                    font-size: 32px;
                }
            }
            ul.breadscrum {
                list-style-type: none;
                display: flex;
                gap: 30px;
                justify-content: center;
                margin-top: 20px;
                li {
                    color: var(--white-color);
                    font-size: 16px;
                    position: relative;
                    &:not(:last-child)::after {
                        content: '>';
                        position: absolute;
                        right: -20px;
                        color: var(--white-color);
                    }
                    a {
                        text-decoration: none;
                        color: var(--white-color);
                        transition: all 0.3s;
                        &:hover {
                            color: var(--coralred-color);
                            transition: all 0.3s;
                        }
                    }
                }
            }
        }
    }
}
.root-rudhira {
    position: relative;
    &:after {
        position: absolute;
        left: 0%;
        top: 0%;
        width: 668px;
        height: 668px;
        content: '';
        background-image: url(../images/Ellipse.png);
        background-size: cover;
        z-index: -1;
        @media (max-width:1025px){
            display: none;
        }
    }
    &:before {
        position: absolute;
        right: 0;
        left: auto;
        top: 0%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-right: 500px solid var(--darkblue-color);
        border-bottom: 500px solid transparent;
        @media (max-width:1025px){
            display: none;
        }
    }
    .aboutpage-rudhira {
        display: grid;
        grid-template-columns: 1fr 0.8fr;
        gap: 40px;
        margin-top: 130px;
        @media (max-width:1024px){
            margin-top: 70px;
            grid-template-columns: 1fr;
        }
        .content {
            h2 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 20px;
                line-height: 120%;
                @media (max-width:1024px){
                    font-size: 28px;
                }
                span {
                    color: var(--coralred-color);
                }
            }
            h3 {
                color: var(--white-color);
                font-size: 22px;
                margin: 40px 0 20px;
            }
            ul {
                list-style-type: none;
                li {
                    color: var(--white-color);
                    font-size: 14px;
                    line-height: 22px;
                    margin-bottom: 25px;
                    p {
                        margin-top: 5px;
                    }
                }
            }
        }
        .image {
            @media (max-width:1024px){
                display: none;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
            }
        }
    }
}

.vision-mission {
    margin-top: 120px;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    h2 {
        color: var(--white-color);
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 50px;
        line-height: 120%;
        @media (max-width:1024px){
            font-size: 28px;
            margin-bottom: 20px;
        }
        span {
            color: var(--coralred-color);
        }
    }
    .inner {
        display: flex;
        gap: 20px;
        @media (max-width:767px){
            flex-direction: column;
        }
        .video {
            flex: 1;
            video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
                @media (max-width:767px){
                    border-radius: 15px;
                }
            }
        }
        .rightsection {
            flex: 1;
            .item {
                border-radius: 20px;
                padding: 20px;
                background: var(--darkblue-color);
                margin-bottom: 20px;
                @media (max-width:767px){
                    border-radius: 15px;
                }
                &:last-child {
                    margin-bottom: 0;
                }
                h3 {
                    color: var(--white-color);
                    font-size: 22px;
                    margin: 0 0 15px;
                    display: flex;
                    align-items: center;
                    img {
                        margin-right: 10px;
                    }
                }
            }
        }
    }
}

.profile-section {
    margin-top: 130px;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    .inner {
        display: flex;
        gap: 20px;
        @media (max-width:767px){
            flex-direction: column;
        }
        .content {
            flex: 1;
            h3 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 15px;
                line-height: 120%;
                @media (max-width:1024px){
                    font-size: 28px;
                }
                span {
                    color: var(--coralred-color);
                }
            }
            h4 {
                color: var(--white-color);
                font-size: 22px;
                margin: 40px 0 15px;
            }
            ul {
                padding-left: 20px;
                margin-top: 20px;
                display: block;
                li {
                    color: var(--white-color);
                    font-size: 14px;
                    line-height: 22px;
                    margin-top: 15px;
                }
            }
        }
        .count {
            flex: 1;
            .topitem {
                width: 100%;
                border: 1px solid var(--coralred-color);
                background: #563241;
                padding: 30px;
                border-radius: 0 50px;
                @media (max-width:767px){
                    padding: 20px;
                }
                h2 {
                    color: var(--white-color);
                    font-size: 40px;
                    font-weight: 700;
                    margin-bottom: 15px;
                    @media (max-width:1024px){
                        font-size: 28px;
                    }
                }
            }
            .bottomitem {
                display: grid;
                grid-template-columns: 0.7fr 1fr;
                margin-top: 20px;
                gap: 20px;
                div {
                    flex: 1;
                    border: 1px solid var(--coralred-color);
                    background: #8E3B46;
                    border-radius: 0 50px;
                    padding: 30px;
                    @media (max-width:767px){
                        padding: 20px;
                    }
                    &:last-child {
                        background: #8E4C4E;
                    }
                    h2 {
                        color: var(--white-color);
                        font-size: 40px;
                        font-weight: 700;
                        margin-bottom: 15px;
                        @media (max-width:1024px){
                            font-size: 28px;
                        }
                    }
                }
            }
        }
    }
}
.partner{
    margin-top: 130px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    .box-1 {
        width:100%;
        overflow: hidden;
    }
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: zoom-in-zoom-out 30s ease-out infinite;
    }
    .inner {
       position: absolute;
        top: 50%;
        max-width: 768px;
        left: 50%;
        margin: auto;
        transform: translate(-50%, -50%);
         @media (max-width:767px){
            max-width: 768px;
            left: 0;
            right: 0;
            margin: auto;
            transform: none;
             top: 20%;
        }
        .content {
            h3 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 20px;
                line-height: 120%;
                text-align: center;
                @media (max-width:1025px){
                    font-size: 28px;
                }
            }
            p {
                text-align: center;
                font-size: 18px;
                line-height: 28px;
            }
            a {
                background: var(--coralred-color);
                font-size: 16px;
                font-weight: 700;
                text-decoration: none;
                width: 180px;
                display: flex;
                color: #FEFFFE;
                transition: all 0.3s;
                position: relative;
                border-radius: 100px;
                height: 50px;
                justify-content: center;
                align-items: center;
                text-transform: capitalize;
                margin: 30px auto 0;
                &:hover {
                    background: var(--solidpink-color);
                    color: #FEFFFE;
                    transition: all 0.3s;
                }
            }
        }
    }
}
@keyframes background-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.faq-section {
    margin-top: 130px;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    .inner {
        display: flex;
        gap: 20px;
        @media (max-width:767px){
            flex-direction: column;
        }
        .faq-left {
            flex: 1;
            h2 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 15px;
                line-height: 120%;
                @media (max-width:1024px){
                    font-size: 28px;
                }
                span {
                    color: var(--coralred-color);
                }
            }
        }
        .accordion {
            flex: 1;
        }
    }
}

.outclients {
    margin-top: 100px;
    @media (max-width:1024px){
        margin-top: 30px;
    }
    .inner{
        display: flex;
        gap: 50px;
        align-items: center;
        justify-content: center;
        background: var(--darkblue-color);
        border-radius: 15px;
        padding: 30px;
        @media (max-width:1025px){
            flex-direction: column;
            gap: 20px;
            padding: 20px;
            overflow: hidden;
            align-items: flex-start;
        }
        h2{
            color: var(--white-color);
            font-size: 40px;
            font-weight: 700;
            line-height: 120%;
            display: none;
            @media (max-width:1024px){
                font-size: 28px;
            }
            span {
                color: var(--coralred-color);
            }
        }
        .clients{
            flex:1;
            overflow: hidden;
            .marquee-inner{
                display: flex;
                gap: 10px;
            }
            img {
                width: 150px;
                height: 100px;
                object-fit: contain;
                filter: brightness(0) invert(1);
                transition: all 0.3s;
                /*&:hover {
                    filter: contrast(1000%);
                    transition: all 0.3s;
                }*/
            }
        }
    }
}
.about-contact {
    margin-top: 100px;
    position: relative;
     &:before {
        position: absolute;
        left: 0;
        top: 0%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-left: 500px solid var(--solidpink-color);
        border-bottom: 500px solid transparent;
        @media (max-width:1025px){
            display: none;
        }
    }
    @media (max-width:1024px){
        margin-top: 70px;
    }
    h2 {
        color: var(--white-color);
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 120%;
        text-align: center;
        @media (max-width:1024px){
            font-size: 28px;
            text-align: left;
        }
        span {
            color: var(--coralred-color);
        }
    }
    .inner {
        display: grid;
        grid-template-columns: 0.4fr 1fr;
        gap: 50px;
        margin-top: 75px;
        @media (min-width:768px) and (max-width:1025px){
            gap: 20px;
        }
        @media (max-width:767px){
            grid-template-columns: 1fr;
            margin-top: 30px;
            gap: 20px;
        }
        .address {
            display: flex;
            flex-direction: column;
            gap: 30px;
            @media (max-width:767px){
                order: 2;
                 gap: 10px;
            }
            .item {
                background: var(--darkblue-color);
                padding: 20px;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                min-height: 280px;
                border-radius: 15px;
                i {
                    color: var(--coralred-color);
                    font-size: 40px;
                }
                p{
                    text-align: center;
                }
                h3 {
                    color: var(--white-color);
                    font-size: 22px;
                    margin: 40px 0 15px;
                }
                .social-icons{
                    display: flex;
                    gap:20px;
                    i{
                        font-size: 30px;
                    }
                }
            }
        }
        .rightform {
            @media (max-width:767px){
                order: 1;
            }
            h2 {
                color: var(--white-color);
                font-size: 22px;
                margin: 0 0 15px;
                text-align: left;
            }
            form {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                .form-group {
                    &:nth-child(6) {
                        grid-column: span 2;
                    }
                    input,
                    textarea {
                        width: 100%;
                        height: 60px;
                        padding: 15px;
                        font-size: 16px;
                        border: 0;
                        border-radius: 5px;
                        font-family: "Funnel Display", sans-serif;
                        background: var(--darkblue-color);
                        padding: 10px;
                        border: 1px solid var(--coralred-color);
                        color: var(--white-color);
                    }
                    textarea {
                        height: 120px;
                        color: var(--white-color) !important;
                    }
                    &::placeholder {
                        color: #ccc;
                    }
                }
                input[type="submit"] {
                    background: var(--coralred-color);
                    font-size: 18px;
                    font-weight: 700;
                    text-decoration: none;
                    width: 100%;
                    display: flex;
                    color: #FEFFFE;
                    transition: all 0.3s;
                    position: relative;
                    border-radius: 100px;
                    height: 60px;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    text-transform: uppercase;
                    border: 0;
                    grid-column: span 2;
                    &:hover {
                        background: var(--solidpink-color);
                        color: #FEFFFE;
                        transition: all 0.3s;
                    }
                }
            }
            .map{
                margin-top:50px;
                iframe{
                    border-radius: 15px;
                }
            }
        }
    }
}
.whychoose-rudhira {
    position: relative;
    margin-top: 150px;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    &:before {
        position: absolute;
        left: 0;
        top: 0%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-left: 500px solid var(--solidpink-color);
        border-bottom: 500px solid transparent;
        @media (max-width:1025px){
            display: none;
        }
    }
    .Choose-rudhira {
        display: grid;
        grid-template-columns: 1fr 0.8fr;
        gap: 40px;
        margin-top: 130px;
        @media (max-width:1024px){
            margin-top: 70px;
            grid-template-columns: 1fr;
        }
        .content {
            h2 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 20px;
                line-height: 120%;
                @media (max-width:1024px){
                    font-size: 28px;
                }
                span {
                    color: var(--coralred-color);
                }
            }
            h3 {
                color: var(--white-color);
                font-size: 22px;
                margin: 40px 0 20px;
            }
            ul {
                padding-left: 20px;
                li {
                    color: var(--white-color);
                    font-size: 14px;
                    line-height: 22px;
                    margin-bottom: 20px;
                    p {
                        margin-top: 5px;
                    }
                }
            }
        }
        .image {
            position: relative;
            @media (max-width:767px){
               display: none;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
            }
        }
    }
}
.solutions-section {
    margin-top: 130px;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    .inner {
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        grid-gap: 30px;
        @media (max-width:1025px){
            grid-template-columns: 1fr;
        }
        .left {
            position: relative;
            height: 100%;
            &:after{
                background: url(../images/health.svg) no-repeat bottom right;
                background-size: contain;
                width: 250px;
                height: 250px;
                position: absolute;
                content: '';                
                right: -70px;
                z-index: 1;
                bottom: -10px;
                animation: animrotation 120s linear infinite;
                @media (max-width:1025px){
                    display: none;
                }
            }
            .sticky{
                position: sticky;
                top: 100px;
            }
            h2 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 15px;
                line-height: 120%;
                @media (max-width:1024px){
                    font-size: 28px;
                }
                span {
                    color: var(--coralred-color);
                }
            }
             h5 {
                color: var(--white-color);
                font-size: 20px;
                margin-top: 30px;
                line-height: 120%;
                span {
                    color: var(--coralred-color);
                }
            }
            ul {
                padding-left: 20px;
                margin-top: 20px;
                display: block;
                li {
                    color: var(--white-color);
                    font-size: 14px;
                    line-height: 22px;
                    margin-top: 15px;
                    width: 61%;
                }
            }
        }
        .solutions {
            background: var(--darkblue-color);
            padding: 40px;
            border-radius: 15px 0 0 15px;
            position: relative;
            @media (max-width:1024px){
                border-radius: 15px;
                padding: 20px;
            }
            &:after {
                width: 100%;
                background: var(--darkblue-color);
                height: 100%;
                position: absolute;
                right: -100%;
                content: '';
                top: 0;
                @media (max-width:1025px){
                    display: none;
                }
            }
            h2 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 30px;
                line-height: 120%;
                @media (max-width:1024px){
                    font-size: 28px;
                }
                span {
                    color: var(--coralred-color);
                }
            }
            .item {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-gap: 40px;
                border-bottom: 1px dotted var(--coralred-color);
                padding-bottom: 50px;
                margin-bottom: 50px;
                @media (max-width:767px){
                    grid-template-columns: 1fr;
                    grid-gap: 15px;
                }
                &:last-child {
                    border-bottom: 0;
                    margin-bottom: 0;
                }
                .content {
                    .heading {
                        display: flex;
                        gap: 10px;
                        align-items: center;
                        margin-bottom: 20px;
                        h3 {
                            color: var(--white-color);
                            font-size: 22px;
                            max-width: 190px;
                            @media (max-width:767px){
                                max-width: none;
                            }
                        }
                    }
                }
                .list {
                    ul {
                        padding-left: 20px;
                        margin-top: 0;
                        display: block;
                        li {
                            color: var(--white-color);
                            font-size: 14px;
                            line-height: 22px;
                            margin-top: 15px;
                        }
                    }
                }
            }
        }
    }
}
.solutions-carousel {
    margin-top: 130px;
    @media (max-width:1024px){
        margin-top: 70px;
    }
    h2 {
        color: var(--white-color);
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 60px;
        line-height: 120%;
        text-align: center;
        @media (min-width:768px) and (max-width:1024px){
            font-size: 28px;
        }
        @media (max-width:767px){
            font-size: 28px;
            text-align: left;
            margin-bottom: 30px;
        }
    }
    .item {
        .image {
            width: 100%;
            /*border-bottom: 1px solid var(--coralred-color);*/
            margin-bottom: 30px;
            position: relative;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                margin: 0 auto;
            }
        }
        .content {
            h3 {
                color: var(--white-color);
                font-size: 20px;
                margin-bottom: 20px;
                line-height: 150%;
                text-align: center;
            }
            p {
                text-align: center;
            }
        }
    }
    .owl-nav{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        gap: 20px;
        button{
            border: 1px solid var(--coralred-color) !important;
            width: 50px;
            height: 50px;
            border-radius: 5px;
            background: var(--darkblue-color);
            span{
                color: #FEFFFE;
                font-size: 32px;
                top: -3px;
                position: relative;
            }
            &:hover{
                background: var(--coralred-color);
                span{
                    color: #FEFFFE;
                }
            }
        }
    }
}
.news-section{
    width: 100%;
    margin-top: 70px;
    position: relative;
    &:before {
        position: absolute;
        right: 0;
        top: 0%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-right: 500px solid var(--solidpink-color);
        border-bottom: 500px solid transparent;
        @media (max-width:1025px){
            display: none;
        }
    }
    &:after {
        position: absolute;
        left: 0;
        bottom: 0%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-left: 500px solid var(--darkblue-color);
        border-bottom: 500px solid transparent;
        z-index: -1;
        @media (max-width:1025px){
            display: none;
        }
    }
    @media (max-width:1024px){
        margin-top: 30px;
    }
    .news-list{
        .news-item {
            border: 1px solid var(--solidpink-color);
            border-radius: 20px;
            padding: 30px;
            display: grid;
            grid-template-columns: 150px 1fr;
            align-items: center;
            margin-bottom: 20px;
            grid-gap:20px;
            background: #1E293B;
            position: sticky;
            top: 140px;
            @media (max-width:1024px){
               grid-template-columns: 1fr;
                top: 100px;
            }
            .date{
                color: var(--white-color);
                font-size: 14px;
                font-weight: 600;
                span{
                    color: var(--white-color);
                    font-size: 14px;
                    font-weight: 600;
                }
            }
            .content{
                a.title{
                    text-decoration: none;
                    color: var(--white-color);
                    font-size: 22px;
                    font-weight: 600;
                    margin-bottom: 15px;
                    display: block;
                    transition: all 0.3s;
                    &:hover{
                        color: var(--coralred-color);
                        transition: all 0.3s;
                    }
                }
                p{
                    margin-bottom: 15px;
                }
                .read-more{
                    color: var(--coralred-color);
                    transition: all 0.3s;
                    font-size: 14px;
                    &:hover{
                        text-decoration: none;
                    }
                }
            }
        }
    }
}
.news-details{
    margin-top: 70px;
    @media (max-width:1024px){
        margin-top: 50px;
    }
     &:before {
        position: absolute;
        right: 0;
        top: 0%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-right: 500px solid var(--solidpink-color);
        border-bottom: 500px solid transparent;
        @media (max-width:1025px){
            display: none;
        }
    }
    &:after {
        position: absolute;
        left: 0;
        bottom: 0%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-left: 500px solid var(--darkblue-color);
        border-bottom: 500px solid transparent;
        z-index: -1;
        @media (max-width:1025px){
            display: none;
        }
    }
    .main-wrapper{
        display: grid;
        grid-template-columns: 1fr 300px;
        grid-gap:30px;
        align-items: start;
         @media (max-width:1024px){
            grid-template-columns: 1fr;
        }
        .news-list{
            position: sticky;
            top: 120px;
            background: var(--darkblue-color);
            border-radius: 20px;
            padding:30px 20px;
             @media (max-width:1024px){
                position: static;
                top: 100px;
            }
            h3{
                color: var(--white-color);
                font-size: 22px;
                margin-bottom: 30px;
            }
            .item{
                margin-bottom: 20px;
                text-align: left;
                &:last-child{
                    margin-bottom: 0;
                }
                a{
                    color: #FEFFFE;
                    font-size: 16px;
                    font-weight: 400;
                    text-decoration: none;
                    text-align: left;
                    transition: all .3s;
                    &:hover{
                        color: var(--coralred-color);
                        transition: all .3s;
                    }
                }
            }
        }
        .details{
            .news-header{
                margin-bottom: 30px;
                .meta {
                    display: flex;
                    gap: 20px;
                    border-bottom: 1px solid var(--solidpink-color);
                    padding-bottom: 30px;
                    margin-bottom: 30px;
                    i{
                        color: var(--coralred-color);
                    }
                    span{
                        color: #FEFFFE;
                        font-size: 14px;
                        font-weight: 400;
                        display: flex;
                        gap: 7px;
                        align-items: center;
                    }
                }
                h1{
                    text-decoration: none;
                    color: var(--white-color);
                    font-size: 22px;
                    font-weight: 600;
                    transition: all 0.3s;
                    margin-bottom: 25px;
                    &:hover{
                        text-decoration: underline;
                        transition: all 0.3s;
                    }
                }
            }
            .content{
                h1{
                    color: var(--white-color);
                    font-size: 40px;
                    font-weight: 700;
                    margin-bottom: 20px;
                    line-height: 120%;
                }
                img{
                    width: 100%;
                    margin-bottom: 20px;
                }
                p{
                    margin: 0px 0px 20px;
                }
            }
        }
    }
}
.blog-section {
    margin-top: 70px;
    @media (max-width:1024px){
        margin-top: 50px;
    }
     &:before {
        position: absolute;
        right: 0;
        top: 0%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-right: 500px solid var(--solidpink-color);
        border-bottom: 500px solid transparent;
        @media (max-width:1025px){
            display: none;
        }
    }
    &:after {
        position: absolute;
        left: 0;
        bottom: 0%;
        width: 0;
        height: 0;
        content: '';
        border-top: 500px solid transparent;
        border-left: 500px solid var(--darkblue-color);
        border-bottom: 500px solid transparent;
        z-index: -1;
        @media (max-width:1025px){
            display: none;
        }
    }
    .main-wrapper {
        display: grid;
        grid-template-columns: 1fr 300px;
        grid-gap: 30px;
        align-items: start;
         @media (max-width:1024px){
            grid-template-columns: 1fr;
        }
    }
    .blogs-list {
        .news-item {
            border-bottom: 1px solid var(--solidpink-color);
            padding-bottom: 30px;
            margin-bottom: 40px;
            &:last-child {
                margin-bottom: 0;
            }
            .image {
                margin-bottom: 40px;
                position: relative;
                img {
                    border-radius: 20px;
                    width: 100%;
                }
                .date {
                    position: absolute;
                    top: 30px;
                    left: 30px;
                    display: flex;
                    flex-direction: column;
                    width: 100px;
                    display: none;
                    span {
                        background: var(--solidpink-color);
                        text-align: center;
                        border-radius: 5px;
                        padding: 10px;
                        color: #FEFFFE;
                        font-weight: 600;
                    }
                    span.month {
                        color: #000;
                        border-radius: 0 0 5px 5px;
                        background: var(--white-color);
                    }
                }
            }
            .content {
                .meta {
                    display: flex;
                    gap: 20px;
                    margin-bottom: 30px;
                    i {
                        color: var(--coralred-color);
                    }
                    span {
                        color: #FEFFFE;
                        font-size: 14px;
                        font-weight: 400;
                        display: flex;
                        gap: 7px;
                        align-items: center;
                    }
                }
                h2 {
                    text-decoration: none;
                    color: var(--white-color);
                    font-size: 22px;
                    font-weight: 600;
                    transition: all 0.3s;
                    margin-bottom: 20px;
                    a {
                        color: var(--white-color);
                        font-size: 22px;
                        font-weight: 600;
                        text-decoration: none;
                        transition: all 0.3s;
                        &:hover {
                            text-decoration: none;
                            color: var(--coralred-color);
                            transition: all 0.3s;
                        }
                    }
                }
                .read-more {
                    color: var(--coralred-color);
                    transition: all 0.3s;
                    font-size: 14px;
                    margin-top: 20px;
                    display: block;
                    &:hover {
                        text-decoration: none;
                    }
                }
            }
        }
    }
}
.Latestposts {
        position: sticky;
        top: 120px;
        background: var(--darkblue-color);
        border-radius: 20px;
        padding: 30px 20px;
        @media (max-width:1024px) {
            position: static;
        }
        h3 {
            color: var(--white-color);
            font-size: 22px;
            margin-bottom: 30px;
        }
        .item {
            margin-bottom: 25px;
            text-align: left;
            display: grid;
            grid-template-columns: 60px 1fr;
            gap: 12px;
            &:last-child {
                margin-bottom: 0;
            }
            .image {
                img {
                    width: 100%;
                    height: 100%;
                    border-radius: 5px;
                    object-fit: cover;
                }
            }
            .author {
                color: #FEFFFE;
                font-size: 14px;
                font-weight: 400;
                display: flex;
                gap: 7px;
                align-items: center;
                margin-bottom: 10px;
                i {
                    color: var(--coralred-color);
                }
            }
            a {
                color: #FEFFFE;
                font-size: 14px;
                font-weight: 400;
                text-decoration: none;
                text-align: left;
                transition: all 0.3s;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                &:hover {
                    color: var(--coralred-color);
                    transition: all 0.3s;
                }
            }
        }
    }
.fullcontent-section{
    margin-top: 70px;
    h2, h3, h4{
        color: var(--white-color);
        margin-bottom: 15px;
    }
    h2{
        color: var(--white-color);
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 120%;
        @media(max-width:1024px){
            font-size: 28px;
        }
    }
    p{
        margin-bottom: 10px;
    }
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    opacity: 0;
    z-index: 9999;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    max-width: 600px;
    width: 100%;
    border-radius: 0.5rem;
    @media (max-width:1024px) {
        left: 0;
        width: 90%;
        right: 0;
        top: 10%;
        transform: none;
        margin: auto;
    }
    @media (max-width:767px) {
         top: 5%;
    }
}
.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    color: var(--coralred-color);
    font-size: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
}
.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.modal.appointment-modal {
    .modal-content {
        background: var(--darkblue-color);
        border: 3px solid var(--white-color);
        padding: 50px 40px;
        @media (max-width:1024px) {
            padding: 30px 20px;
        }
        .modal-body {
            h2 {
                color: var(--white-color);
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 15px;
                line-height: 120%;
                @media (max-width:1024px) {
                    font-size: 28px;
                }
            }
            p {
                color: var(--white-color);
                font-size: 14px;
                line-height: 24px;
            }
            form {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 30px;
                @media (max-width:767px) {
                    display: block;
                }
                .form-group {
                    @media (max-width:767px) {
                        margin-bottom:12px;
                    }
                    &:nth-child(6) {
                        grid-column: span 2;
                        @media (max-width:767px) {
                            grid-column: none;
                        }
                    }
                    input,
                    textarea {
                        width: 100%;
                        height: 60px;
                        padding: 15px;
                        font-size: 16px;
                        border: 0;
                        border-radius: 5px;
                        font-family: "Funnel Display", sans-serif;
                        background: var(--darkblue-color);
                        padding: 10px;
                        border: 1px solid var(--coralred-color);
                        color: var(--white-color);
                    }
                    textarea {
                        height: 120px;
                        color: var(--white-color) !important;
                    }
                    &::placeholder {
                        color: #ccc;
                    }
                }
                input[type="submit"] {
                    background: var(--coralred-color);
                    font-size: 18px;
                    font-weight: 700;
                    text-decoration: none;
                    width: 100%;
                    display: flex;
                    color: #FEFFFE;
                    transition: all 0.3s;
                    position: relative;
                    border-radius: 100px;
                    height: 60px;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    text-transform: uppercase;
                    border: 0;
                    grid-column: span 2;
                    &:hover {
                        background: var(--solidpink-color);
                        color: #FEFFFE;
                        transition: all 0.3s;
                    }
                }
            }
        }
    }
}

.mobile, .mobileshow {
    display: none;
}
@media (max-width:767px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
}

@media (max-width:991px) {
    .mobileshow{
        display: block;
    }
}
.wpcf7-spinner {
    display: none !important;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    position: absolute;
    bottom: 0px !important;
    text-align: left;
    font-size: 12px;
    border: 0px;
    color: #FEFFFE;
}
.wpcf7-not-valid-tip{
    font-size: 12px !important;
}

.blogs-list{
    .page-numbers{
        color: #FEFFFE;
        text-decoration: none;
        margin-right: 15px;
    }
    .page-numbers.current{
        color: var(--coralred-color);
    }
}