* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #dd2c1c;
    /* --bg_color-2: #e44612; */
    --white: #fff;
    --black: #000;
}

body {
    font-family: "League Spartan", sans-serif;
    position: relative;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

.img::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #fff;
    transition: 1s;

}


@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
    font-family: "League Spartan", sans-serif;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.margin {
    margin: 70px 0;
}

.logo img {
    width: 140px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: absolute;
    width: 100%;
    z-index: 999;
}


.search i {
    margin-right: 5px;
}

.search a {
    color: var(--white);
}

.nab_bar {
    display: flex;
    justify-content: center;
}

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: #090d25;
}

#myHeader.sticky .logo img {
    width: 120px;
}

#myHeader.sticky nav {
    padding: 0 0;
}

#myHeader.sticky .top_head {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 32%;
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
}

.nab_bar li a {
    color: var(--white);
    padding: 28px 20px;
    display: inline-block;
    font-size: 16px;
}

.nab_bar li {
    position: relative;
    z-index: 9;
}


nav {
    position: relative;
    border-bottom: 1px solid #717171;
    padding: 10px 0;
}

.main_banner {
    position: relative;
}

.head_bg {
    background: linear-gradient(90deg, #090d25 29.03%, rgba(31, 33, 45, 0));
    padding: 20% 5% 10%;
}

.droupdown {
    position: absolute;
    background-color: #000000d1;
    padding: 20px 0;
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 490px;
    overflow: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.droupdown li {
    padding: 0;
}

.droupdown li a {
    display: block;
    padding: 8px 15px;
    color: var(--white);
}

.droupdown li a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.banner_text {
    width: 65%;
    color: var(--white);
    z-index: 99;
}

.baner_head {
    font-size: 65px;
    font-weight: 600;
    font-family: "Merriweather", serif;
}

.nav_contact {
    color: var(--white);
    font-size: 18px;
}

.nav_contact i {
    background-color: var(--bg_color);
    padding: 12px;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 5px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner_pera {
    border-left: 4px solid var(--bg_color);
    padding: 0px 25px;
    margin: 15px 0;
}




/* Search Style */
#search {
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;

}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
    top: 0
}

.form_box {
    margin: auto;
    width: 60%;
    display: flex;
    padding-top: 10%;
    justify-content: center;
}

.form_box input {
    width: 100%;
    padding: 12px;
    border-radius: 5px 0px 0px 5px;
    border: none;
    outline: none;
}

.form_box button {
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 20px;
    color: var(--black);
    cursor: pointer;
    background-color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
}


.head_banner .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    left: 40%;
    position: absolute;
    bottom: 20px;
    gap: 8px;
}

.head_banner .slick-dots li button {
    border-radius: 7px;
    background-color: var(--white);
    font-size: 0;
    padding: 4px 10px;
    margin: 2px 0;
    border: none;
}

.head_banner .slick-dots li.slick-active button {
    background-color: var(--white);
    border-radius: 7px;
    padding: 4px 20px;
}

/* Search Style */

.top_head {
    background-color: var(--bg_color);
    position: relative;
}

.social {
    background: #090d25;
    -webkit-clip-path: polygon(0 0, 84% 0, 100% 100%, 100% 100%, 0 100%, 0 50%);
    clip-path: polygon(0 0, 84% 0, 100% 100%, 100% 100%, 0 100%, 0 50%);
    padding-left: 30px;
    margin-left: -20px;
}

.socal_media {
    display: flex;
    gap: 2px;
    color: var(--black);
    position: relative;
    z-index: 99;
    align-items: center;
}

.socal_media a {
    color: var(--white);
    padding: 12px 5px;
    font-size: 14px;
}

.socal_media a:hover {
    color: var(--bg_color);
}

.socal_media span {
    color: var(--white);
    font-size: 14px;
}

.socal_media span i {
    margin-right: 5px;
}

.top_details ul {
    display: flex;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--white);
    font-size: 14px;
    position: relative;
    z-index: 9;
}

.top_details ul li a {
    color: var(--white);
}

.top_details ul li i {
    margin-right: 5px;
}


.head_item img {
    width: 100%;
}

.header-contact,
.search {
    position: relative;
    z-index: 9;
}

.all_btn {
    background: var(--bg_color);
    border: 2px solid var(--bg_color);
    border-radius: 0;
    color: var(--white);
    display: inline-block;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    overflow: hidden;
    padding: 12px 38px;
    position: relative;
    transition: all .8s;

}

.all_btn::after {
    background: #fff;
    border-radius: 0;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .4s ease-in-out 0s;
    width: 10px;
}

.all_btn:hover::after {
    height: 100%;
    left: 0;
    right: auto;
    width: 100%;
}

.all_btn:hover {
    color: var(--black);
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn i {
    font-size: 14px;
    transform: rotate(-40deg);
    margin-left: 4px;
    transition: all .4s ease-in-out 0s;
}

.all_btn:hover i {
    transform: rotate(0deg);
}

.year_text {
    font-size: 22px;
    line-height: normal;
    font-family: "Merriweather", serif;
}

.expp_head {
    display: block;
    font-size: 25px;
    font-weight: 600;
}

.year_text span {
    display: block;
    font-size: 60px;
    font-weight: 700;
}

.awards {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.awards img {
    width: 60px;
}

.awards p span {
    display: block;
    font-size: 30px;
    font-weight: 600;
}

.experienced {
    position: relative;
}

.experienced::after {
    content: "";
    width: 40%;
    height: 100px;
    position: absolute;
    right: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    background-color: var(--bg_color);
    z-index: -1;
}

.ab_img {
    width: 50%;
    float: left;
    padding-right: 40px;
}

.small_head {
    font-size: 20px;
    color: var(--bg_color);
    display: block;
    font-weight: 600;
    font-family: "Merriweather", serif;
}

.big_head {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.pro_item img {
    border-radius: 10px;
}

.pro_text {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    background-color: var(--white);
    position: absolute;
    bottom: 5px;
    left: 0;
    margin: 0 20px;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: 89%;
    border-radius: 5px;
    padding-right: 14%;
    text-align: left;
}

.pro_item {
    padding-bottom: 50px;
    margin: 10px;
    margin-bottom: 20px;
    position: relative;
}

.pro_text i {
    background-color: var(--bg_color);
    padding: 10px 12px;
    border-radius: 5px;
    color: var(--white);
    font-size: 15px;
    position: absolute;
    right: 3%;
    top: 25%;
}

.bg_video {
    padding: 80px 0 180px;
    color: var(--white);
}


.video-right-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-vedio-button {
    display: flex;
    justify-content: center;
}

.cta-vedio-button a {
    position: relative;
    background-color: var(--bg_color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-vedio-button a i.fas.fa-play {
    color: #ffffff;
    font-size: 28px;
}

.cta-vedio-button a::before {
    position: absolute;
    content: '';
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed var(--bg_color);
}

.cta-vedio-button a:after {
    content: '';
    position: absolute;
    border: 30px solid var(--bg_color);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    animation: cta-anim 1.5s linear infinite;
    opacity: 0;
}

@keyframes cta-anim {
    0% {
        transform: scale(.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(.9);
    }

}

.count-area-content img {
    width: 60px;
    margin-bottom: 10px;
}

.coount_num {
    display: block;
    font-size: 50px;
    font-weight: 800;
}

.count_bg {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-top: -80px;
    background-color: var(--white);
    margin-bottom: 40px;
    border-radius: 8px;
    padding: 30px 20px;
}

.count-title {
    font-size: 22px;
    display: block;
}

.count_box {
    border-right: 1px solid #b5b5b5;
}

.count_box:last-child {
    border: none;
}

.testimg {
    position: relative;
}

.left-img {
    border: 15px solid #efefef;
    border-radius: 40px;
    max-width: 400px;
    position: relative;
}

.right-img {
    border: 15px solid #efefef;
    border-radius: 40px;
    left: -160px;
    position: absolute;
    top: 25%;
    max-width: 250px;
}

.test_item {
    text-align: center;
}

.test_item .img img {
    margin: 10px auto;
    border-radius: 50%;
    border: 2px dashed var(--bg_color);
    padding: 5px;
    width: 100px;
}

.name {
    display: block;
    font-size: 22px;
}

.degination {
    color: var(--bg_color);
}

.stars {
    width: 130px;
    margin: 10px auto;
}

.test_item p {
    font-size: 19px;
    line-height: 35px;
}

.testmoinal {
    margin: 130px 0;
}

.why_choose {
    background-color: #090D25;
    padding: 100px 0;
    color: var(--white);
}

.choose-right-content-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.choose-image {
    position: relative;
    z-index: 2;
}

.choose-border {
    position: absolute;
    top: -25px;
    right: 10px;
    z-index: 1;
    animation: chooseBorder 2s linear infinite alternate;
}

@keyframes chooseBorder {
    0% {
        top: -25px;
        right: 10px;
    }

    100% {
        top: 0px;
        right: 30px;
    }
}

.choose-wrapper {
    position: relative;
    overflow: hidden;
    background: #0A0F2E;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
    z-index: 1;
    padding: 20px 10px;
}

.choose-wrapper img {
    width: 80px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.choose-wrapper span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    display: block;
    position: relative;
    z-index: 2;
}

.choose-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg_color);
    transition: 0.3s;
}

.choose-wrapper:hover::before {
    width: 100%;
}

.list-style-three a {
    display: block;
    color: var(--white);
}

.list-style-three strong {
    display: block;
    color: #ff0000;
}

.list-style-three li {
    position: relative;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 17px;
    padding-left: 46px;
    padding-bottom: 12px;
    border-bottom: 1px solid #686868;
}

.list-style-three li i {
    position: absolute;
    left: 0;
    color: var(--bg_color);
    font-size: 19px;
}

.upper-box {
    padding: 32px 55px 25px 28px;
    background-color: #090d25;
}

.contact form input,
textarea,
select {
    width: 100%;
    display: block;
    line-height: 28px;
    padding: 10px 0px;
    color: #848484;
    font-size: 16px;
    border: none;
    outline: none;
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 20px;
}

.upper-box .socal_media a {
    color: var(--white);
    font-size: 20px;
    padding: 12px 11px;
}



footer {
    background-color: #090d25;
    padding-top: 60px;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

footer .row {
    align-items: center;
}

.foot_logo img {
    width: 150px;
    border-radius: 5px;
    padding: 5px;
}

.foot_logo {
    border-right: 1px solid #494949;
}

.foot_nav ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

.foot_nav ul li a {
    color: var(--white);
    padding: 0 13px;
    font-size: 14px;
}

.foot_nav ul li a:hover {
    color: var(--bg_color);
}

.foot_cont ul li a {
    color: var(--white);
}

.foot_cont ul li a:hover {
    color: var(--bg_color);
}

.foot_cont ul li {
    margin: 15px 0;
    font-size: 14px;
}

.foot_cont ul li i {
    margin-right: 8px;
    color: var(--bg_color);
}

footer .socal_media {
    width: 100%;
}

.foot_pro {
    padding: 40px 0 30px;
    border-top: 1px solid #494949;
}

.foot_pro ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.foot_pro ul li a {
    color: var(--white);
    font-size: 14px;
}

.foot_pro ul li a:hover {
    color: var(--bg_color);
}

.foot_bg {
    position: absolute;
    bottom: 0;
    opacity: .7;
}

.copyright_area {
    margin-top: 30px;
    background-color: var(--bg_color);
    position: relative;
    z-index: 9;
}

.copyright_area p {
    margin-bottom: 0;
    color: var(--white);
    padding: 10px;
    font-size: 15px;
}

.copyright_area p a {
    color: var(--white);
    text-decoration: underline !important;
}

.foot_text {
    padding: 30px 0;
    border-top: 1px solid #494949;
    position: relative;
    z-index: 9;
}

.foot_text p {
    color: var(--white);
    font-size: 14px;
}

.doctor_item span{
    font-size: 20px;
    font-weight: 600;
    display:block;
}
.doctor_item img{
    margin-top:-25px;
    margin-bottom:10px;
    width:100%;
}
.doctor_item ul li{
    margin:5px 0;
    font-size:16px;
}
.doctor_item_left{
    text-align: left;
}

.doctor_item {
    border: 1px solid #dd2c1c;
    padding: 15px;
    padding-top: 0px;
}


















.ab_text h2,
.ab_text h3 {
    font-size: 25px;
}


.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: var(--black);
    color: #fff;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.ab_item {
    width: 47%;
    float: left;
    margin-right: 40px;
}

.social-share button:hover {
    background-color: #000;
}

.share-btn-box {
    margin-top: 20px;
}

.share-btn {
    font-weight: bold;

}

.inner_header {
    position: relative;
}

.inner_header img {
    height: 438px;
    width: 100%;
    object-fit: cover;
}

.inner_header::after {
    content: "";
    background: linear-gradient(90deg, #090d25 29.03%, rgba(31, 33, 45, 0));
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 68%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 35px;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.brade_crom {
    display: flex;
}

.brade_crom a {
    color: #fff;
}

.brade_crom span {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}


.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.visit{
right: 0;
  bottom: 0;
  position: fixed;
  color: #fff;
  font-size: 27px;
  z-index: 99;
  background: #090d25;
  padding: 5px 31px;
  display: flex;
  gap: 13px;
  border-radius: 10px 0px 0px 0;
}


@media only screen and (max-width: 1024px) {
    .header-contact .all_btn {
        display: none;
    }
    .baner_head {
        font-size: 55px;
    }
}

@media only screen and (max-width: 991px) {

    .top_head .col-lg-8 {
        display: none;
    }

    .nab_bar li a {
        padding: 28px 12px;
    }

    .baner_head {
        font-size: 40px;
    }

    .logo img {
        width: 110px;
    }

    .ab_img {
        width: 60%;
    }

    .left-img {
        max-width: 288px;
    }

    .right-img {
        max-width: 220px;
    }

    .upper-box {
        margin-bottom: 40px;
    }

    .droupdown li a {
        padding: 8px 15px;
    }
}


@media only screen and (max-width: 800px) {
    .toggle {
        visibility: visible;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
        margin: 0 0 0 auto;
    }

    .toggle>* {
        width: 80%;
        height: 3px;
        background: var(--bg_color);
        margin: 3px 0;
    }

    .toggle.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle.active .line2 {
        opacity: 0;
    }

    .toggle.active .line3 {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .nab_bar {
        position: absolute;
        flex-direction: column;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: var(--white);
        z-index: 9999;
        display: none;
    }


    .nab_bar li {
        border-bottom: 1px solid #e2e2e2;
    }

    .nab_bar li a {
        color: #000;
        padding: 10px 25px;
        display: block;
    }

    .droupdown {
        position: revert;
        width: 100%;
        background-color: var(--bg_color);
    }

    .clk_btn {
        position: absolute;
        right: 0;
        top: 0;
        color: var(--white);
        cursor: pointer;
        width: 47px;
        height: 46px;
        line-height: 37px;
        background: #000;
        text-align: center;
    }

    .droupdown li {
        padding: 0 !important;
    }

    .droupdown li a {
        color: #fff;
    }



    .col-md-4.top_call.text-center {
        display: none;
    }



    .inner_hrad {
        font-size: 25px;
    }

    .inner_header img {
        height: 380px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 66%;
    }

}


@media only screen and (max-width: 767px) {
    .head_bg {
        padding: 29% 5% 10%;
    }

    .baner_head {
        font-size: 27px;
    }

    .banner_text {
        width: 93%;
    }

    .year_text span {
        font-size: 35px;
    }

    .year_text {
        font-size: 16px;
    }

    .expp_head {
        font-size: 18px;
    }

    .ab_img {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 20px;
    }

    .big_head {
        font-size: 23px;
    }

    .small_head {
        font-size: 16px;
    }

    .common-title {
        margin-bottom: 40px;
    }

    .count-area-content {
        margin-bottom: 30px;
    }

    .coount_num {
        font-size: 33px;
    }

    .count-title {
        font-size: 17px;
    }

    .count-area-content img {
        width: 52px;
    }

    .left-img {
        margin: auto;
    }

    .right-img {
        left: -75px;
    }

    .choose-right-content-image {
        margin-top: 30px;
    }

    .why_choose {
        padding: 60px 0;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
}


@media only screen and (max-width: 610px) {
    .head_bg {
        padding: 38% 5% 10%;
    }

    .margin {
        margin: 30px 0;
    }

    footer {
        padding-top: 30px;
    }

    .foot_logo img {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 510px) {
    .baner_head {
        font-size: 20px;
    }

    .header-contact {
        display: none;
    }

    .head_bg {
        padding: 47% 5% 10%;
    }

    .banner_text {
        width: 99%;
    }

    .left-img {
        max-width: 259px;
    }

    .testimg {
        margin-bottom: 43px;
    }
}