/*
  Theme Name: Dakhil 2004 Bangladesh HTML Template
  Author: mohasagorit.solutions
  Support: info@mohasagorit.solutions
  Description: Creative  HTML5 template.
  Version: 1.0
*/

/* CSS Index
-----------------------------------
1. Google Fonts
2. Theme Default
3. Section Heading
4. Header
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
*/

/*
==========================================
    Google Fonts
==========================================
*/
/* font-family: 'Poppins', sans-serif;  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

/*
==========================================
    Theme Default Css
==========================================
*/
* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    color: var(--black);
}

:root {
    --themeColor: #959497;
    --white: #ffffff;
    --black: #4a4a4a;
    --hoverColor: #5E2CED;
    --text: #686a6f;

    --headerTopBackground: #263045;
    --sectionBackground: #EDF5F8;
    --footerBackground: #1D2746;

    --allHeadingColor: #1d2746;


    --menuColor: #333333;
    --overlayBackground: #0000006b;
    --border: #e7e7e7;
    --shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
}

img {
    max-width: 100%;
}

p {
    color: var(--black);
}

a,
.button {
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--allHeadingColor);
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

*::-moz-placeholder {
    color: #555555;
    opacity: 1;
    font-size: 14px;
}

*::-webkit-input-placeholder {
    color: #555555;
    opacity: 1;
    font-size: 14px;
}

*:-ms-input-placeholder {
    color: #555555;
    opacity: 1;
    font-size: 14px;
}

*::-ms-input-placeholder {
    color: #555555;
    opacity: 1;
    font-size: 14px;
}

*::placeholder {
    color: #555555;
    opacity: 1;
    font-size: 14px;
}

*::-moz-selection {
    background: #ffffff;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #ffffff;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #ffffff;
    color: #fff;
    text-shadow: none;
}

.section_padding {
    padding: 100px 0px;
}

.section_padding_bottom {
    padding-bottom: 60px;
}

.section_padding_top {
    padding-top: 60px;
}

.section_top_space {
    padding-top: 60px;
}

.section_bg {
    background-color: var(--sectionBackground);
}

.re_star {
    color: red;
    font-size: 18px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/*
==============================================================
    Common Button Css
==============================================================
*/
.common_btn {
    background-color: var(--themeColor);
    color: var(--white);
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    border: 1px solid var(--themeColor);
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
    z-index: 1;
    border-radius: 3px;
}

.common_btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    -webkit-transition: all .2s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    background: var(--white);
    z-index: -1;

}

.common_btn:hover:after {
    width: 100%;
}

.common_btn:hover {
    color: var(--allHeadingColor);
    border-color: var(--allHeadingColor);
}

/* common button two */
.common_btn_two {
    background-color: var(--white);
    color: var(--black);
    padding: 15px 40px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
    z-index: 1;
}

.common_btn_two::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    -webkit-transition: all .2s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    background: var(--allHeadingColor);
    z-index: -1;
}

.common_btn_two:hover:after {
    width: 100%;
}

.common_btn_two:hover {
    color: var(--white);
}

/*
==============================================================
    Section Heading Css
==============================================================
*/
.section_heading h5 {
    font-size: 14px;
    color: var(--themeColor);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.section_heading h2 {
    font-weight: 700;
    font-size: 30px;
}

/*
==============================================================
    Header Area Css
==============================================================
*/

/*
====================
Header Top Css
====================
*/

.top_header_bottom {
    padding: 5px 0px;
}

.top_header_social_media {
    display: flex;
    justify-content: flex-end; /* Ensure right alignment */
    align-items: center;
    height: 100%;
}
.top_header_social_media ul {
    margin: 0;
    padding: 0;
}
.top_header_social_media ul li {
    display: inline-block;
    list-style: none;
    margin: 0px 2px;
}
.top_header_social_media ul li .top_header_social_media_link {
    display: block;
    background-color: #3d3737;
    color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 33px;
    text-align: center;
    font-size: 16px;
    border-radius: 3px;
    transition: 0.3s;
}
.top_header_social_media ul li .top_header_social_media_link:hover {
    color: var(--themeColor);
}





.header_bottom {
    background-color: black;
    padding: 5px 0px;
}

.header_top {
    background-color: var(--headerTopBackground);
}

.header_top_address_and_email ul li {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    margin-right: 20px;
    position: relative;
}

.header_top_address_and_email ul li:last-child {
    margin-right: 0px;
}

.header_top_address_and_email ul li .header_top_email_link {
    font-size: 16px;
    font-weight: 400;
    color: black;
}

.header_top_time_and_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.header_top_time p {
    font-size: 14px;
    color: var(--white);
    padding-right: 20px;
    margin-right: 20px;
    position: relative;
}

.header_top_time p::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    width: 2px;
    height: 100%;
    background: var(--black);
}

.header_top_social_media ul li {
    display: inline-block;
    margin-right: 20px;
}

.header_top_social_media ul li:last-child {
    margin-right: 0px;
}

.header_top_social_media ul li .header_top_social_media_link {
    color: black;
    display: block;
    font-size: 16px;
}

/*
====================
Header Bottom Css
====================
*/
.header_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_logo {
    width: 450px;
    height: 70px;
}

.main_menu {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
}

.main_menu ul li {
    display: inline-block;
    margin-right: 40px;
    position: relative;
}

.main_menu ul li:last-child {
    margin-right: 0px;
}

.main_menu ul li .main_menu_link {
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    padding: 17px 0px;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.main_menu ul li:hover>.main_menu_link {
    color: var(--themeColor);
}

.main_menu ul li .main_menu_link i {
    font-size: 16px;
    padding-left: 5px;
}

/* submenu */
.main_menu ul li .submenu {
    text-align: left;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    background-color: var(--white);
    width: 200px;
    top: 100%;
    left: -10px;
    position: absolute;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.main_menu ul li:hover>.submenu {
    opacity: 1;
    visibility: visible;
}

.main_menu ul li .submenu li {
    display: block;
    margin-right: 0px;
}

.main_menu ul li .submenu li .submenu_link {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--black);
    border-bottom: 1px dashed #efefef;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
}

.main_menu ul li .submenu li .submenu_link:hover {
    color: var(--themeColor);
    padding-left: 30px;
    background: #f7f9fe;
}

/*
==============================================================
    Slider Area Css
==============================================================
*/
.single_slider_item {
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.single_slider_item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0000006b;
}

.single_slider_item .slider_image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider_content_table_cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 80vh;
    text-align: center;
}

.slider_title {
    margin-top: 10px;
    margin-bottom: 15px;
}

.slider_title h1 {
    font-size: 60px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--white);
}

.slider_active .owl-dots div {
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 100%;
    border: 1px solid var(--themeColor);
    margin-bottom: 5px;
    margin-right: 20px;
}

.slider_active .owl-dots {
    position: absolute;
    right: 0;
    top: 63%;
    bottom: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slider_active .owl-dots div.active {
    background: var(--themeColor);
}


/*
==============================================================
    About Area Css
==============================================================
*/
.about_page_title {
    margin-bottom: 40px;
}

.about_image {
    padding-right: 30px;
}

.about_image img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about_content {
    margin-top: 30px;
}

.about_subtitle h6 {
    font-size: 14px;
    color: var(--themeColor);
    font-weight: 500;
    text-transform: uppercase;
}

.about_title {
    margin-top: 10px;
    margin-bottom: 30px;
}

.about_title h2 {
    font-weight: 600;
    font-size: 30px;
}

.about_nav .about_nav_item {
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #2f506c14;
    border-radius: 5px;
}

.about_nav .about_nav_item:last-child {
    margin-right: 0px;
}

.about_nav_pills .about_nav_link {
    border: var(--border);
    color: var(--black);
    font-size: 16px;
    padding: 13px 25px;
    font-weight: 500;
}

.about_nav_pills .about_nav_link.active,
.about_nav_pills .show>.about_nav_pills {
    color: var(--white);
    background-color: var(--themeColor);
}

.about_tab_description {
    margin-top: 15px;
    margin-bottom: 15px;
}

.about_tab_description p {
    font-size: 16px;
}

.about_tab_list ul {
    margin: 0;
    padding: 0;
}

.about_tab_list ul li {
    list-style: none;
}

.about_tab_list ul li i {
    color: var(--themeColor);
    font-size: 16px;
    padding-right: 5px;
}

.about_tab_list ul li {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
}

.about_tab_list ul li:last-child {
    margin-bottom: 0px;
}

/*
==============================================================
    About Area Css
==============================================================
*/
.about_video {
    margin-right: 70px;
}

.about_video iframe {
    width: 100%;
    height: 350px;
}

.about_page_nav_pills {
    justify-content: center;
}
.about_page_content p {
    text-align: justify;
}
.about_nav .about_nav_item {
    margin-right: 10px;
    margin-bottom: 10px;
}
.about_nav .about_nav_item:last-child {
    margin-right: 0px;
}
.about_nav_pills .about_nav_link {
    border: var(--border);
    color: var(--black);
    font-size: 16px;
    padding: 8px 20px;
}
.about_nav_pills .about_nav_link.active, .about_nav_pills .show>.about_nav_pills {
    color: var(--white);
    background-color: var(--themeColor);
}
.about_page_our_vission ul {
    margin: 0px;
    padding: 0px;
}



/*
==============================================================
    Why Choose Area Css
==============================================================
*/
.why_choose_description {
    padding-top: 20px;
    padding-bottom: 25px;
}

.why_choose_description p {
    text-align: justify;
}

/*
==============================================================
    Service Area Css
==============================================================
*/
/* specialist_doctor_active Carousel */

.specialist_doctor_active .owl-nav div {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 50%;
    margin-top: -23px;
    font-weight: 400;
    margin-left: -21px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.specialist_doctor_active .owl-nav div:hover {
    background-color: var(--themeColor);
    border-color: var(--themeColor);
    color: #fff;
}

.specialist_doctor_active .owl-nav .owl-next {
    right: 0;
    margin-right: -21px;
    color: var(--themeColor);
}

.specialist_doctor_active .owl-nav .owl-prev {
    color: var(--themeColor);
}

.single_specialist_doctor {
    background-color: var(--white);
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

.single_specialist_doctor:hover .specialist_doctor_name h5 {
    color: var(--hoverColor);
}

.specialist_doctor_image {
    width: 100%;
    height: 300px;
    padding: 5px;
}

.specialist_doctor_image img {
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.specialist_doctor_image1 {
    width: 100%;
    height: 370px;
    padding: 5px;
}

.specialist_doctor_image1 img {
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.specialist_doctor_content {
    text-align: center;
    padding: 20px 15px 20px 15px;
}

.specialist_doctor_name h5 {
    font-weight: 500;
    transition: .3s;
}



/*
==============================================================
    Counter Area Css
==============================================================
*/
.counter_area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}

.single_counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.counter_icon {
    padding-top: 7px;
}

.counter_icon i {
    font-size: 30px;
    color: var(--white);
}

.counter_number {
    font-size: 35px;
    font-weight: 700;
    color: var(--white);
    float: left;
}

.counter_number_and_title span {
    font-size: 30px;
    color: var(--white);
    font-weight: 600;
    margin-left: 5px;
}

.counter_title {
    padding-top: 10px;
}

.counter_title h4 {
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white);
    font-size: 18px;
}

/*
==============================================================
    Latest News Area Css
==============================================================
*/
.single_latest_news {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
}

.latest_news_image {
    width: 100%;
    height: auto;
    overflow: hidden;
    /* aspect-ratio: 1/1; */
    height: 250px;
}

.latest_news_image img {
    -webkit-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.single_latest_news:hover .latest_news_image img {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
}

.latest_news_content {
    padding: 25px 30px;
}

.latest_news_month_and_tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}

.latest_news_month span i {
    font-size: 14px;
    color: var(--themeColor);
}

.latest_news_month span {
    font-size: 14px;
    color: var(--black);
}

.latest_news_tag_link i {
    font-size: 14px;
    color: var(--themeColor);
}

.latest_news_tag_link {
    font-size: 14px;
    color: var(--black);
}

.latest_news_title {
    margin-top: 15px;
    margin-bottom: 10px;
    display: block;
}

.latest_news_title_link {
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    color: var(--allHeadingColor);
}

.latest_news_description p {
    font-size: 16px;
    line-height: 30px;
}

.latest_news_admin_details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.latest_news_admin_image img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: var(--border);
}

.latest_news_admin_details_link {
    font-weight: 600;
    font-size: 15px;
    color: var(--black);
}

.latest_news_btn {
    margin-top: 10px;
}

.latest_news_btn_link {
    color: var(--themeColor);
    transition: .3s;
}

.latest_news_btn_link:hover {
    color: var(--hoverColor);
}

/*
==============================================================
    Footer Area Css
==============================================================
*/
.footer_area {
    background-color: var(--footerBackground);
}

.footer_title {
    margin-bottom: 25px;
}

.footer_title h3 {
    color: var(--white);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
}

.footer_description p {
    color: var(--white);
    font-size: 16px;
    font-weight: 300;
}

.footer_phone_content {
    background: #260c73;
    padding: 20px;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
}

.footer_phone_icon {
    font-size: 25px;
    background-color: var(--themeColor);
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    color: var(--white);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.footer_phone_title p {
    color: var(--white);
    font-size: 14px;
}

.footer_phone_number .footer_phone_number_link {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.footer_list ul li {
    margin-bottom: 15px;
}

.footer_list ul li:last-child {
    margin-bottom: 0px;
}

.footer_list ul li .footer_list_link {
    display: inline-block;
    color: var(--white);
    font-size: 16px;
    position: relative;
}

.footer_list ul li .footer_list_link::after {
    content: "//";
    position: absolute;
    top: 0;
    left: 0;
    letter-spacing: 0px;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    font-size: 12px;
}

.footer_list ul li .footer_list_link:hover::after {
    opacity: 1;
    visibility: visible;
    color: var(--themeColor);
}

.footer_list ul li .footer_list_link:hover {
    color: var(--themeColor);
    padding-left: 15px;

}

.footer_latest_news_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.footer_latest_news_image {
    width: 70px;
    height: 70px;
    aspect-ratio: 1/1;
}

.footer_latest_news_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer_latest_news_title_link {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 22px;
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.footer_latest_news_title_link:hover {
    color: var(--themeColor);
}

.footer_latest_news_time span i {
    font-size: 14px;
    color: var(--themeColor);
}

.footer_latest_news_time span {
    color: var(--themeColor);
    font-size: 14px;
}

.footer_blog_list ul li {
    margin-bottom: 10px;
}

.footer_blog_list ul li:last-child {
    margin-bottom: 0px;
}

.footer_bottom {
    border-top: 1px solid #373737;
    padding: 20px 0px;
}

.footer_copyright p {
    color: var(--white);
    font-size: 16px;
}

.footer_copyright_link {
    color: var(--themeColor);
}

.footer_copyright_link:hover {
    color: #ff205f;
}

.single_footer_content iframe {
    width: 100%;
    height: 350px;
}

/*
==============================================================
    Whatsapp Icon Css
==============================================================
*/
.fixed_footer_whatsapp_icon {
    position: relative;
    background-color: #0DC043;
    color: var(--white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 99;
}

.fixed_footer_whatsapp_icon .whatsapp_icon {
    color: var(--white);
    font-size: 25px;
}

.whatsapp_close i {
    position: absolute;
    top: -14px;
    right: -1px;
    color: var(--black);
    font-size: 18px;
    cursor: pointer;
}

.whatsapp_toggle {
    display: none;
}

/*
==============================================================
    Breadcrumb Area Css
==============================================================
*/
.breadcrumb_area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 200px 0px;
    position: relative;
    z-index: 1;
}

.breadcrumb_area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: -1;
}

.breadcrumb_title {
    text-align: center;
}

.breadcrumb_title h2 {
    text-transform: capitalize;
    font-weight: 700;
    color: var(--white);
    font-size: 50px;
    letter-spacing: 1.2px;
}

/*
==============================================================
    Contact Us Area Css
==============================================================
*/
.contact_us_form_title {
    margin-bottom: 30px;
}

.contact_us_form_title h3 {
    font-size: 30px;
    font-weight: 700;
}

.contact_us_item {
    position: relative;
}

.contact_us_item input {
    width: 100%;
    color: var(--black);
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 3px;
}

.contact_us_item input:focus {
    border-color: var(--themeColor);
}

.contact_us_item textarea {
    width: 100%;
    color: var(--black);
    padding: 15px 10px;
    border: 2px solid #eee;
    border-radius: 3px;
}

.contact_us_item i {
    position: absolute;
    top: 22px;
    right: 10px;
    color: var(--themeColor);
}

.address_content {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.address_content::after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgb(94, 44, 237, .8);
}

.address_title h4 {
    line-height: 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-transform: capitalize;
}

.address_list {
    margin-top: 20px;
}

.address_list ul li {
    margin-bottom: 20px;
}

.address_list ul li:last-child {
    margin-bottom: 0px;
}

.address_list_icon i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--white);
    color: var(--themeColor);
    font-size: 16px;
    border-radius: 100%;
}

.address_list_name h4 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--white);
}

.address p {
    font-size: 14px;
    color: var(--white);
    line-height: 20px;
}

.address_list_table_cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.address_list_name {
    margin-bottom: 5px;
}

.contact_us_address_link {
    display: block;
    color: var(--white);
    line-height: 20px;
}

.contact_us_address_link:hover {
    color: var(--white);
}

/* branch and map start */

.contact_us_address {
    display: block;
    height: 100%;
    min-height: 100%;
    padding: 45px 45px 40px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.05);
    transition: all .5s ease;
    padding: 40px 40px 40px;
}
.contact_us_address_heading h4 {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1em;
    margin: 0;
}
.contact_us_address_list {
    margin-top: 20px;
}
.contact_us_address_list ul{
    margin: 0px;
    padding: 0px;
}
.contact_us_address_list ul li {
    color: var(--text);
    margin-bottom: 5px;
    list-style: none;
}
.contact_us_address_list ul li:last-child {
    margin-bottom: 0px;
}
.contact_us_address_list ul li .contact_us_address_list_link {
    color: var(--text);
    display: inline-block;
    transition: all .5s ease;
}
.contact_us_address_list ul li .contact_us_address_list_link:hover {
    color: #d7d5d5;
    text-decoration: underline;
}
.contact_us_address:hover{
    background-color: #4e0b91;
}
.contact_us_address:hover .contact_us_address_heading h4{
    color: var(--white);
}
/* branch and map end */

/*
==============================================================
    Blog Page Area Css
==============================================================
*/

.blog_details_title {
    margin-top: 40px;
}

.blog_details_title h2 {
    text-align: center;
    font-size: 26px;
    line-height: 50px;
}

.blog_details_image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog_details_table_cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.blog_details_post_date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_details_post_date i {
    color: var(--themeColor);
    font-size: 15px;
}

.blog_details_post_date span {
    color: var(--text);
    font-size: 15px;
}

.blog_details_comments {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog_details_comments i {
    color: var(--themeColor);
}

.blog_details_comments span {
    color: var(--text);
    font-size: 15px;
}

.product_details_description p {
    text-align: justify;
    line-height: 26px;
    color: var(--text);
}

.recent_post {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 30px;
}

.recent_post_title {
    position: relative;
}

/* .recent_post_title::after {
    content: "";
    position: absolute;
    top: 7px;
    left: -30px;
    width: 10px;
    height: 5px;
    background: var(--headerTopBackground);
} */

.recent_post_title h4 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    padding: 5px 0px;
}

.sidebar_recent_post_image {
    width: 70px;
    height: 70px;
    aspect-ration: 1/1;
}

.recent_post_list_image {
    width: 23%;
    height: 70px;
    float: left;
}

.recent_post_list_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.recent_post_list_content {
    width: 77%;
    display: block;
}

.recent_post_list {
    margin-top: 20px;
}

.recent_post_list ul li {
    margin-bottom: 20px;
    display: block;
}

.recent_post_list ul li:last-child {
    margin-bottom: 0px;
}

.recent_post_list ul li .recent_post_list_link p {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    line-height: 20px;
}

.recent_post_list ul li .recent_post_list_link:hover p {
    color: var(--themeColor);
}

.recent_post_list_table_cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.recent_post_list_content span {
    font-size: 14px;
    color: var(--themeColor);
}

.blog_page_tag {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 30px;
}

.blog_page_tag_title {
    margin-bottom: 15px;
    position: relative;
}

.blog_page_tag_title::after {
    content: "";
    position: absolute;
    top: 7px;
    left: -30px;
    width: 10px;
    height: 4px;
    background: var(--headerTopBackground);
}

.blog_page_tag_title h5 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--black);
}

.blog_page_tag ul li {
    display: inline-block;
}

.blog_page_tag ul li .blog_page_tag_link {
    display: inline-block;
    border: 1px solid #eee;
    padding: 5px 15px;
    margin: 4px 3px;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    background-color: #5e2ced0a;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.blog_page_tag ul li .blog_page_tag_link:hover {
    color: var(--white);
    background-color: var(--themeColor);
}

.blog_page_archives {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 30px;
}

.blog_page_archives_title {
    position: relative;
}

.blog_page_archives_title::after {
    content: "";
    position: absolute;
    top: 7px;
    left: -30px;
    width: 10px;
    height: 5px;
    background: var(--headerTopBackground);
}

.blog_page_archives_title h5 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
}

.blog_page_archives_list {
    margin-top: 10px;
}

.blog_page_archives_list ul li {
    border-bottom: var(--border);
    padding: 5px 0px;
}

.blog_page_archives_list ul li:last-child {
    border-bottom: none;
}

.blog_page_archives_list ul li .blog_page_archives_list_link {
    font-weight: 400;
    font-size: 14px;
    color: var(--black);
}

.blog_page_archives_list ul li .blog_page_archives_list_link i {
    padding-right: 5px;
    font-size: 10px;
    color: var(--black);
}

.blog_page_archives_list ul li .blog_page_archives_list_link:hover {
    color: var(--themeColor);
}

.blog_page_tag_social_table_cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    padding: 0px 30px;
    padding-bottom: 20px;
}

.latest_news_tag_table_cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0px;
}

.latest_news_tag_title h5 {
    font-size: 16px;
    font-weight: 700;
}

.blog_page_share_title h5 {
    font-size: 16px;
    font-weight: 700;
}

.blog_page_share_table_cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.blog_page_social ul li {
    display: inline-block;
}

.blog_page_social ul li .blog_page_social_link {
    color: var(--white);
    background-color: var(--themeColor);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.blog_page_social ul li .blog_page_social_link:hover {
    color: var(--footerBackground);
}


/*
==============================================================
    Project Details Page Area Css
==============================================================
*/
/* .service_details_banner{
    height: 500px;
    width: 850px;
} */
.service_details_banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.project_nav_pills {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.nav-pills .nav-link.project_nav_link {
    border: var(--border);
    border-radius: 0;
    color: var(--black);
    font-weight: 500;
}

.nav-pills .nav-link.project_nav_link.active,
.nav-pills .show>.nav-link {
    color: var(--white);
    background-color: var(--themeColor);
    border: var(--border);
}

.nav-item.project_nav_item {
    margin-right: 10px;
    margin-bottom: 10px;
}

.nav-item.project_nav_item:last-child {
    margin-right: 0px;
}

.service_details_title {
    margin-top: 20px;
}

.service_details_title h2 {
    font-size: 24px;
    font-weight: 700;
}

.service_details_description p {
    margin-top: 10px;
}

.service_details_counter {
    margin-top: 60px;
    margin-bottom: 20px;
}

.why_choose_content_table_cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.single_service_counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}

.service_counter_icon i {
    font-size: 30px;
    color: var(--themeColor);
}

.service_counter {
    font-size: 35px;
    font-weight: 700;
    float: left;
}

.service_counter_number_and_title span {
    font-size: 30px;
    font-weight: 600;
}

.service_counter_title h4 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;
}

.service_details_why_choose_img img {
    width: 100%;
    height: auto;
}

.service_details_why_choose_description p {
    line-height: 30px;
}

.service_details_why_choose_list {
    margin-top: 20px;
}

.service_details_why_choose_list ul li i {
    color: var(--themeColor);
    font-size: 16px;
}

.service_details_why_choose_list ul li {
    margin-bottom: 10px;
}

.service_details_why_choose_list ul li:last-child {
    margin-bottom: 0px;
}

.service_details_analyzing_it_title {
    margin-top: 40px;
    margin-bottom: 10px;
}

.service_details_analyzing_it_title h3 {
    font-size: 24px;
    font-weight: 700;
}

.service_details_analyzing_it_tab {
    margin-top: 20px;
}

.service_details_accordion {
    border: var(--border);
}

.service_details_accordion_button {
    border: var(--border);
}

.accordion-button.service_details_accordion_button {
    color: var(--black);
    font-weight: 500;
}

.accordion-button.service_details_accordion_button:not(.collapsed) {
    color: var(--black);
    background-color: #e7f1ff;
    font-weight: 500;
}

.accordion-button.service_details_accordion_button:focus {
    border-color: transparent;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-button.service_details_accordion_button::after {
    width: 15px;
    height: 15px;
    background-size: inherit;
}

.service_details_list {
    padding: 25px 20px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.service_details_list ul li .service_details_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service_details_icon i {
    border-right: var(--border);
    height: 100%;
    padding: 20px 20px;
    background: var(--themeColor);
    color: var(--white);
}

.service_details_link {
    border: var(--border);
    width: 100%;
    display: inline-block;
    position: relative;
    z-index: 1;
    color: var(--black);
    text-transform: capitalize;
    -webkit-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.service_details_list ul li .service_details_link::after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 0%;
    height: 100%;
    background: #5e2ced;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.service_details_link_text {
    padding-left: 10px;
}

.service_details_list ul li .service_details_link:hover:after {
    width: 100%;
}

.service_details_list ul li .service_details_link:hover {
    color: #fff;
}

.service_details_address_image {
    padding: 25px 20px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    margin: 0 auto;
    text-align: center;
}

.service_details_address_list {
    padding: 25px 20px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.service_details_address_list_link {
    display: block;
    color: var(--black);
    font-size: 16px;
}

.service_details_address_list li {
    display: block;
    padding-bottom: 10px;
}

.service_details_address_list li:last-child {
    padding-bottom: 0px;
}

.service_details_address_list_link i {
    padding-right: 5px;
}













.single_product_link {
    border: none;
    background-color: var(--themeColor);
    color: var(--white);
    display: inline-block;
    border-radius: 3px;
    padding: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 165px;
    font-weight: 600;
}

.single_product_link:hover {
    color: #000000;
}

.single_product_btn_group {
    align-items: center;
}

.single_product_modal {
    z-index: 999999999;
}

.single_product_modal_content {
    padding: 20px;
}

.single_product_modal_close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    line-height: 0px;
    margin-right: 5px;
    margin-top: 2px;
    color: var(--themeColor);
    cursor: pointer;
}

.single_product_modal_form_item label {
    display: block;
    color: var(--text);
    font-size: 16px;
    margin-bottom: 3px;
}

.single_product_modal_title h6 {
    font-size: 22px;
    line-height: 32px;
}

.single_product_modal_form_item input,
.single_product_modal_form_item textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 10px 20px;
}

.single_product_modal_form_submit {
    padding-top: 15px;
    text-align: center;
}

.single_product_modal_form_submit_link {
    border: none;
    background-color: var(--themeColor);
    color: var(--white);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
}

.single_product_modal_form_item {
    margin-bottom: 10px;
}

.single_product_modal_header {
    margin-top: 10px;
    margin-bottom: 10px;
}





.single_product_social_share {
    text-align: center;
}

.single_product_social_share_content {
    margin-top: 30px;
}

.single_product_social_share_title {
    margin-bottom: 10px;
}

.single_product_social_share ul {
    margin: 0;
    padding: 0;
}

.single_product_social_share ul li {
    display: inline-block;
    list-style: none;
}

.single_product_social_share ul li .single_product_social_share_link {
    color: var(--white);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: block;
    font-size: 16px;
    -webkit-transform: .3s;
    -ms-transform: .3s;
    transform: .3s;
}

.single_product_social_share ul li .single_product_social_share_link:hover {
    color: var(--black);
}

.single_product_social_share ul li .single_product_social_share_link.facebook {
    background-color: #3A589B;
}

.single_product_social_share ul li .single_product_social_share_link.twitter {
    background-color: #1DA1F2;
}

.single_product_social_share ul li .single_product_social_share_link.linkedin {
    background-color: #0077B5;
}

.single_product_social_share ul li .single_product_social_share_link.instagram {
    background-color: #F56305;
}

.single_product_social_share ul li .single_product_social_share_link.pinterest {
    background-color: #B7081B;
}

.single_product_social_share ul li .single_product_social_share_link.envelope {
    background-color: #DC4F43;
}

.single_product_social_share ul li .single_product_social_share_link.whatsapp {
    background-color: #10C044;
}

.single_product_social_share ul li .single_product_social_share_link.telegram {
    background-color: #3596F5;
}

.single_product_social_share ul li .single_product_social_share_link.skype {
    background-color: #00A6E8;
}


/* new social share designstart*/
#social-links ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

#social-links ul li {
    display: inline-block;
    list-style: none;
    margin-right: 5px;
    margin-bottom: 5px;
}

#social-links ul li:last-child {
    margin-right: 0px;
}

#social-links ul li .social-button span {
    color: var(--white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    font-size: 18px;
    transform: .3s;
}

#social-links ul li .social-button span:hover {
    color: var(--black);
}

#social-links ul li a span.fa-facebook-square {
    background-color: #3A589B;
}

#social-links ul li a span.fa-twitter {
    background-color: #1DA1F2;
}

#social-links ul li a span.fa-linkedin {
    background-color: #0077B5;
}

#social-links ul li a.instagram {
    background-color: #F56305;
}

#social-links ul li a span.fa-pinterest {
    background-color: #B7081B;
}

#social-links ul li a.envelope {
    background-color: #DC4F43;
}

#social-links ul li a span.fa-whatsapp {
    background-color: #10C044;
}

#social-links ul li a span.fa-telegram {
    background-color: #3596F5;
}

#social-links ul li a.skype {
    background-color: #00A6E8;
}

#social-links ul li a span.fa-reddit {
    background-color: #00A6E8;
}

/* new social share design end*/


/*
==============================================================
    Pricing Area Css
==============================================================
*/
.single_pricing_content {
    padding: 12px;
    border-radius: 5px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.pricing_header {
    background: #5e2ced42;
    border-radius: 5px;
    padding: 20px 0px;
    margin-bottom: 20px;
    -webkit-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    text-align: center;
}

.single_client_review img {
    height: 300px;
}

.pricing_header:hover {
    background-color: var(--themeColor);
}

.pricing_title h4 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
}

.pricing_header:hover .pricing_title h4 {
    color: var(--white);
}

.pricing_subtitle {
    margin-top: 5px;
    margin-bottom: 5px;
}

.pricing_subtitle h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--themeColor);
}

.pricing_header:hover .pricing_subtitle h2 {
    color: var(--white);
}

.pricing_subtitle span {
    font-size: 20px;
    color: var(--themeColor);
    font-weight: 600;
}

.pricing_header:hover .pricing_subtitle span {
    color: var(--white);
}

.pricing_month p {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 16px;
}

.pricing_header:hover .pricing_month p {
    color: var(--white);
}

.pricing_body {
    margin-bottom: 30px;
    margin-top: 30px;
}

.pricing_list ul li {
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.pricing_list ul li:last-child {
    margin-bottom: 0px;
}

.pricing_footer {
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.pricing_btn_link {
    background-color: #5e2ced42;
    text-transform: capitalize;
    font-weight: 500;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 40px;
    color: var(--black);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.pricing_btn_link:hover {
    background-color: var(--themeColor);
    color: var(--white);
}


/*
==============================================================
    Testimonial Area Css
==============================================================
*/
.testimonial_bg {
    background: var(--themeColor);
    margin-top: -100px;
    z-index: 999999;
    position: relative;
}
.single_testimonial {
    padding: 40px;
}
.testimonial_client_image {
    padding-bottom: 20px;
}
.testimonial_client_active.owl-carousel .owl-item img {
    width: 100px;
    border-radius: 100%;
    border: 8px solid var(--themeColor);
    border-left-color: rebeccapurple;
    border-right-color: #ff3c61;
    border-bottom-color: #000;
    margin: 0 auto;
}
.testimonial_client_description{
    position: relative;
}
.testimonial_client_description p {
    font-style: italic;
    font-size: 16px;
    text-align: center;
    color: var(--black);
    font-weight: 300;
}
.testimonial_client_name {
    margin-top: 10px;
    margin-bottom: 10px;
}
.testimonial_client_name h5 {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    color: var(--black);
}
.single_sponsor_content img {
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 30px;
}
/* testimonial_client_active Carousel */
/* .testimonial_client_active .owl-nav div {
	background-color: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	font-size: 20px;
	position: absolute;
	top: 50%;
	margin-top: -23px;
	font-weight: 400;
	margin-left: -21px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.testimonial_client_active .owl-nav div:hover {
	background-color: #ff2d37;
	border-color: #ff2d37;
	color: #fff;
}
.testimonial_client_active .owl-nav .owl-next {
	right: 0;
	margin-right: -21px;
} */

/*
==============================================================
     Area Css
==============================================================
*/
.faq_image {
    position: relative;
}

.faq_image img {
    width: 100%;
}

.faq_video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #33333375;
}

.faq_video_link {
    background: var(--white);
    height: 100px;
    width: 100px;
    text-align: center;
    border-radius: 50%;
    line-height: 100px;
    font-size: 30px;
    -webkit-transition: .5s -webkit-animation ripple-red 1s linear infinite;
    -webkit-animation: ripple-red 1s linear infinite;
    animation: ripple-red 1s linear infinite;
    -webkit-transition: .5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--themeColor);
}

@-webkit-keyframes ripple-red {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(2241, 42, 2, 0)
    }
}

.faq_accordion {
    border: var(--border);
}

.faq_accordion_button {
    border: var(--border);
}

.accordion-button.faq_accordion_button {
    color: var(--black);
    font-weight: 500;
}

.accordion-button.faq_accordion_button:not(.collapsed) {
    color: var(--black);
    background-color: #e7f1ff;
    font-weight: 500;
}

.accordion-button.faq_accordion_button:focus {
    border-color: transparent;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-button.faq_accordion_button::after {
    width: 15px;
    height: 15px;
    background-size: inherit;
}

/*
==============================================================
    Mobile Device Area Css
==============================================================
*/
.mobile_device_menu_toggle {
    border: none;
    background-color: transparent;
    font-size: 25px;
}

.mobile_device_menu_toggle i{
    color: #fff;
}

.mobile_device_logo {
    background-color: black;
    /* width: 100%; */
}

.mobile_device_logo img {
    width: 250px;
    height: 40px;
}

.offcanvas-body.mobile_menu_offcanvas_body {
    padding: 10px 0px;
}

.mobile_menu {}

.mobile_menu ul {}

.mobile_menu ul li {
    display: block;
    border-bottom: var(--border);
}

.mobile_menu ul li:last-child {
    border-bottom: 0;
}

.mobile_menu ul li .mobile_menu_link {
    color: var(--black);
    display: block;
    padding: 5px 20px;
}

.mobile_menu ul li .mobile_menu_link:hover {
    color: var(--themeColor);
}

.mobile_menu ul li .mobile_submenu {
    margin-top: -5px;
    margin-bottom: 5px;
}

.mobile_menu ul li .mobile_submenu li {
    border: none;
    padding: 2px 40px;
}

.mobile_menu ul li .mobile_submenu li .mobile_submenu_link {
    color: var(--black);
    display: block;
}

.mobile_menu ul li .mobile_submenu li:hover>.mobile_submenu_link {}

.mobile_menu ul li i {
    float: right;
    margin-top: -30px;
    margin-right: 17px;
    font-size: 18px;
}


.mobile_device_table {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/*
==============================================================
    Team Slider Area Css
==============================================================
*/
.team_member_image_content {
    max-width: 100%;
    overflow: hidden;
    background-color: #fff;
    border-radius: 10px 10px 10px 10px;
    border-left: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-color: #DCE9F0;

}
.team_member_designation_content h5 {
    color: #212121;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin-top: 10px;
}
.team_member_designation_content h4 {
    color: #212121;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
}
.team_member_designation_content {
    padding: 15px 0px;
}
.team_member_img {
    text-align: center;
}
.team_member_img img {
    border-radius: 10px 10px 0px 0px;
    max-width: 100%;
    max-height: 350px;
    object-position: center;
    object-fit: contain;
}


/*
==============================================================
 Img Gallery Start
==============================================================
*/
.gallery-area {}

.gallery-area .gallery_section_tittle {
    padding: 80px 0px 40px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--themeColor);
}

.gallery-area .gallery_section_tittle span {
    display: block;
    width: 10%;
    height: 3px;
    background-color: var(--themeColor);
}

.gallery-area .gallery_section_tittle h3 {
    color: var(--themeColor);
    text-align: center;
}

.gallery-area .gallery-menu ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gallery-area .gallery-menu ul li {
    margin-right: 20px;
    line-height: 12px;
}

.gallery-area .gallery-menu ul li:last-child {
    margin-right: 0px;
}

.gallery-area .gallery-menu ul li button {
    background-color: transparent;
    border: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #252525;
    text-transform: uppercase;
}

.gallery-area .gallery-menu ul li button.active {
    color: #c22280;
}

.gallery-area .gallery-box {
    overflow: hidden;
    width: 100%;

}

.gallery-area .gallery-box img {
    height: 350px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: 0.5s;
}

.gallery-area .gallery-box img:hover {
    transform: scale(1.2, 1.2);
}





/*
==============================================================
    Responsive Area Css
==============================================================
*/
@media screen and (max-width: 1200px) {
    .about_video {
        margin-right: 0px;
    }
}

@media screen and (max-width: 992px) {
    .header_bottom {
        padding: 10px 0px;
    }

    .main_menu {
        display: none;
    }

    .header_logo {
        display: none;
    }

    .display_none_device_992 {
        display: none;
    }

    .header_top_address_and_email {
        text-align: center;
    }

    .slider_title h1 {
        font-size: 50px;
    }

    .blog_page_tag_social_table_cell {
        display: block;
    }

    .latest_news_tag_table_cell {
        display: block;
        gap: 0;
        margin-bottom: 15px;
    }

    .latest_news_tag_title {
        margin-bottom: 10px;
    }

    .blog_page_share_table_cell {
        display: block;
    }

    .blog_page_share_title {
        margin-bottom: 10px;
    }

    .breadcrumb_title h2 {
        font-size: 22px;
    }

    .submenu_class {
        display: none;
    }

    .submenu_toggle {
        display: block;
    }

    .a_s_c {
        width: 100%;
        padding-right: 0px;
        padding-left: 0px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (max-width: 768px) {

    .blog_details_table_cell {
        gap: 0px;
    }

    .specialist_doctor_name h5 {
        font-size: 16px;
    }

    .specialist_doctor_active .owl-nav div {
        display: none;
    }

    .specialist_doctor_image {
        height: 100%;
    }
    .specialist_doctor_image1 {
        height: 100%;
    }

    .section_top_space {
        padding-top: 20px;
    }

    .single_client_review img {
        height: 250px;
    }

    .latest_news_image {
        height: 200px;
    }

    .address_title h4 {
        font-size: 20px;
    }

    .footer_title {
        margin-bottom: 10px;
    }

    .footer_list ul li {
        margin-bottom: 5px;
    }

    .section_padding {
        padding: 50px 0px;
    }

    .slider_title h1 {
        font-size: 22px;
    }

    .slider_content_table_cell {
        height: 26vh;
    }

    .about_title h2 {
        font-size: 25px;
        padding-right: 0px;
    }

    .what_we_do_content_table_cell {
        margin-top: 25px;
    }

    .what_we_do_title h2 {
        font-size: 25px;
    }

    .footer_title h3 {
        font-size: 24px;
    }

    .breadcrumb_area {
        padding: 150px 0px;
    }

    .service_serial_number span {
        right: 6px;
        font-size: 27px;
    }

    .fixed_footer_whatsapp_icon {
        position: relative;
        background-color: #0DC043;
        color: var(--white);
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 100%;
        position: fixed;
        bottom: 10px;
        right: 15px;
        z-index: 99;
    }

}

@media screen and (max-width: 600px) {
    .header_top_address_and_email ul li .header_top_email_link {
        font-size: 14px;
    }
    .top_header_social_media ul li .top_header_social_media_link {
        width: 30px;
        height: 25px;
        line-height: 25px;
    }
    .slider_active .owl-dots div {
        display: none;
    }

    .blog_details_post_date span {
        display: none;
    }

    .blog_details_post_date i {
        display: none;
    }

    .blog_page_tag_social_table_cell {
        padding: 0px 45px;
    }
    .section_heading h2 {
        font-size: 22px;
    }

    .section_padding_top {
        padding-top: 30px;
    }

    .section_padding_bottom {
        padding-bottom: 30px;
    }

    .latest_news_content {
        padding: 20px 20px;
    }

    .common_btn {
        padding: 10px 10px;
    }

    .features_left_side_subtitle h2 {
        font-size: 25px;
    }

    .video_service_title h2 {
        font-size: 22px;
    }

    .breadcrumb_area {
        padding: 100px 0px;
    }

    .latest_projects_image_content {
        height: 300px;
    }

    .latest_news_image {
        height: 250px;
    }

    .about_video iframe {
        width: 100%;
        height: auto;
    }

    .top_header_social_media {
        justify-content: space-around;
        margin: 3px 0px;
    }
}


@media screen and (max-width: 576px) {
    .a_s_c {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
        margin-right: auto;
        margin-left: auto;
    }
 }
