@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&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;
}
@keyframes mymove {
   0% {
        position: absolute;
        right: 7px;
    }
    50% {
        position: absolute;
        right: 3px;
    }
    100% {
        position: absolute;
        right: 7px;
    }
}
a, img {
	border: 0px;
	outline: 0px;
}
html {
	height: 100%;
	width: 100%;
}
body {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
	font-family: "Instrument Sans", sans-serif;
  	font-weight: 400;
  	font-style: normal;
}
.main_fluid{
	width: 100%;
	display: block;
}
.main-wrapper{
	max-width: 1260px;
	position: relative;
	margin: auto;
    padding: 0px 15px;
}
.header.innerpage-header{
    background: #fff;
}
.header {
    top: 0;
    z-index: 11;
    position:fixed;
    padding:25px 0px;
    background: #fff;
    box-shadow: 0px -1px 14px 2px rgba(0, 0, 0, 0.08);
    @media(min-width:768px) and (max-width:991px){
        padding: 12px 0px 15px;
    }
    @media(max-width:991px) {
        padding: 15px 0px 15px;
    }
    .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        .logo{
            @media(max-width:1024px) {
                margin-right: auto;
            }
            @media(max-width:767px) {
                img{
                    width: 270px;
                }
            }
        }
        .menu {
            @media(max-width:1024px){
                display: none;
            }
            ul {
                list-style-type: none;
                display: flex;
                grid-gap: 45px;
                li {
                    a {
                        text-decoration: none;
                        color: #212B5C;
                        font-size: 16px;
                        font-weight: 500;
                        transition: all 0.3s;
                        &:hover {
                            color: #FF5956;
                            transition: all 0.3s;
                        }
                    }
                }
                li.active a{
                    color: #FF5956;
                }
            }
        }
        .book-appointment a {
            background: #EDFFFD;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            padding: 15px 35px 15px 15px;
            color: #212B5C;
            transition: all 0.3s;
            position:relative;
            border-radius:100px;
            border: 1px solid #aed3cf;
            @media(max-width:767px) {
                padding: 10px 25px 10px 10px;
                display: none;
            }
            &:after{
            	transition: all .5s;
                background: url(../images/btn-arrow.svg) no-repeat;
                content: '';
                width: 20px;
                height: 20px;
                position: absolute;
                top: 17px;
                bottom: 0;
                right: 7px;
                @media(max-width:767px) {
                    background-size: 15px;
                    top: 13px;
                    width: 15px;
                    height: 15px;
                }
            }
            &:hover {
                background: #FF5956;
                color: #fff;
                transition: all 0.3s;
                &:after{
                    filter: brightness(0) invert(1);
                    animation: mymove 600ms ease;
                    animation-iteration-count: infinite;
                }
            }
        }
    }
}
.header.fixed-header{
    background: #fff;
    border-bottom: 1px solid #e2e2e2;
    .book-appointment a {
        background: #FF5956;
        color: #fff;
        transition: all 0.3s;
        border: 1px solid #FF5956;
        &:after{
            filter: brightness(0) invert(1);
            animation: mymove 600ms ease;
            animation-iteration-count: infinite;
        }
    }
}
.hero-banner {
    background: url(../images/bannerbg.png) no-repeat;
    background-size:cover;
    background-position: left;
    padding-top: 150px;
    margin-top: 85px;
    @media(max-width:991px) {
        padding-top: 65px;
        padding-bottom: 30px;
    }
    @media(max-width:767px) {
        margin-top: 15px;
    }
    .item {
        position: relative;
        display:flex;
        justify-content: center;
        align-items: center;
        max-width: 1290px;
        margin: auto;
        padding: 0px 15px;
        @media(max-width:991px){
            flex-direction: column-reverse;
            grid-gap: 50px;
        }
        img{
            max-width: 700px;
            width: 100%;
            @media(max-width:991px){
                max-width: fit-content;
                width: 100%;
                background: #125873;
            }
            @media(min-width:992px) and (max-width:1200px){
                max-width: 510px;
            }
        }
        .banner-content {
            top: 25%;
            max-width: 580px;
            width: 100%;
            left: min( calc(100vw - 580px), 7% );
            @media(max-width:991px){
                max-width: fit-content;
            }
            span{
                color: #FF5956;
                font-size: 20px;
                margin-bottom: 15px;
                display: block;
                position:relative;
                &:after{
                    width: 48px;
                    height: 2px;
                    background: #20D0CE;
                    position: absolute;
                    top: -13px;
                    left:0px;
                    content: '';
                }
            }
            h1 {
                color: #125873;
                font-size: 28px;
                margin-bottom: 20px;
            }
            p {
                color: #125873;
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 20px;
                display: block;
            }
        }
    }
    .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        button {
            border: 1px solid #fff !important;
            width: 50px;
            height: 50px;
            display: table;
            left: 15px;
            border-radius: 100px;
            position: absolute;
            transition: all 0.3s;
            &:hover {
                background: #FFAF2E;
                transition: all 0.3s;
            }
            span {
                color: #fff;
                font-size: 52px;
                line-height: 20px;
            }
        }
        button.owl-next {
            left: auto;
            right: 15px;
            position: absolute;
        }
    }
}
a.arrowbtn{
    background: #FF5956;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 35px 12px 20px;
    color: #ffffff;
    transition: all 0.3s;
    position: relative;
    margin-top: 20px;
    display: table;
    border-radius:100px;
     @media (max-width:1024px){
        font-size: 14px;
     }
    &:after{
        transition: all .5s;
        background: url(../images/btn-arrow.svg) no-repeat;
        content: '';
        width: 20px;
        height: 20px;
        position: absolute;
        top: 15px;
        bottom: 0;
        right: 8px;
        filter: brightness(0) invert(1);
    }
    &:hover {
        background: #125873;
        color: #fff;
        transition: all 0.3s;
        &:after{
            animation: mymove 600ms ease;
            animation-iteration-count: infinite;
        }
    }
}
.hospital-profile{
    max-width: 1260px;
    position: relative;
    margin: auto;
}

.hospital-profile {
    display: flex;
    top: -50px;
    position: relative;
    z-index: 2;
    @media(min-width:768px) and (max-width:991px){
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    @media(min-width:768px) and (max-width:1200px){
        top: -10px;
    }
     @media (max-width:768px){
        flex-direction: column;
        top: 0px;
     }
    div.item {
        flex: 1;
        padding: 20px;
        @media (max-width:1024px){
            padding: 15px;
        }
        h2 {
            color: #fff;
            max-width: 172px;
            margin-bottom: 20px;
            font-size: 24px;
        }
        p {
            color: #fff;
            font-size: 14px;
            line-height: 24px;

        }
        h5 {
            color: #fff;
            font-size: 20px;
            margin-top: 10px;
        }
        ul {
            padding: 0;
            list-style-type: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 10px;
            grid-row-gap: 20px;
            margin-top: 30px;
            li {
                color: #fff;
                font-size: 14px;
                padding-left: 20px;
                position: relative;
                &:after {
                    transition: all 0.5s;
                    background: url("../images/btn-arrow.svg") no-repeat;
                    content: '';
                    width: 20px;
                    height: 20px;
                    position: absolute;
                    top: 4px;
                    bottom: 0;
                    left: 0;
                    filter:brightness(0) invert(1);
                    background-size: 60%;
                }
                a{
                    color: #fff;
                    text-decoration: none;
                    &:hover{
                        text-decoration: none;
                    }
                }
            }
        }
        .timings {
            margin-top: 30px;
            p {
                margin-bottom: 20px;
                &:last-child{
                    margin-bottom: 0px;
                }
            }
        }
    }
}


.hm_about {
    .inner {
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        grid-gap: 50px;
        margin-top:65px;
        @media(min-width:768px) and (max-width:991px){
            grid-gap: 20px;
            margin-top:20px;
            grid-template-columns: auto;
        }
        @media (max-width:767px){
            display: block;
            margin-top:20px;
        }
        .left-about,
        .about-right {
            flex: 1;
        }
        .left-about{
            @media (max-width:767px){
                margin-bottom:20px;
            }
        }
        .left-about img{
            width: 100%;
            margin-top: 20px;
        }
        .about-right {
            a.arrowbtn{
                margin-top: 0px;
            }
            p{
                color: #000000;
                font-size: 14px;
                line-height: 28px;
            }
            ul.list-items {
                list-style-type: none;
                margin-top: 20px;
                display:table;
                li {
                    margin-bottom: 15px;
                    color: #000000;
                    font-size: 14px;
                    line-height: 28px;
                    position: relative;
                    padding-left: 30px;
                    padding-bottom: 10px;
                    @media (max-width:767px){
                        margin-bottom:10px;
                    }
                    &:before{
                        background: url("../images/check-circle.png") no-repeat;
                        content: '';
                        width: 20px;
                        height: 20px;
                        position: absolute;
                        top: 4px;
                        left: 0px;
                    }
                }
            }
            .experience {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-around;
                background: #EDFFFD;
                padding: 20px;
                grid-gap: 15px;
                margin-top: 30px;
                @media (max-width:1024px){
                    padding: 10px;
                }
                .item {
                    text-align: center;
                    position: relative;
                    &:last-child {
                        &:after {
                            display: none;
                        }
                    }
                    &:after {
                        position: absolute;
                        right: -50px;
                        top: 0;
                        width: 1px;
                        height: 100%;
                        background: #125873;
                        content: '';
                        @media(min-width:768px) and (max-width:991px){
                            right: -30px;
                        }
                        @media (max-width:767px){
                            display: none;
                        }
                    }
                    p {
                        color: #212B5C;
                        font-size: 15px;
                        font-weight: 700;
                    }
                    span {
                        color: #008d8b;
                        font-size: 44px;
                        @media (max-width:1024px){
                            font-size: 28px;
                        }
                    }
                }
            }
        }
    }
}
.line-heading {
    h4 {
        font-size: 22px;
        position: relative;
        color: #FF5956;
        margin-bottom: 15px;
        text-align:center;
        padding-top:15px;
        @media(max-width:767px) {
            font-size: 18px;
        }
        &:after {
            width: 50px;
            height: 2px;
            background: #20D0CE;
            top: 0;
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            margin: auto;
        }
    }
    h2 {
        font-size: 38px;
        color: #212B5C;
        font-weight: 700;
        text-align:center;
        @media(max-width:767px) {
            font-size: 28px;
        }
    }
}
.services-section, .our-team, .blog-section{
    .arrowbtn{
        display: table;
        margin: 0px auto 0px;
    }
}
.services-section{
    padding:65px 0px 100px;
    margin-top: 100px;
    background:#EDFFFD;
    @media(max-width:767px) {
        padding:50px 0px;
        margin-top: 50px;
    }
    .services-items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: 50px 0px 0px;
        grid-gap:30px;
        @media(min-width:768px) and (max-width:1024px){
            grid-gap:15px;
            grid-template-columns: repeat(2, 1fr);
        }
        @media (max-width:767px){
            grid-template-columns: auto;
         }
        .item {
            border: 1px solid #20D0CE;
            margin: -1px;
            padding: 30px;
            transition: all 0.3s;
            position: relative;
            border-radius: 20px;
            @media (max-width:1024px){
                padding: 15px;
            }
            &:hover {
                background: #20D0CE;
                transition: all 0.3s;
                box-shadow: inset 0 0 7px 1px rgba(59, 90, 136, 0.1);
                .icon{
                    transition: all 0.3s;

                }
                h2, p, a{
                    color: #fff;
                    transition: all 0.3s;
                    text-decoration: none;
                }
                p {
                    border-top: 1px solid #fff;
                }
                img{
                    filter: brightness(0) invert(1);
                }
                .link-icon{
                    a {
                        filter: brightness(0) invert(1);
                    }
                }
            }
            a.title {
                color: #125873;
                font-size: 24px;
                margin-bottom: 15px;
                transition: all 0.3s;
                font-weight: 700;
                display: block;
                @media (max-width:767px){
                    max-width: fit-content;
                }
                &:hover{
                    text-decoration: none;
                }
            }
            p {
                color: #343D48;
                font-size: 14px;
                line-height: 26px;
                margin-bottom: 15px;
                transition: all 0.3s;
                border-top: 1px solid #125873;
                padding-top: 20px;
            }
            a {
                color: #FFAF2E;
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                }
            }
            .link-icon {
                display: flex;
                justify-content: space-between;
                margin-top: 20px;
                align-items: center;
                .icon {
                    width: 75px;
                    height: 75px;
                    text-align: center;
                    display: flex;
                    align-self: center;
                    justify-content: center;
                    padding:10px;
                    img{
                        width: auto;
                    }
                }
                a {
                    width: 36px;
                    height: 36px;
                    border-radius: 100px;
                    overflow: hidden;
                    text-indent: -1000px;
                    position: relative;
                    background: url("../images/service-arrow.png") no-repeat;
                }
            }
        }
    }
}

.emergency-section{
    background: url(../images/emergenciebg.png) no-repeat;
    padding-top: 60px;
    background-position:top;
    background-size: contain;
    @media (max-width:1024px){
        padding-top: 20px;
    }
    .emergency-number{
        position: absolute;
        bottom: 75px;
        top: auto;
        @media(max-width:767px) {
            position: relative;
            bottom: 0px;
        }
        h4{
            color: #9E2B2A;
            font-size: 34px;
            font-weight: 400;
            margin-bottom: 15px;
            @media(max-width:767px) {
                font-size: 22px;
                margin-bottom: 10px;
            }
        }
        h1{
            color: #125873;
            font-size: 50px;
            font-weight: 700;
            @media (max-width:1024px){
                font-size: 42px;
            }
            @media(max-width:767px) {
                font-size: 28px;
            }
        }
    }
    .form {
        background: #125873;
        padding: 25px;
        max-width: 520px;
        width: 100%;
        margin-left: auto;
        border-radius: 20px;
        @media(min-width:768px) and (max-width:1024px){
            max-width: 350px;
            padding: 15px;
        }
        @media(max-width:767px) {
            margin-top: 25px;
            max-width: none;
            width: 100%;
        }
        form {
            display: block;
            margin-top:50px;
            @media (max-width:1024px){
                margin-top:20px;
            }
            .field {
                margin-bottom:20px;
                &:last-child{
                    margin-bottom: 0px;
                }
                label {
                    color: #fff;
                    font-size: 16px;
                    display: block;
                    width: 100%;
                    margin-bottom: 0px;
                    @media (max-width:1024px){
                        margin-bottom: 0px;
                        font-size: 14px;
                    }
                }
                input,
                select {
                    width: 100%;
                    height: 40px;
                    background: transparent;
                    border: 0px;
                    border-bottom: 1px solid #7eb7cd;
                    padding: 10px 0px;
                    color: #F3F6F7;
                    font-family: "Philosopher", sans-serif;
                    @media (max-width:1024px){
                        padding: 7px 0px;
                        height: 35px;
                    }
                    &:focus-visible {
                        outline: none;
                    }
                    &::placeholder {
                        color: #81a8b5;
                    }
                }
                input::-webkit-calendar-picker-indicator {
                    filter: invert(1);
                }
                select option{
                    color: #81a8b5;
                }
                button {
                    width: 100%;
                    height: 55px;
                    background: #FF5956;
                    border: 1px solid #FF5956;
                    font-size: 16px;
                    color: #fff;
                    font-family: "Philosopher", sans-serif;
                    text-transform: uppercase;
                    font-weight: 700;
                    cursor: pointer;
                    transition: all 0.3s;
                    margin-top:30px;
                    border-radius:100px;
                    @media (max-width:1024px){
                        margin-top:0px;
                        height: 45px;
                        font-size: 14px;
                    }
                    &:hover {
                        color: #fff;
                        background: #FF5956;
                        transition: all 0.3s;
                    }
                }
            }
        }
    }
}

.testimonials-section {
    padding: 100px 0;
    @media(max-width:767px) {
        padding: 50px 0;
    }
    .inner {
        margin-top: 50px;
        .item {
            padding: 10px;
            .testimonials-item {
                box-shadow: 0 0 7px 1px rgba(59, 90, 136, 0.1);
                padding: 30px 30px 30px;
                border:1px solid #20D0CE;
                min-height: 240px;
                @media (max-width:1024px){
                    padding: 15px;
                }
                @media (max-width:767px){
                    min-height: auto;
                }
                .top {
                    display: flex;
                    align-items: center;
                    grid-gap: 20px;
                    margin-bottom: 20px;
                    .image {
                        width: 75px;
                        height: 75px;
                        border-radius: 100px;
                        overflow: hidden;
                    }
                    .info {
                        h4 {
                            font-size: 20px;
                            color: #0F0D1D;
                            margin-bottom: 7px;
                        }
                        span {
                            color: #585858;
                            font-size: 16px;
                        }
                    }
                }
                p {
                    color: #504E4E;
                    line-height: 28px;
                    font-size: 16px;
                }
            }
        }
    }
    .owl-nav {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        grid-gap: 10px;
        margin-top: 20px;
        button {
            border: 1px solid #20D0CE !important;
            width: 43px;
            height: 43px;
            display: table;
            transition: all 0.3s;
            &:hover {
                border: 1px solid #FF5956 !important;
                background: #FF5956;
                transition: all 0.3s;
                span{
                    color: #fff;
                     transition: all 0.3s;
                }
            }
            span {
                color: #20D0CE;
                font-size: 52px;
                line-height: 26px;
                 transition: all 0.3s;
            }
        }
    }
}
.blog-section {
    .blogitems {
        margin: 50px 0px;
        display: flex;
        grid-gap: 40px;
        @media (max-width:1024px){
            grid-gap: 15px;
        }
        @media (max-width:767px){
            flex-direction: column;
        }
        .item {
            width: 100%;
            .image {
                width: 100%;
                display: block;
                img {
                    width: 100%;
                }
            }
            .info {
                padding: 20px;
                background: #F9FBFD;
                min-height: 202px;
                @media (max-width:1024px){
                    padding: 10px;
                }
                @media (max-width:767px){
                    min-height: auto;
                }
                ul {
                    display: flex;
                    list-style-type: none;
                    grid-gap: 30px;
                    margin-bottom: 20px;
                    li {
                        font-size: 14px;
                        color: #737373;
                        position: relative;
                        &:after {
                            content: ".";
                            color: #FF5956;
                            font-size: 50px;
                            line-height: 0;
                            position: absolute;
                            right: -22px;
                            top: -7px;
                        }
                        &:last-child {
                            &:after {
                                display: none;
                            }
                        }
                    }
                }
                a {
                    color: #0F0D1D;
                    font-size: 22px;
                    line-height: 140%;
                    text-decoration: none;
                    transition: all 0.3s;
                    @media (max-width:1024px){
                         font-size: 16px;
                    }
                    &:hover {
                        color: #FF5956;
                        transition: all 0.3s;
                    }
                }
            }
        }
    }
}
.footer-section {
    background: #125873;
    padding-top: 0;
    margin-top: 100px;
    .footer {
        display: grid;
        width: 100%;
        grid-gap: 50px;
        padding-top:70px;
        grid-template-columns: 1fr 200px;
        @media (max-width:1024px){
            grid-gap: 20px;
        }
        @media (max-width:767px){
            display: block;
            padding-top: 40px;
        }
        .left-section {
            .address-info{
                margin-bottom: 30px;
                p{
                    color: #e7e7e7;
                }
                h3{
                    color: #fff;
                    margin-bottom: 10px;
                }
            }
            .address-list{
                display:grid;
                grid-template-columns:repeat(2, 1fr);
                grid-gap: 50px;
                @media (max-width:767px){
                    grid-gap: 20px;
                }
                @media (max-width:550px){
                   grid-template-columns:auto;
                }
            }
            p {
                font-size: 14px;
                color: #fff;
                line-height: 24px;
            }
            .footer-contact {
                .item {
                    h3{
                        color: #fff;
                        margin-bottom: 10px;
                    }
                    p {
                        margin-bottom: 10px;
                        color:#e7e7e7;
                        &:last-child {
                            margin-bottom: 0;
                        }
                    }
                    ul {
                        list-style-type: none;
                        display: flex;
                        grid-gap: 15px;
                        position: relative;
                        li {
                            a {
                                color: #fff;
                                transition: all 0.3s;
                                &:hover {
                                    color: #FF5956;
                                    transition: all 0.3s;
                                }
                            }
                        }
                    }
                }
            }
        }
        .right-section {
            flex:1;
            .footer-menu {
                h3 {
                    font-size: 20px;
                    color: #fff;
                    margin-bottom: 30px;
                }
                ul {
                    list-style-type: none;
                    display: flex;
                    flex-wrap: wrap;
                    grid-column-gap: 15px;
                    margin-bottom: 20px;
                    li {
                        margin-bottom: 15px;
                        a {
                            color: #fff;
                            text-decoration: none;
                            font-size: 14px;
                            &:hover {
                                color: #FF5956;
                                transition: all 0.3s;
                            }
                        }
                    }
                }
                .footer-menulinks{
                    display: block;
                }
                ul.footer-social {
                    grid-gap: 30px;
                    @media (max-width:767px){
                        margin-bottom: 0px;
                    }
                    li {
                        a {
                            font-size: 20px;
                        }
                    }
                }
            }
        }
    }
    .copyright {
        border-top: 1px solid #0f7ba5;
        margin-top: 30px;
        p {
            color: #fff;
            font-size: 12px;
            text-align: center;
            padding: 20px 0;
        }
    }
}
.innerbanner{
    position: relative;
    margin-bottom:50px;
    margin-top:85px;
    @media (max-width:767px){
        margin-top: 60px;
    }
    img{
        width: 100%;
    }
    .banner-content{
        position: absolute;
        top: 40%;
        left: 0px;
        right: 0px;
        margin: auto;
        text-align: center;
        @media (max-width:767px){
             top: 16%;
        }
        h1{
            color: #fff;
            font-size: 48px;
            @media (max-width:1024px){
                font-size: 28px;
            }
        }
    } 
}
.about-section {
    margin-bottom: 75px;
    @media (max-width:767px){
        margin-bottom: 50px;
    }
    .inner-about {
        display: flex;
        grid-gap: 30px;
        margin-top: 50px;
         @media (max-width:1024px){
            flex-direction: column;
         }
        .info {
            flex: 1;
            h2 {
                font-size: 42px;
                color: #212B5C;
                font-weight: 400;
                margin-bottom: 20px;
                @media (max-width:1024px){
                    font-size: 28px;
                }
            }
            p {
                color: #000000;
                font-size: 16px;
                line-height: 26px;
            }
            ul {
                list-style-type: none;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-gap: 30px;
                margin-top: 25px;
                @media (max-width:1024px){
                    grid-gap: 20px;
                }
                @media (max-width:767px){
                    grid-template-columns: auto;
                }
                li {
                    color: #000000;
                    font-size: 16px;
                    line-height: 26px;
                    position: relative;
                    padding-left: 60px;
                    &:before {
                        width: 40px;
                        height: 40px;
                        background: #ffe4e4;
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 0;
                        border-radius: 100%;
                    }
                    &:after {
                        position: absolute;
                        left: 15px;
                        top: 10px;
                        content: '';
                        width: 10px;
                        height: 18px;
                        border: solid #FF5956;
                        border-width: 0 3px 3px 0;
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }
                }
            }
        }
        .image {
            flex: 1;
            img {
                width: 100%;
            }
        }
    }
}
.ourstory-section {
    margin-bottom: 75px;
    @media (max-width:767px){
        margin-bottom: 50px;
    }
    .vision-mission {
        display: flex;
        grid-gap: 30px;
        margin-top: 50px;
        @media (max-width:1024px){
            flex-direction: column-reverse;
            margin-top: 0px;
        }
        .image {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(1, 1fr);
            grid-column-gap: 20px;
            grid-row-gap: 20px;
            flex: 1;
            .div1 {
                grid-area: 1 / 1 / 3;
            }
            .div2 {
                grid-area: 1 / 2 / 2;
            }
            .div3 {
                grid-area: 2 / 2 / 3;
            }
            img {
                width: 100%;
            }
        }
        .right-info {
            flex: 1;
            h2 {
                font-size: 42px;
                color: #212B5C;
                font-weight: 400;
                margin-bottom: 20px;
                @media (max-width:1024px){
                    font-size: 28px;
                }
            }
            p {
                color: #000000;
                font-size: 16px;
                line-height: 26px;
            }
            ul {
                list-style-type: none;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-gap: 30px;
                margin-top: 25px;
                @media (max-width:1024px){
                    grid-gap: 20px;
                }
                @media (max-width:767px){
                    grid-template-columns: auto;
                }
                li {
                    color: #000000;
                    font-size: 16px;
                    line-height: 26px;
                    position: relative;
                    padding-left: 60px;
                    &:before {
                        width: 40px;
                        height: 40px;
                        background: #ffe4e4;
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 0;
                        border-radius: 100%;
                    }
                    &:after {
                        position: absolute;
                        left: 15px;
                        top: 10px;
                        content: '';
                        width: 10px;
                        height: 18px;
                        border: solid #FF5956;
                        border-width: 0 3px 3px 0;
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }
                }
            }
        }
    }
}


.service-info {
    margin: 30px 0 100px;
    .left-details {
        color: #000000;
        font-size: 16px;
        line-height: 26px;
        display: inline-block;
        img {
            width: 100%;
        }
        h2 {
            font-size: 42px;
            color: #212B5C;
            font-weight: 400;
            margin-bottom: 20px;
            margin-bottom: 40px;
            display: block;
            @media (max-width:767px){
                line-height: 38px;
                font-size: 28px;
                margin-bottom: 18px;
            }
        }
        h5 {
            font-size: 18px;
            color: #0F2137;
            margin: 15px 0;
        }
        p {

            color: #000000;
            font-size: 16px;
            line-height: 28px;
            display: inline-block;
            a{
                color: #FF5956;
                &:hover{
                    text-decoration: none;
                }
            }
        }
        h3 {
            margin-bottom: 10px;
        }
        ul {
            padding-left: 20px;
            margin-top: 20px;
            li {
                margin-bottom: 15px;
                 a{
                    color: #FF5956;
                    &:hover{
                        text-decoration: none;
                    }
                }
                ol {
                    padding-left: 40px;
                    margin: 20px 0;
                }
            }
        }
    }
}
.gallery-section{
    margin-bottom: 100px;
    ul{
        margin-top: 50px;
        list-style-type: none;
         display: grid;
          grid-template-columns: repeat(auto-fit, minmax(18.5rem, 1fr));
          grid-auto-rows: 12.5rem;
          grid-auto-flow: dense;
          gap: 15px;
          margin-bottom:75px;
          &:last-child{
            margin-bottom: 0px;
          }
        li{
            
            img{
              inline-size: 100%;
              block-size: 100%;
              object-fit: cover;
            }
        }
    }
}
.img-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 990;
}
.img-popup img {
  max-width: 900px;
  width: 100%;
  opacity: 0;
  transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
}
.close-btn {
  width: 35px;
  height: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.close-btn .bar {
  height: 4px;
  background: #fff;
}
.close-btn .bar:nth-child(1) {
  transform: rotate(45deg);
}
.close-btn .bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}
.opened {
 display: flex;
}
.opened img {
  animation: animatepopup 1s ease-in-out .8s;
  -webkit-animation: animatepopup .3s ease-in-out forwards;
}
@keyframes animatepopup {
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

}
@media screen and (max-width: 880px) {

  .container .container__img-holder:nth-child(3n+1) {
    margin-left: 16px;
  }

}
.blog {
    margin: 75px 0px 100px;
    @media (max-width:1024px){
        margin: 50px 0px 50px;
    }
    .blog-item {
        display: grid;
        grid-template-columns: 480px 1fr;
        align-items: center;
        grid-gap: 30px;
        margin: 0 0 50px;
        @media (max-width:1024px){
            grid-template-columns: auto;
        }
        .image {
            img {
                width: 100%;
            }
        }
        .info {
            h5 {
                font-weight: 700;
                font-size: 20px;
                color: #FF5956;
                margin-bottom: 20px;
                @media (max-width:1024px){
                    font-size: 16px;
                }
            }
            a {
                color: #212B5C;
                font-size: 36px;
                margin-bottom: 20px;
                text-decoration: none;
                display: block;
                transition: all .3s;
                @media (max-width:1024px){
                    font-size: 28px;
                }
            }
            p {
                color: #000000;
                font-size: 16px;
                line-height: 26px;
            }
        }
    }
}
.blog-details{
    .line-heading{
        h4, h2{
            text-align: left;
            &:after{
                right:auto;
            }
        }
    }
}
.blog-details-info{
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    margin: 30px 0px 100px;
    img{
        width: 100%;
    }
    h3{
        margin-bottom: 10px;
    }
    ul{
        padding-left: 20px;
        margin-top: 10px;
        li{
            margin-bottom: 5px;
        }
    }
}
.contact-address {
    margin: 70px 0;
    display: flex;
    grid-gap: 30px;
    .address {
        width: 100%;
        margin-bottom: 30px;
        box-shadow:0 0 7px 1px rgba(59, 90, 136, 0.1);
        .addressinfo {
            flex: 1;
            padding:15px 20px;
            h4 {
                font-size: 32px;
                color: #00529A;
                font-weight: 400;
                margin-bottom: 20px;
            }
            ul {
                list-style-type: none;
                li {
                    margin-bottom: 15px;
                    color: #000000;
                    font-size: 16px;
                    line-height: 26px;
                    i {
                        margin-right: 12px;
                        color: #FFAF2E;
                        font-size: 20px;
                    }
                }
            }
        }
        .map {
            flex: 1;
        }
    }
}
.popup {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 9999;
    .popup__content {
        max-width: 920px;
        overflow: auto;
        padding: 30px 30px 0px;
        background: white;
        color: black;
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-sizing: border-box;
        border-radius: 10px;
        @media (max-width:767px){
            padding: 15px;
        }
        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            width: 20px;
            display: block;
            span {
                cursor: pointer;
                position: fixed;
                width: 20px;
                height: 3px;
                background: #212B5C;
                &:nth-child(1) {
                    transform: rotate(45deg);
                }
                &:nth-child(2) {
                    transform: rotate(135deg);
                }
            }
        }
        .appointment-section {
            display: flex;
            grid-gap: 20px;
            .image {
                flex: 1;
                display:none;
                img {
                    width: 100%;
                }
            }
            .formsection {
                flex: 1;
                width: 100%;
                text-align: left;
                h2 {
                    font-size: 28px;
                    margin-bottom: 30px;
                    color: #00529A;
                }
                form{
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    grid-gap: 10px;
                }
                .field {
                    margin-bottom: 15px;
                    flex: 0 0 48.5%;
                    @media (min-width:992px) and (max-width:1120px){
                        flex: 0 0 46%;
                    }
                    @media (min-width:768px) and (max-width:991px){
                        flex: 0 0 45%;
                    }
                    @media (max-width:767px){
                        flex: 0 0 47%;
                        margin-bottom: 0px;
                    }
                    &:last-child {
                        flex-basis: 100%;
                    }
                    label {
                        color: #000;
                        font-size: 14px;
                        display: block;
                        width: 100%;
                        margin-bottom: 7px;
                        @media (max-width:767px){
                            font-size: 12px;
                            margin-bottom: 5px;
                        }
                    }
                    input,
                    select {
                        width: 100%;
                        height: 50px;
                        background: transparent;
                        border: 1px solid #D5D0E4;
                        padding: 15px 10px;
                        color: #000;
                        border-radius: 5px;
                        font-family: "Philosopher", sans-serif;
                        @media (max-width:767px){
                            padding: 7px;
                            height: 38px;
                        }
                    }
                    button {
                        width: 100%;
                        height: 55px;
                        background: #FFAF2E;
                        border: 1px solid #FFAF2E;
                        font-size: 18px;
                        color: #212B5C;
                        font-family: "Philosopher", sans-serif;
                        text-transform: uppercase;
                        font-weight: 700;
                        cursor: pointer;
                        transition: all 0.3s;
                        border-radius: 5px;
                        margin-top: 20px;
                        @media (max-width:767px){
                            height: 45px;
                            margin-top: 10px;
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }
}
@media (max-width:1024px){
    .mobile-hamburger{
        font-size: 22px;
        color: #212B5C;
        display: block !important;
        margin-top: -10px;
        margin-right: 15px;
    }
}
.mobile-hamburger{
    display: none;
}
.mobilemenu {
    position: fixed;
    background: #125873;
    width: 100%;
    height: 100vh;
    z-index: 99999999;
    right: 0;
    top: 0px;
    display: none;
}
.mobilemenu .menuheader {
    color: #fff;
    text-align: right;
    font-size: 24px;
    font-weight: 400;
    padding: 25px 25px;
}
.mobilemenu ul {
    padding: 0;
}
.mobilemenu ul li a {
    color: #fff;
    font-size: 18px;
    text-align: left;
    padding: 20px 20px;
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #0c6f95;
}
.mobilemenu ul li.active a {
    color: #FFAF2E;
}

.sweet-alert.showSweetAlert{
    .sa-icon.sa-success span {
        background-color: green;
    }
    .sa-icon.sa-success .sa-placeholder{
        border-color: green;
    }
    h2{
        color: #212B5C;
        text-transform: uppercase;
    }
    p{
        color: #000;
        line-height: 28px;
        font-weight: 400;
    }
}