body {
    font-size: 18px;
    line-height: 1.4;
    color: #303639;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

a {
    color: #1A73FF;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #303639;
    text-decoration: none;
}

a:focus {
    outline: none;
}

p {
    margin: 0 0 25px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
    font-family: 'Amiri', serif;
    line-height: 1.2;
    font-weight: 400;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 30px;
}


h5 {
    font-size: 20px;
    margin-bottom: 10px;
}

h6 {
    font-size: 18px;
    margin-bottom: 10px;
}


h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

ol {
    padding-left: 20px;

}

ol li {
    margin-bottom: 5px;

}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    padding: 0;
    padding-left: 20px;
    position: relative;
    list-style: none;
    margin-bottom: 5px;
}

ul li:before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background: #303639;
    position: absolute;
    top: 9px;
    left: 0;
}


input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
.form-control,
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #000000;
    height: auto;
    padding: 13px 7px;
    padding-top: 0;
    color: #303639;
    font-size: 13px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}

textarea {
    height: 68px;
}

select {
    background: url(images/down-arrow.svg) right 10px center no-repeat;
    background-size: 10px;
    padding-right: 10px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

select[multiple] {
    background: transparent;
    min-height: 85px;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000;
    opacity: 0.5;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #000;
    opacity: 0.5;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #000;
    opacity: 0.5;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #000;
    opacity: 0.5;
}

button[type="submit"],
button[type="button"],
input[type="button"],
input[type="submit"] {
    background: #fff;
    color: #1A73FF;
    border: 1px solid #1A73FF;
    padding: 13px 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

button[type="submit"]:hover,
button[type="button"]:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background: #1A73FF;
    color: #fff;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: inherit;
}

/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
}



/* custom checkbox */
.form_input_check {
    position: relative;
    margin: 0;
    padding-left: 40px;
}

.form_input_check span {
    margin: 0;
    padding: 0;
}

.form_input_check input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 22px;
    height: 22px;
    border: 2px solid #feb620;
    background: #fff;
}

.form_input_check input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/checked.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
  
} */
.form_input_check input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);

}


/* custom radio */
.form_input_radio {
    position: relative;
    margin: 0;
    padding-left: 30px;
}

.form_input_radio span {
    margin: 0;
    padding: 0;
}

.form_input_radio input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
  
} */
.form_input_radio input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);

}

/* custom radio end */




/* navbar*/
.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 7px;
    padding: 0 0;
    position: relative;
}

.navbar-nav li:before {
    display: none;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    color: #303639;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: #1A73FF;
}

/* navbar submenu*/
.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 160px;
    padding: 0;
}

.sub-menu>li>a {
    color: #425964;
    display: block;
    width: 100%;
    padding: 5px 10px;
    font-size: 15px;
}

.sub-menu>li {
    width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 0;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: #1A73FF;
    color: #fff;
}

.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0; 
}

.cmn_gap {
    padding-top: 100px;
    padding-bottom: 100px;
}

.main-head {
    padding: 34px 0;
    background: #f5f7f8;
    position: relative;
    z-index: 100;
    transition: 0.6s ease-in-out;
    -webkit-transition: 0.6s ease-in-out;
}

.main-head.sticky {
    position: fixed;
    padding: 20px 0;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.6s ease-in-out;
    -webkit-transition: 0.6s ease-in-out;
    animation-name: stickySlideDown;
    animation-duration: 0.5s;
    background: #fff;
    box-shadow: 1px 1px 17px -11px #000;
    -webkit-box-shadow: 1px 1px 17px -11px #000;
}

@keyframes stickySlideDown {
    0% {
        opacity: 0.7;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav>li.menu-item-has-children>a {
    padding-right: 20px;
}

.navbar-nav>li.menu-item-has-children>a:before {
    position: absolute;
    content: "\f107";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    right: 0;
    top: 4px;
    color: #1A73FF;
    width: auto;
    height: auto;
    line-height: 1;
    font-size: 13px;
}

.login_signup_sect li {
    display: inline-block;
    padding: 0;
    margin: 0;
    padding-left: 23px;
}

.login_signup_sect li:before {
    display: none;
}

.login_signup_sect li:first-child {
    padding-left: 0;
}

.login_signup_sect li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.btn_logn {
    color: #303639;
}

.btn_logn:hover {
    color: #1A73FF;
}

.btn_sgnup {
    min-width: 98px;
    padding: 13px 15px;
    background: #1A73FF;
    color: #fff;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    text-align: center;
}

.btn_sgnup:hover {
    background: #303639;
    color: #fff;
}

.mobile_hd_hd {
    display: none;
}

.main-head .navbar-brand {
    mix-blend-mode: multiply;
}

.home_page_bannner_top {
    background: #f5f7f8;
    padding-top: 70px;
    padding-bottom: 55px;
    position: relative;
    z-index: 1;
}

.bnn_sp_img1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bnn_sp_img1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bnn_headingss h5 {
    color: #1A73FF;
    font-style: italic;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.bnn_headingss h1 {
    text-transform: capitalize;
}

.bnn_headingss h1 span {
    color: #1A73FF;
}

.bnn_headingss_prgph {
    position: relative;
    padding-left: 233px;
}

.bnn_headingss_prgph:after {
    position: absolute;
    content: "";
    width: 217px;
    height: 2px;
    background: #303639;
    left: 0;
    top: 11px;
}

.schdule_appntment_sect {
    background: #FFFFFF;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08);
    padding: 36px 28px;
    position: relative;
}

.schdule_appntment_sect_heading h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.schcl_app_para {
    position: relative;
    font-size: 16px;
    padding-left: 86px;
}

.schcl_app_para:after {
    position: absolute;
    content: "";
    width: 68px;
    height: 2px;
    background: #303639;
    left: 0;
    top: 11px;
}

.schdule_appntment_sect_heading {
    margin-bottom: 40px;
}

.num_wth_inptt {
    position: relative;
}

.num_wth_inptt .icon_s {
    position: absolute;
    right: 7px;
    top: 0;
    display: inline-block;
    width: 18px;
}

.num_wth_inptt input[type="text"],
.num_wth_inptt input[type="email"],
.num_wth_inptt input[type="url"],
.num_wth_inptt input[type="password"],
.num_wth_inptt input[type="search"],
.num_wth_inptt input[type="number"],
.num_wth_inptt input[type="tel"],
.num_wth_inptt input[type="range"],
.num_wth_inptt input[type="date"],
.num_wth_inptt input[type="month"],
.num_wth_inptt input[type="week"],
.num_wth_inptt input[type="time"],
.num_wth_inptt input[type="datetime"],
.num_wth_inptt input[type="datetime-local"],
.num_wth_inptt input[type="color"],
.num_wth_inptt textarea {
    padding-right: 30px;
}

.num_wth_inptt input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

.num_wth_inptt [type="time"]::-webkit-inner-spin-button {
    display: none;
}

.num_wth_inptt [type="time"]::-webkit-calendar-picker-indicator {
    display: none;
}



.button_of_apptmnts_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 -5px;
    margin-top: 30px;
}

.button_of_apptmnts_wrap>* {
    padding: 0px 0px;
}

.schdule_btnmnns_call a {
    display: inline-block;
    font-size: 16px;
    color: #1A73FF;
    font-weight: 500;
    text-transform: uppercase;
}

.schdule_btnmnns_call a span {
    position: relative;
    padding: 2px 0;
    padding-left: 26px;
}

.schdule_btnmnns_call a span img {
    width: 18px;
    position: absolute;
    left: 0;
    top: 3px;
}

.schdule_btnmnns_call a:hover {
    color: #303639;
}

.home_bannner_sliderrrr {
    line-height: 0;
}

.home_page_bannner_bttms {
    position: relative;
}

.home_page_bannner_bttms .counter {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #F6F8F9;
    padding: 38px 15px;
    padding-bottom: 7px;
    min-width: 208px;
    z-index: 1;
    text-align: center;
}

.counter_wrppr {
    display: inline-block;
    align-items: flex-end;
    justify-content: center;
    line-height: 1;
}

.counter_wrppr .counter_start {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    font-family: 'Amiri', serif;
}

.counter_wrppr .counter_total {
    font-size: 24px;
    font-family: 'Amiri', serif;
    font-weight: 400;
    display: inline-block;
}

.home_page_bannner_top_rightt .schdule_appntment_sect {
    z-index: 1;
    margin-bottom: -160px;
}

.home_bannner_sliderrrr_innerss img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center;
}


.back_grey {
    background: #f5f7f8;
}


.male_fertility_servics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -10px;
    margin-bottom: -20px;
}

.male_fertility_servics_inner {
    padding: 0 10px;
    flex-basis: 33.33%;
    max-width: 33.33%;
    margin-bottom: 20px;
}

.male_fertility_servics_inner .main_img img {
    width: 100%;
}

.male_fertility_servics_inner_wrap {
    display: flex;
    flex-wrap: wrap;
}

.male_fertility_servics_inner_wrap>* {
    margin-bottom: 20px;
}

.male_fertility_servics_inner_wrap {
    margin-bottom: -20px;
}

.male_fertility_servics_inner_btmss {
    background: #1972ff;
    color: #fff;
    text-align: center;
    padding: 38px 15px;
    min-height: 282px;
    max-height: 282px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.male_fertility_servics_inner_btmss .wrpd {
    max-height: 100%;
    width: 100%;
}

.male_fertility_servics_inner_btmss:after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

.male_fertility_servics_inner:nth-child(even) .male_fertility_servics_inner_btmss::after {
    top: inherit;
    bottom: 0;
    border-top: 0;
    border-bottom: 10px solid #fff;
}

.headlth_headd h4 {
    font-size: 26px;
    font-weight: 400;
}

.headlth_headd {
    position: relative;
    padding-bottom: 7px;
    margin-bottom: 14px;
}

.headlth_headd:after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: #FFFFFF;
    height: 2px;
    width: 51px;
}

.male_fertility_servics_inner_btmss {
    font-size: 16px;
}

.red_mrrr_btns {
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline !important;
    text-transform: uppercase;
    color: #fff;
}

.male_fertility_servics_inner:nth-child(even) .male_fertility_servics_inner_wrap .main_img {
    order: 1;
}

.male_fertility_servics_inner:nth-child(even) .male_fertility_servics_inner_wrap .male_fertility_servics_inner_btmss {
    order: 0;
}

.male_fertility_servics_inner_wrap .main_img {
    position: relative;
    padding-bottom: 122%;
    width: 100%;
    display: inline-block;
}

.male_fertility_servics_inner_wrap .main_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: top center;
}

.male_fertility_servics_inner_btmss .prgph {
    margin-bottom: 18px;
    max-height: 7vw;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #303639 #fff;
}


.what_do_headng_partsd h5 {
    color: #1A73FF;
    font-style: italic;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.what_do_headng_partsd h2 {
    margin-bottom: 15px;
}

.vbtnn {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #1A73FF;
    border: 1px solid #1A73FF;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    text-transform: uppercase;
    padding: 12px 35px;
    margin-top: 15px;
}

.vbtnn:hover {
    background: #1A73FF;
    color: #fff;
}

.what_do_headng_partsd {
    position: relative;
    z-index: 1;
    padding-right: 76px;
}

.sd_wrap_hd h2 {
    position: relative;
    text-transform: capitalize;
}

.sd_wrap_hd h2:after {
    position: absolute;
    content: "";
    background: #1A73FF;
    height: 44px;
    width: 108px;
    right: -128px;
    top: 0;
}

.what_do_headng_partsd h4 {
    margin-bottom: 10px;
}

.what_do_headng_partsd p .lt {
    font-weight: 300;
}

.what_do_headng_partsd p .bld {
    font-size: 20px;
}

.what_do_headng_partsd.left {
    padding: 0;
    padding-left: 76px;
}

.what_do_headng_partsd.left .sd_wrap_hd h2::after {
    right: inherit;
    left: -128px;
}

.health_msssn_figgg .main_img {
    display: inline-block;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    padding-right: 60px;
}

.health_msssn_figgg .main_img:after {
    content: "";
    position: absolute;
    background: #1A73FF;
    width: 100%;
    height: 70%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.smu_urology_secct {
    background: #303639;
}

.o-hidddd {
    overflow: hidden;
}

.o-hiddddx {
    overflow-x: hidden;
}

.o-hiddddy {
    overflow-y: hidden;
}


.txt-whitre h1,
.txt-whitre h2,
.txt-whitre h3,
.txt-whitre h4,
.txt-whitre h6,
.txt-whitre {
    color: #fff;
}

.smu_urology_secct_roww {
    margin: 0;
}

.smu_urology_secct_col_lft {
    padding: 70px 0;
    position: relative;
    z-index: 1;
}

.smu_urology_secct_col_lft:after {
    position: absolute;
    content: "";
    top: 0;
    width: 1920px;
    left: -1920px;
    height: 100%;
    background: #f5f7f8;
    z-index: -1;
}

.smu_urology_secct_col_lft:before {
    position: absolute;
    content: "";
    top: 0;
    width: 80%;
    left: 0;
    height: 100%;
    background: #f5f7f8;
    z-index: -1;
}

.smu_urology_secct_col_rght {
    padding: 70px 0;
    align-self: center;
    position: relative;
    z-index: 1;
}

.smu_urology_secct_col_rght_wrap {
    height: 100%;
}

.smi_urlgystc {
    position: relative;
}

.smi_urlgystc .main_img {
    margin-bottom: 0;
}

.smi_urlgystc .main_img img {
    width: 100%;
}

.smi_urlgystc_backk {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(26, 115, 255, 0.4);
    height: 80%;
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    color: #fff;
    text-align: center;
}

.smi_urlgystc_backk h2 {
    font-size: 120px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.smi_urlgystc_backk h2 span {
    font-size: 64px;
    display: block;
    font-weight: 300;
}


.btn_part_ullll li {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-right: 7px;
}

.btn_part_ullll li:last-child {
    margin-right: 0;
}

.vbtnn.wt {
    border-color: #fff;
    color: #fff;
}

.vbtnn.wt:hover {
    background: #fff;
    color: #1A73FF;
}

.vbtnn.wt_back {
    background: #fff;
    border-color: #fff;
    color: #1A73FF;
}

.vbtnn.wt_back:hover {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.why_choose_use_sect_row {
    display: flex;
    flex-wrap: wrap;
}

.why_choose_use_sect_col_lft {
    flex-basis: 35%;
    max-width: 35%;
}

.why_choose_use_sect_col_rght {
    flex-basis: 65%;
    max-width: 65%;
    margin-top: 50px;
    position: relative;
}

.why_choosen_imgT_figure {
    position: relative;
    max-width: 480px;
}

.why_choosen_imgT_figure .main_img img {
    width: 100%;
    border: 8px solid rgba(26, 115, 255, 1);
    border-radius: 50%;
}

.why_choosen_imgT_figure .main_img {
    margin-bottom: 0;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid rgba(26, 115, 255, 0.2);
    position: relative;
    z-index: 1;
}

.why_choosen_imgT_figure .main_img:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.why_choosen_imgT_figure .ply_btns {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.why_choosen_imgT_content_inners h4 {
    margin-bottom: 10px;
}

.why_choosen_imgT_content li {
    margin-bottom: 0;
    padding-left: 30px;
    width: 57%;
    margin-top: 30px;
    margin-left: -50px;
}

.why_choosen_imgT_content li:before {
    background: #1A73FF;
    width: 15px;
    height: 15px;
    border-radius: 0;
    top: -1px;
}

.why_choosen_imgT_content li:nth-child(1),
.why_choosen_imgT_content li:nth-child(2) {
    position: absolute;
    right: 0;
    width: calc(100% - 480px);
    margin-left: auto;
    margin-top: 0;
}

.why_choosen_imgT_content li:nth-child(1) {
    top: -3%;
    right: 3%;
}

.why_choosen_imgT_content li:nth-child(2) {
    top: 40%;
    width: calc(100% - 510px);
}

.why_choosen_imgT_content_inners {
    font-size: 16px;
}

.contact_form_get_touch_form_col input[type="submit"],
.contact_form_get_touch_form_col input[type="button"],
.contact_form_get_touch_form_col button[type="submit"],
.contact_form_get_touch_form_col button[type="button"] {
    margin-top: 20px;
}

.health_msssn_figgg.left .main_img::after {
    right: inherit;
    left: 0;
}

.health_msssn_figgg.left .main_img {
    padding-right: 0;
    padding-left: 60px;
}

.main_foot_top_wrapper {
    padding: 60px 0;
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.main_foot_top_wrapper:after {
    position: absolute;
    content: "";
    background: #fff;
    left: 0;
    top: 0;
    width: 86%;
    height: 100%;
    z-index: -1;
}

.contact_form_get_touch_head {
    margin-bottom: 40px;
    position: relative;
    padding-left: 130px;
    z-index: 1;
}

.contact_form_get_touch_form {
    padding-left: 130px;
    position: relative;
    z-index: 1;
}

.contact_form_get_touch_head:after {
    position: absolute;
    content: "";
    background: #1A73FF;
    height: 44px;
    width: 108px;
    left: 0;
    top: 50px;
    z-index: -1;
}

.contact_form_get_touch_head h5 {
    color: #1A73FF;
    font-style: italic;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.contact_form_get_touch_head h2 {
    margin-bottom: 10px;
}

.main_foot_btmmms {
    background: #051022;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    margin-top: -130px;
    padding-top: 130px;
}

.main_foot_btmmms_up {
    padding: 105px 0;
}

.foot_headd {
    margin-bottom: 18px;
}

.foot_headd p {
    font-size: 22px;
    font-weight: 400;
}

.timing_foot_col1 li:before {
    display: none;
}

.timing_foot_col1 li {
    padding: 0;
    margin: 0;
    margin-bottom: 4px;
}

.timing_foot_col1 li:last-child {
    margin-bottom: 0;
}

.qckk_lnkss li:before {
    display: none;
}

.qckk_lnkss li {
    margin-bottom: 10px;
    padding: 0;
}

.qckk_lnkss li:last-child {
    margin-bottom: 0;
}

.qckk_lnkss li a {
    color: #fff;
}

.qckk_lnkss li a:hover {
    color: #1A73FF;
}

.address_part_foot li:before {
    display: none;
}

.address_part_foot li {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

.address_part_foot li:last-child {
    margin-bottom: 0;
}

.address_part_foot li a {
    color: #fff;
}

.address_part_foot li a:hover {
    color: #1A73FF;
}

.newsletter_sign_outttrs {
    position: relative;
}

.newsletter_sign_outttrs input[type="text"],
.newsletter_sign_outttrs input[type="email"],
.newsletter_sign_outttrs input[type="tel"] {
    color: #fff;
    border-color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding-right: 30px;
}

.newsletter_sign_outttrs input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

.newsletter_sign_outttrs input::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

.newsletter_sign_outttrs input:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

.newsletter_sign_outttrs input:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

.newsletter_sign_outttrs button[type="submit"],
.newsletter_sign_outttrs button[type="button"],
.newsletter_sign_outttrs input[type="button"],
.newsletter_sign_outttrs input[type="submit"] {
    background: url(images/send_btns.png) no-repeat center center;
    background-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    border: 0;
    min-width: inherit;
    font-size: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.main_foot_btmmms_btmsd {
    font-size: 14px;
    text-align: center;
    padding: 23px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.main_foot_top {
    position: relative;
    z-index: 1;
}


.back_grey.extends {
    position: relative;
    z-index: 1;
}

/*.back_grey.extends:after{
  position: absolute;
  content: "";
  left: 0;
  bottom: -500px;
  width: 100%;
  height: 500px;
  background: #f5f7f8;
  z-index: -1;
}*/
.main_foot.extend {
    background: #f5f7f8;
}

.main_foot {
    position: relative;
    z-index: 2;
}

.ps-rltvvv {
    position: relative;
    z-index: 1;
}

.ps-rltvvv .icnss_cmn {
    position: absolute;
    z-index: -1;
}

.personlsd_care_service .icon1 {
    left: 4%;
    top: 4%;
}

.personlsd_care_service .icon2 {
    right: 6%;
    top: 5%;
}

.personlsd_care_service .icon3 {
    bottom: 0;
    left: 36%;
}

.keeping_health_min .icon1 {
    top: 20%;
    left: 0;
}

.keeping_health_min .icon2 {
    top: 50%;
    left: 6%;
}

.keeping_health_min .icon3 {
    bottom: -7%;
    right: 6%;
}

.smu_urology_secct_col_rght .icon1 {
    left: 65%;
    top: 11%;
}

.smu_urology_secct_col_rght .icon2 {
    right: -12%;
    top: 30%;
}

.smu_urology_secct_col_rght .icon3 {
    right: -12%;
    bottom: 0;
}

.why_choose_use_sect .icon1 {
    left: 50%;
    top: 4%;
}

.why_choose_use_sect .icon2 {
    top: 50%;
    left: 20%;
}

.why_choose_use_sect .icon3 {
    bottom: 13%;
    right: 23%;
}

.main_foot_top_wrapper .icnss_cmn {
    z-index: 1;
}

.main_foot_top_wrapper .icon1 {
    left: 44%;
    top: 7%;
}

.main_foot_top_wrapper .icon2 {
    bottom: 8%;
    left: 27%;
}

.main_foot_top_wrapper .icon3 {
    bottom: 28%;
    left: 57%;
}

.main_foot_top_wrapper .pattern1 {
    right: 5%;
    top: -8%;
}

.personlsd_care_service .pattern1 {
    right: 0;
    bottom: -7%;
}

.ps_rltv_on {
    position: relative;
}

.keeping_health_min .pattern1 {
    left: 0;
    bottom: -7%;
}

.smu_urology_secct.ps_rltv_on {
    z-index: 0;
}


/*about_us*/
.inner_page_bannn_imgg .mn_bann_img {
    margin-bottom: 0;
}

.inner_page_bannn_imgg .mn_bann_img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
}

.featured_products_sectttd ul{ 
 display: flex;
 align-items: center;
 margin-top: 20px;
 justify-content: center;
}


.why_choosen_imgT_content li {
    margin-left: 20px;
}

.featured_products_sectttd ul li::before{ 
 display: none;
}

.featured_products_sectttd ul li{ 
    padding-left: 0;
    margin-bottom: 0;
 }

.featured_products_sectttd ul li:not(:last-child){ margin-right: 20px; }

.featured_products_sectttd ul li a{ 
 display: inline-block;
 color: #1A73FF;
 font-size: 25px;
}

.featured_products_sectttd ul li a:hover{ 
 color: #303639;
}

.Professionalism_exprt_contnt h3 {
    margin-bottom: 15px;
}

.physcn_who_care_col_lft {
    align-self: center;
}

.Professionalism_exprt_imagesd .main_img {
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    z-index: 1;
    padding-left: 14px;
    padding-top: 14px;
}

.Professionalism_exprt_imagesd .main_img:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: #1A73FF;
    width: 30%;
    height: 70%;
    z-index: -1;
}

.physcn_who_care_sect_inn:nth-child(even) .physcn_who_care_col_lft {
    order: 1;
}

.physcn_who_care_sect_inn:nth-child(even) .physcn_who_care_col_rght {
    order: 0;
}

.physcn_who_care_sect {
    margin-top: 74px;
}

.physcn_who_care_sect_inn {
    margin-bottom: 50px;
}

.physcn_who_care_sect_inn:last-child {
    margin-bottom: 0;
}

.Professionalism_exprt_imagesd .main_img:before {
    position: absolute;
    content: "";
    right: -7%;
    bottom: -50px;
    background: url(images/inner_pattern.png) repeat center center;
    background-size: 100% 100%;
    width: 210px;
    height: 177px;
    z-index: -1;
}

.physcn_caredds_ttrs {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.physcn_caredds_ttrs:before {
    position: absolute;
    content: "";
    right: -7%;
    bottom: -50px;
    background: url(images/inner_pattern.png) repeat center center;
    background-size: 100% 100%;
    width: 210px;
    height: 177px;
    z-index: -1;
}

.physcn_caredds_ttrs:after {
    position: absolute;
    content: "";
    background: #1A73FF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    height: 80%;
    width: 80%;
    z-index: -1;
}

.physcn_who_care_sect_inn:nth-child(even) .Professionalism_exprt_contnt {
    padding-left: 18px;
}

.prsnd_name {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 400;
    font-family: 'Amiri', serif;
    display: inline-block;
    margin-bottom: 18px;
}

.prsnd_name span {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
}

.meet_teams_bio_sect_col_outer .main_img img {
    width: 100%;
}

.meet_teams_bio_sect_col_outer .main_img {
    margin-bottom: 15px;
}

.meet_teams_bio_sect_col_outer_btms h5 {
    font-size: 24px;
    margin-bottom: 8px;
}

.meet_teams_bio_sect_col_outer_btms {
    font-size: 15px;
}

.client_testimonial_sect_top_row {
    margin: 0;
    min-height: 300px;
}

.client_testimonial_sect_top_col_lft {
    padding: 0;
    flex-basis: calc(100% - 390px);
    max-width: calc(100% - 390px);
    width: 100%;
}

.client_testimonial_sect_top_col_rght {
    padding: 0;
    flex-basis: 390px;
    max-width: 390px;
    width: 100%;
}



.client_testimonial_sect_top_col_rght {
    padding-top: 60px;
    padding-bottom: 60px;
}

.client_testimonial_sect_top {
    position: relative;
    z-index: 1;
}

.meet_our_team_dctrss_row {
    align-items: center;
}

.client_testimonial_sect_btmsd_row {
    margin: 0;
}

.client_testimonial_sect_btmsd_col_lft {
    padding: 0;
    flex-basis: calc(100% - 393px);
    max-width: calc(100% - 393px);
    width: 100%;
    align-self: center;
    padding: 30px 0;
    padding-right: 30px;
}

.client_testimonial_sect_btmsd_col_rghtt {
    padding: 0;
    flex-basis: 393px;
    max-width: 393px;
    width: 100%;
}

.testimonial_slider_quote_inn blockquote {
    font-size: 22px;
    font-style: italic;
    font-family: 'Amiri', serif;
    margin-bottom: 20px;
}

.testimonial_slider_quote_inn {
    position: relative;
    display: inline-block;
    padding-left: 54px;
    padding-top: 32px;
}

.testimonial_slider_quote_inn:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: url(images/quotn.png) no-repeat;
    width: 70px;
    height: 70px;
    background-size: 70px;
}

.testimonial_slider_quote_inn .named {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 400;
    font-family: 'Amiri', serif;
    display: inline-block;
    margin-bottom: 18px;
}

.testimonial_slider_quote_inn .named span {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    margin-left: 10px;
}

.container_full {
    max-width: 100%;
    padding-left: calc((100% - 1140px + 30px)/2);
}

.container_full_Rt {
    max-width: 100%;
    padding-right: calc((100% - 1140px + 30px)/2);
}

.testimonial_slider_imagesd_wrppprd {
    position: relative;
}

.cmn_arrrow_Sec .slick-arrow.slick-hidden {
    display: none;
}


.cmn_arrrow_Sec {
    display: flex;
    flex-wrap: wrap;
}

.cmn_arrrow_Sec .slick-arrow {
    width: 51px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1A73FF;
    color: #fff;
    padding: 0;
    min-width: inherit;
    margin: 0;
    border: 0;
}

.cmn_arrrow_Sec .slick-arrow:hover,
.cmn_arrrow_Sec .slick-arrow.slick-disabled {
    color: #1A73FF;
    background: #F5F7F8;
}

.testimonial_slider_imagesd_Arrow {
    position: absolute;
    left: 0;
    bottom: 5px;
}

.keep_health_mind .icon1 {
    left: 7%;
    top: 4%;
}

.keep_health_mind .icon2 {
    right: 7%;
    top: 4%;
}

.keep_health_mind .icon3 {
    left: 40%;
    top: 41%;
}

.keep_health_mind .icon4 {
    right: 14%;
    bottom: 10%;
}

.meet_our_team_dctrss .icon1 {
    left: 0;
    top: 28%;
}

.meet_our_team_dctrss .icon2 {
    right: 3%;
    top: 40%;
}

.meet_our_team_dctrss .icon3 {
    left: 7%;
    bottom: 18%;
}

.client_testimonial_sect .icon1 {
    right: 8%;
    top: 6%;
}

.client_testimonial_sect .icon2 {
    left: 5%;
    bottom: 22%;
}

.client_testimonial_sect .icon3 {
    bottom: -4%;
    left: 18%;
}

.client_testimonial_sect .icon4 {
    left: 51%;
    bottom: 17%;
}

.meet_our_team_dctrss .pattern1 {
    bottom: -17%;
    left: 0;
}

.what_do_headng_partsd.gapd {
    margin-bottom: 45px;
}

.what_do_headng_partsd.gapd:last-child {
    margin-bottom: 0;
}

.services_listing_dd_inner_contents h3 {
    font-size: 40px;
    margin-bottom: 15px;
}

.services_listing_dd_inner_col_rghtt {
    align-self: center;
}

.services_listing_dd_inner_imaged .main_img {
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    z-index: 1;
    padding-top: 23px;
    margin-right: 50px;
    margin-bottom: 50px;
}

.services_listing_dd_inner_imaged .main_img:after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    top: 0;
    background: #1A73FF;
    z-index: -1;
}

.services_listing_dd_inner_imaged .main_img:before {
    position: absolute;
    content: "";
    background: url(images/service_in_pattern.png) repeat center center;
    background-size: 100% 100%;
    right: -50px;
    bottom: -50px;
    width: 230px;
    height: 197px;
    z-index: -1;
}

.services_listing_dd_inner {
    margin-bottom: 58px;
}

.services_listing_dd_inner:last-child {
    margin-bottom: 0;
}

.services_listing_dd_inner:nth-child(even) .services_listing_dd_inner_col_lft {
    order: 1;
}

.services_listing_dd_inner:nth-child(even) .services_listing_dd_inner_col_rghtt {
    order: 0;
}

.services_listing_dd_inner:nth-child(even) .services_listing_dd_inner_imaged .main_img {
    margin-right: 0;
    margin-left: 50px;
}

.services_listing_dd_inner:nth-child(even) .services_listing_dd_inner_imaged .main_img::before {
    right: inherit;
    left: -50px;
}


.service_page_what_do .icon1 {
    left: 8%;
    top: 3%;
}

.service_page_what_do .icon2 {
    left: 36%;
    top: 20%;
}

.service_page_what_do .icon3 {
    right: 2%;
    top: 5%;
}

.service_page_what_do .icon4 {
    right: 40%;
    top: 40%;
}

.service_page_what_do .icon5 {
    left: 3%;
    top: 52%;
}

.service_page_what_do .icon6 {
    left: 33%;
    top: 65%;
}

.service_page_what_do .icon7 {
    right: 34%;
    bottom: 5%;
}

.patterns_cmns {
    position: absolute;
    left: 0;
    bottom: 0;
}


.male_fertility_servics.five .male_fertility_servics_inner {
    flex-basis: 20%;
    max-width: 20%;
}

.male_fertility_servics_inner.five .male_fertility_servics_inner_btmss {
    min-height: 291px;
    max-height: 291px;
}

.male_fertility_servics_inner.five .male_fertility_servics_inner_wrap .main_img {
    padding-bottom: 120%;
}

.fertile_catagorisdd_btmss {
    margin-top: 50px;
}

.vbtnn.center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.men_fertility_paged_sect .icon1 {
    left: 8%;
    top: 3%;
}

.men_fertility_paged_sect .icon2 {
    right: 2%;
    top: 5%;
}

.men_fertility_paged_sect .icon3 {
    left: 5%;
    top: 40%;
}

.men_fertility_paged_sect .icon4 {
    right: 5%;
    top: 40%;
}

.men_healthd_Sectd .icon1 {
    left: 8%;
    top: 3%;
}

.men_healthd_Sectd .icon2 {
    right: 8%;
    top: 3%;
}

.men_healthd_Sectd .icon3 {
    right: 28%;
    top: 13%;
}

.men_healthd_Sectd .icon4 {
    left: 8%;
    top: 53%;
}

.men_healthd_Sectd .icon5 {
    right: 10%;
    bottom: 10%;
}

.urology_sectdd .icon1 {
    left: 8%;
    top: 3%;
}

.urology_sectdd .icon2 {
    right: 8%;
    top: 3%;
}

.urology_sectdd .icon3 {
    left: 50%;
    top: 12%;
}

.urology_sectdd .icon4 {
    left: 4%;
    top: 33%;
}

.urology_sectdd .icon5 {
    right: 2%;
    bottom: 30%;
}


.contact_Fromd_sec_new {
    padding-left: 76px;
    margin-top: 30px;
}

.contact_Fromd_sec_new_col .button_of_apptmnts_wrap {
    justify-content: center;
    margin-top: 0;
}

.contact_Fromd_sec_new_col .contact-sedule{
    display: grid;
    justify-content: center;
}

.schedule_appntment_contactPG_top_col_lft {
    align-self: center;
}


.contactd_infos_hourd {
    margin-top: 110px;
}

.contact_hrds_head h3 {
    margin-bottom: 10px;
}

.contact_hrds_head {
    font-weight: 300;
    margin-bottom: 26px;
}

.contact_hrds_ulll li:before {
    display: none;
}

.contact_hrds_ulll li {
    padding: 0;
    margin: 0;
    margin-bottom: 16px;
}

.contact_hrds_ulll li:last-child {
    margin-bottom: 0;
}

.contact_hrds_ulll_inners {
    display: flex;
    flex-wrap: wrap;
}

.contact_hrds_ulll_inners .main_im {
    margin-bottom: 0;
    flex-basis: 25px;
    max-width: 25px;
}

.contact_hrds_ulll_inners .contact_hrds_ulll_inners_rtt {
    flex-basis: calc(100% - 25px);
    max-width: calc(100% - 25px);
    align-self: center;
    font-size: 20px;
    font-weight: 400;
    padding-left: 13px;
}

.contact_hrds_ulll_inners .contact_hrds_ulll_inners_rtt p a {
    color: #303639;
}

.contact_hrds_ulll_inners .contact_hrds_ulll_inners_rtt p a:hover {
    color: #1A73FF;
}

.contact_hrds_openng {
    margin-top: 44px;
}

.contact_hrds_openng h3 {
    margin-bottom: 15px;
}

.contact_hrds_openng li:before {
    display: none;
}

.contact_hrds_openng li {
    padding: 0;
    margin-bottom: 10px;
}

.contact_hrds_openng li:last-child {
    margin-bottom: 0;
}

.map_Secttnd {
    position: relative;
    line-height: 0;
    margin-left: 30px;
    z-index: 1;
    padding-right: 15px;
    padding-bottom: 15px;
}

.map_Secttnd:after {
    position: absolute;
    content: "";
    background: #1A73FF;
    width: 30%;
    height: 60%;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.map_Secttnd iframe {
    width: 100%;
    height: 430px;
}

.contactd_infos_hourd_col_rghtt {
    align-self: center;
}

.map_Secttnd .ptrnd {
    position: absolute;
    left: -60px;
    top: -60px;
    z-index: -1;
}

.schedule_appntment_contactPG_top .icon1 {
    left: 5%;
    top: -10%;
}

.schedule_appntment_contactPG_top .icon2 {
    right: 5%;
    top: -10%;
}

.schedule_appntment_contactPG_top .icon3 {
    left: 40%;
    bottom: 0;
}

.contactd_infos_hourd .icon1 {
    bottom: 0;
    right: 25%;
}

.usefull_website_inform_col_parent {
    display: flex;
    flex-wrap: wrap;
}

.usefull_website_inform_col_parent .main_img {
    margin-bottom: 0;
    flex-basis: 54%;
    max-width: 54%;
    padding-right: 15px;
}

.usefull_website_inform_col_parent .main_img figure {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    padding-top: 13px;
}

.usefull_website_inform_col_parent .main_img figure:after {
    position: absolute;
    content: "";
    background: #1A73FF;
    width: 80%;
    height: 80%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.usefull_website_inform_col_parent .main_img figure img {
    width: 100%;
}

.usefull_website_inform_col_parent_btms {
    flex-basis: 46%;
    max-width: 46%;
    padding-left: 15px;
    align-self: center;
    font-size: 16px;
}

.usefull_website_inform_col_parent_btms h4 {
    margin-bottom: 7px;
}

.usefull_website_inform_col_parent_btms h4 a {
    color: #303639;
}

.usefull_website_inform_col_parent_btms h4 a:hover {
    color: #1A73FF;
}

.usefull_website_inform_col_parent_btms p {
    margin-bottom: 15px;
}

.usefull_website_inform_col_parent_btms p:last-child {
    margin-bottom: 0;
}

.rd_mrr {
    text-decoration: underline !important;
    font-weight: 500;
    text-transform: uppercase;
}

.smiu_page_outdds>* {
    margin-bottom: 80px;
}

.smiu_page_outdds>*:last-child {
    margin-bottom: 0;
}

.recent_blogs_Sect_outers_col_ins .main_img {
    margin-bottom: 0;
    position: relative;
    padding-bottom: 66%;
    display: inline-block;
    width: 100%;
}

.recent_blogs_Sect_outers_col_ins .main_img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.date_crrnt {
    font-size: 18px;
    display: table;
    padding: 10px 17px;
    background: #1972ff;
    color: #fff;
    font-family: 'Amiri', serif;
    margin-bottom: 14px;
}

.btm_egestas_sec .date_crrnt {
    margin-top: -36px;
    position: relative;
}

.btm_egestas_sec h4 {
    margin-bottom: 10px;
    text-transform: capitalize;
}

.btm_egestas_sec h4 a {
    color: #303639;
}

.btm_egestas_sec h4 a:hover {
    color: #1A73FF;
}

.btm_egestas_sec p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.btm_egestas_sec p:last-child {
    margin-bottom: 0;
}


.sisterd_website_sect_row li:before {
    display: none;
}

.sisterd_website_sect_row ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    margin-bottom: -10px;
}

.sisterd_website_sect_row li {
    padding: 0;
    margin: 0;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 15px;
    margin-bottom: 10px;
}

.sisterd_website_sect_row li a {
    font-size: 20px;
    word-break: break-all;
}

.featured_products_sectttd_col_inner {
    position: relative;
}

.featured_products_sectttd_col_inner .main_img {
    display: inline-block;
    width: 100%;
}

.featured_products_sectttd_col_inner .main_img figure {
    margin-bottom: 0;
    background: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 245px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.featured_products_sectttd_col_inner .main_img figure img {
    max-height: 245px;
    object-fit: contain;
}

.featured_products_sectttd_col_inner_btms {
    text-align: center;
    margin-top: 14px;
    font-size: 16px;
    font-weight: 400;
}

.featured_products_sectttd_col_inner_btms h4 {
    color: #303639;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 3px;
}

.featured_products_sectttd_col_inner_btms h4 a {
    color: #303639;
}

.featured_products_sectttd_col_inner_btms h4 a:hover {
    color: #1A73FF;
}

.featured_products_sectttd_col_inner_btms p {
    margin-bottom: 10px;
}

.featured_products_sectttd_col_inner_btms p:last-child {
    margin-bottom: 0;
}

.woo_priceee {
    display: inline-block;
    color: #1A73FF;
    font-size: 18px;
}

.vbtnn.top_gap {
    margin-top: 50px;
}

.usefull_website_inform .icon1 {
    left: 10%;
    top: 34%;
}

.usefull_website_inform .icon2 {
    right: 10%;
    top: 0%;
}

.usefull_website_inform .icon3 {
    right: 30%;
    bottom: 28%;
}

.usefull_website_inform .icon4 {
    right: 30%;
    bottom: 0;
}

.usefull_website_inform .icon5 {
    right: 12%;
    bottom: -10%;
}

.sisterd_website_sect .icon1 {
    right: 20%;
    top: 0;
}

.featured_products_sectttd .icon1 {
    bottom: -20%;
    left: 17%;
}

.btn_part_ullll li:before {
    display: none;
}

.Professionalism_exprt_contnt {
    font-weight: 300;
}

/* support start 20 jul 2023 */
.thankyou-wrapper {
    text-align: center;
    background: rgba(255,255,255,0.49);
    width: 100%;
    max-width: 900px;
    padding: 40px;
    margin: 0 auto;
    box-shadow: 0 0px 14px rgb(147,147,147,0.12);
}

.thankyou-wrapper h1 {
    margin: 0 0 10px;
    line-height: 1.1em;
    font-weight: bold;
}

.our-blog .blog-media {
    position: relative;
    padding-bottom: 66%;
    display: block;
    width: 100%;
    overflow: hidden;
}

.our-blog .blog-media img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.our-blog .blog-media:hover img {
    transform: scale(1.1);
}

.our-blog [class*="col-"] {
    margin-bottom: 40px;
}

.our-blog .btm_egestas_sec h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.our-blog .btm_egestas_sec p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.single-blog-image {
    margin-bottom: 20px;
}

.single-blog-image img {
    width: 100%;
}

.blog-utility {
    padding-bottom: 15px;
}

.single-blog-content ul {
    padding: 0 0 25px 0;
}

.single-blog-content ul li {
    margin-bottom: 12px;
}

.single-page-block .home_page_bannner_top {
    padding-bottom: 110px;
}

/* support end 20 jul 2023 */

/* support start 07-08-23 */
    .verified_batch{
        padding-top: 40px;
    }
    .verified_batch ul{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 -10px;
    }
    .verified_batch ul li{
        padding: 0 10px;
    }
    .verified_batch ul li::before{
        display: none;
    }
    .verified_batch ul li i{
        width: 140px;
        height: 140px;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        display: inline-block;
        overflow: hidden;
        border: 5px solid #FFFFFF;
    }
    .verified_batch ul li img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
/* support end 07-08-23 */

/* support start 15-08-23 */

.male_fertility_servics_inner_btmss{
    padding: 20px 10px;
    width: 100%;
}
.male_fertility_servics_inner_btmss .wrpd{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.wrpd .red_mrrr_btns{
    margin-top: auto;
    display: inline-block;
}
.male_fertility_servics_inner_btmss .prgph{
    max-height: none;
}
.male_fertility_col{
    width: 20%;
}
/* support end 15-08-23 */


/* support end 03-10-23 start*/

.headlth_headd h4{
    font-size: 21px;
    font-weight: 700;
}
.male_fertility_servics_inner_btmss .prgph{
    margin-bottom: 0;
} 

.male_fertility_servics_inner_btmss .prgph p{
    margin-bottom: 10px;
    font-size: 15px;
}
.male_fertility_servics_inner_btmss .prgph p br{
    display: none;
}
.male_fertility_servics_inner_btmss ::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}
.male_fertility_servics_inner_btmss ::-webkit-scrollbar-track {
    background: #5494fc; 
}
.male_fertility_servics_inner_btmss ::-webkit-scrollbar-thumb {
    background: #165ac7;
}
.p_ev_none{
    pointer-events: none;
}
/* support end 03-10-23 end*/

/* support start 06-10-2023 */
.mn_bann_img {
    position: relative;
}
.mn_bann_img img {
    object-fit: contain!important;
    width: auto!important;
    margin: auto;
    position: relative;
    /* max-width: 600px; */
}

img.img_blur {
    width: 100%!important;
    max-width: 100%;
    height: 100%!important;
    position: absolute!important;
    top: 0;
    left: 0;
    object-fit: cover!important;
    filter: blur(9px);
    border: none;
    z-index: -1!important;
}


.home_page_bannner_top_rightt{
    align-self: center;
}


.resp_table_wrap table{
    width: 100%!important;
    border-collapse:collapse;
    table-layout: fixed;
    margin-bottom: 30px;
}

.resp_table_wrap table tr td{
    border: 1px solid #000 !important;
    padding: 10px 5px !important;
    font-size: 13px;
    white-space: normal;
    width: auto !important;
}
.resp_table_wrap table tr th{
    border: 1px solid #000 !important;
    padding: 7px !important;
    font-size: 14px;
    white-space: pre-wrap;
    width: auto !important;

}



.inner_page_bannn_imgg .mn_bann_img::after {
    /* content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.98;
    background: linear-gradient(90deg, #FFF 3%, rgba(255, 255, 255, 0.00) 50%, #FFF 98%); */

}

/* support end 06-10-2023 */
  

/*responsive_start*/


@media(min-width:576px) {
    .container_full_smmm {
        padding-left: calc((100% - 540px + 30px)/2);
        padding-right: 0;
        max-width: 100%;
    }

    .container_full_Rt_smmm {
        padding-right: calc((100% - 540px + 30px)/2);
        padding-left: 0;
        max-width: 100%;
    }

}

@media(min-width:768px) {

    .container_full_smmm,
    .container_full_mddd {
        padding-left: calc((100% - 720px + 30px)/2);
        padding-right: 0;
        max-width: 100%;
    }

    .container_full_Rt_smmm,
    .container_full_Rt_mddd {
        padding-right: calc((100% - 720px + 30px)/2);
        padding-left: 0;
        max-width: 100%;
    }

}

@media(min-width:992px) {

    .container_full_smmm,
    .container_full_lggg,
    .container_full_mddd {
        padding-left: calc((100% - 960px + 30px)/2);
        padding-right: 0;
        max-width: 100%;
    }

    .container_full_Rt_smmm,
    .container_full_Rt_lggg,
    .container_full_Rt_mddd {
        padding-right: calc((100% - 960px + 30px)/2);
        padding-left: 0;
        max-width: 100%;
    }

    .client_testimonial_sect_top_row {
        background-image: none !important;
    }

}

@media(min-width:1200px) {

    .container_full_smmm,
    .container_full_lggg,
    .container_full_mddd {
        padding-left: calc((100% - 1140px + 30px)/2);
        padding-right: 0;
        max-width: 100%;
    }

    .container_full_Rt_smmm,
    .container_full_Rt_lggg,
    .container_full_Rt_mddd {
        padding-right: calc((100% - 1140px + 30px)/2);
        padding-left: 0;
        max-width: 100%;
    }

}

@media(min-width:1400px) {
    .container_full {
        max-width: 100%;
        padding-left: calc((100% - 1320px + 30px)/2);
    }

    .container_full_Rt {
        padding-right: calc((100% - 1320px + 30px)/2);
    }

    .container_full_smmm,
    .container_full_lggg,
    .container_full_mddd {
        padding-left: calc((100% - 1320px + 30px)/2);
        padding-right: 0;
        max-width: 100%;
    }

    .container_full_Rt_smmm,
    .container_full_Rt_lggg,
    .container_full_Rt_mddd {
        padding-right: calc((100% - 1320px + 30px)/2);
        padding-left: 0;
        max-width: 100%;
    }

}

@media(min-width:1025px) {

    /* navbar*/
    .clickD {
        display: none;
    }

    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }

}

@media (max-width: 1399px) {
    .male_fertility_servics_inner_btmss {
        max-height: 240px;
        min-height: 240px;
        padding: 28px 12px;
    }

    .why_choosen_imgT_figure {
        max-width: 420px;
    }

    .why_choosen_imgT_content li:nth-child(1) {
        width: calc(100% - 420px);
    }

    .why_choosen_imgT_content li:nth-child(2) {
        width: calc(100% - 440px);
    }

    .prsnd_name {
        font-size: 25px;
    }

    .prsnd_name span {
        font-size: 13px;
    }

    .male_fertility_servics_inner.five .male_fertility_servics_inner_btmss {
        min-height: 248px;
        max-height: 248px;
    }

    .male_fertility_servics_inner_btmss .prgph {
        max-height: 6vw;
    }

    .headlth_headd h4 {
        font-size: 22px;
    }

    .usefull_website_inform_col_parent_btms h4 {
        font-size: 28px;
    }

    .sisterd_website_sect_row li a {
        font-size: 18px;
    }

    /* 03-10-23  */
    .navbar-nav>li>a {
        font-size: 15px;
    }
    .main-head .navbar-brand{
        max-width: 230px;
    }
    .headlth_headd h4 {
        font-size: 17px;
    }
    .male_fertility_servics_inner_btmss .prgph p{
        font-size: 14px;
    }
    .male_fertility_servics_inner_btmss .prgph {
        max-height: 10vw;
    }
    .male_fertility_servics_inner_btmss {
        padding: 18px 10px;
    }
    .red_mrrr_btns{
        font-size: 14px;
        margin-top: 10px;
    }
   
    /* 03-10-23  */

}


@media (max-width: 1300px) {
    .sd_wrap_hd h2::after {
        width: 78px;
        right: -98px;
    }

    .what_do_headng_partsd.left .sd_wrap_hd h2::after {
        left: -98px;
    }

    .Professionalism_exprt_imagesd .main_img::before {
        right: -3%;
    }

    .keep_health_mind_col_rght .what_do_headng_partsd.left .sd_wrap_hd h2::after {
        left: -118px;
        width: 88px;
    }
}



@media (max-width: 1199px) {

    .container_full {
        padding-left: calc((100% - 960px + 30px)/2);
    }

    .container_full_Rt {
        padding-right: calc((100% - 960px + 30px)/2);
    }

    h1 {
        font-size: 60px;
    }

    .cmn_gap {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .schdule_btnmnns button[type="submit"],
    .schdule_btnmnns button[type="button"],
    .schdule_btnmnns input[type="button"],
    .schdule_btnmnns input[type="submit"] {
        padding: 11px 17px;
        font-size: 14px;
    }

    .schdule_btnmnns_call a {
        font-size: 14px;
    }

    .schdule_btnmnns_call a span img {
        top: 3px;
        width: 16px;
    }

    .schdule_btnmnns_call a span {
        padding-left: 23px;
    }

    .male_fertility_servics_inner_btmss {
        max-height: 197px;
        min-height: 197px;
    }

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

    .male_fertility_servics_inner_btmss .prgph {
        max-height: 4vw;
    }

    .male_fertility_servics_inner_btmss {
        font-size: 14px;
    }

    .why_choose_use_sect_col_lft,
    .why_choose_use_sect_col_rght {
        flex-basis: 100%;
        max-width: 100%;
    }

    .why_choosen_imgT_figure {
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .why_choosen_imgT_content li {
        width: 100% !important;
        position: relative !important;
        top: inherit !important;
        right: inherit !important;
        bottom: inherit !important;
        left: inherit !important;
        padding: 0 !important;
        padding-left: 30px !important;
        margin: 0 !important;
        margin-bottom: 22px !important;
    }

    .why_choosen_imgT_content li:last-child {
        margin-bottom: 0 !important;
    }

    .testimonial_slider_quote_inn blockquote {
        font-size: 20px;
    }

    .male_fertility_servics_inner.five .male_fertility_servics_inner_btmss {
        min-height: 205px;
        max-height: 205px;
    }

    .contact_hrds_ulll_inners .main_im {
        flex-basis: 20px;
        max-width: 20px;
    }

    .contact_hrds_ulll_inners .contact_hrds_ulll_inners_rtt {
        flex-basis: calc(100% - 20px);
        max-width: calc(100% - 20px);
        font-size: 17px;
    }

    .usefull_website_inform_col_parent .main_img {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .usefull_website_inform_col_parent_btms {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0;
    }

    .home_bannner_sliderrrr_innerss img,
    .inner_page_bannn_imgg .mn_bann_img img{ height: 480px; }

    /* 03-10-23  */
    .male_fertility_servics.five .male_fertility_servics_inner {
        flex-basis: 50%;
        max-width: 50%;
    }

    .male_fertility_servics_inner.five .male_fertility_servics_inner_wrap .main_img {
        padding-bottom: 45%;
    }
    .male_fertility_servics_inner_btmss .prgph {
        max-height: 12vw;
    }
    .login_signup_sect li a{
        font-size: 13px;
    }
    .login_signup_sect li {
        padding-left: 4px;
    }
    .main-head .navbar-brand {
        max-width: 170px;
    }
    .navbar-nav>li>a {
        font-size: 13px;
    }
    .sub-menu>li>a {
        font-size: 13px;
    }
    .login_signup_sect{
        padding-left: 10px;
    }
    .navbar-nav>li.menu-item-has-children>a:before {
        top: 1px;
    }
    .navbar-nav>li {
        margin: 0 5px;
    }
    /* 03-10-23  */

    /* 09-10-23 start  */

    .resp_table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .resp_table_wrap table{
        width: 960px !important;
    }
    .resp_table_wrap table tr td {
        padding: 6px 3px !important;
        font-size: 12px;
    }

    /* 09-10-23 end  */


}


@media(max-width:1024px) {

    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 6px;
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat;
        cursor: pointer;
        display: block;
        background-size: 10px;
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
    }

    .navbar-nav>li.menu-item-has-children>a::before {
        display: none;
    }

    .navbar-nav>li.menu-item-has-children>a {
        padding: 0;
    }



}



@media (max-width: 991px) {

    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin: 0 0 22px 0;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .container_full {
        padding-left: calc((100% - 720px + 30px)/2);
    }

    .container_full_Rt {
        padding-right: calc((100% - 720px + 30px)/2);
    }

    h1 {
        font-size: 55px;
    }

    h2 {
        font-size: 42px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 28px;
    }

    .cmn_gap {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .home_page_bannner_top {
        padding-top: 20px;
    }

    .home_page_bannner_top_rightt .schdule_appntment_sect {
        margin-bottom: 0;
    }

    .bnn_headingss_prgph {
        padding-left: 103px;
    }

    .bnn_headingss_prgph::after {
        width: 87px;
    }

    .main-head .navbar-toggler {
        background: #1A73FF;
        border-radius: 0;
        border: 0;
        outline: none;
        box-shadow: inherit;
        padding: 2px;
        width: 60px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-head .navbar-toggler .navbar-toggler-icon {
        background: url(images/menu.png) no-repeat center center;
        background-size: 25px;
    }

    .main-head .navbar-collapse {
        position: fixed;
        left: -100%;
        top: 0;
        background: #fff;
        transition: 0.3s all ease-in-out 0s;
        z-index: 999;
        height: 100%;
        width: 100%;
        padding: 0 30px;
        overflow-y: scroll;
    }

    .main-head .navbar-collapse.show {
        left: 0;
        transition: 0.3s all ease-in-out 0s;
        overflow-y: scroll;
    }

    .mobile_hd_hd {
        display: block;
        padding-top: 50px;
    }

    .mobile-menu-close.mobileMenuClose {
        background-color: transparent !important;
        min-width: inherit;
        padding: 0;
        box-shadow: inherit;
        border: 0 !important;
        margin-top: 0;
        cursor: pointer;
        border: none;
        font-size: 26px;
        color: #232b34 !important;
        display: table;
        margin-left: auto;
    }

    .navbar-nav>li {
        margin: 0;
        margin-bottom: 10px;
    }

    .navbar-nav>li:last-child {
        margin-bottom: 0;
    }

    .login_signup_sect {
        margin-top: 40px;
        padding-left: 0;
    }

    .navbar-nav .clickD {
        top: 4px;
    }

    .show_hd_bdy {
        overflow: hidden;
    }

    .counter_wrppr .counter_start {
        font-size: 52px;
    }

    .counter_wrppr .counter_total {
        font-size: 21px;
    }

    .home_page_bannner_bttms .counter {
        min-width: 158px;
        padding: 18px 15px 7px 15px;
    }

    .sub-menu {
        position: static;
        width: 100%;
    }

    .male_fertility_servics_inner_wrap .main_img {
        padding-bottom: 100%;
    }

    .male_fertility_servics_inner_btmss {
        max-height: 218px;
        min-height: 218px;
    }

    .male_fertility_servics_inner_btmss .prgph {
        max-height: 6vw;
    }

    .sd_wrap_hd h2::after {
        right: -76px;
        width: 56px;
        height: 34px;
    }

    .what_do_headng_partsd.left .sd_wrap_hd h2::after {
        left: -76px;
    }

    .keep_health_mind_col_rght .what_do_headng_partsd.left .sd_wrap_hd h2::after {
        left: -76px;
        width: 56px;
    }

    .keeping_health_min_col_rghtt {
        text-align: center;
    }

    .keeping_health_min .pattern1 {
        display: none;
    }

    .smu_urology_secct.ps_rltv_on {
        z-index: 1;
    }

    .smu_urology_secct_col_lft {
        background: #f5f7f8;
    }

    .smu_urology_secct_col_lft::before {
        width: 1920px;
        right: -1920px;
        height: 100%;
    }

    .main-head.sticky {
        padding: 10px 0;
    }

    .main_foot_top_row {
        margin: 0;
    }

    .main_foot_top_col_lft,
    .main_foot_top_col_rght {
        padding: 0;
        width: 100%;
        flex: inherit;
    }

    .main_foot_top_wrapper::after {
        width: 100%;
    }

    .main_foot_top_wrapper {
        padding: 40px 40px;
    }

    .main_foot_top_col_rght {
        order: 0;
        margin: 0;
        margin-bottom: 40px;
    }

    .main_foot_top_col_lft {
        order: 1;
        margin: 0;
    }

    .main_foot_top_wrapper .pattern1 img {
        width: 150px;
    }

    .main_foot_top_wrapper .pattern1 {
        right: 4%;
        top: -4%;
    }

    .main_foot_btmmms_up {
        padding: 65px 0;
    }

    .main_foot_btmmms {
        margin-top: -70px;
        padding-top: 70px;
    }

    .services_listing_dd_inner:nth-child(even) .services_listing_dd_inner_col_rghtt {
        order: inherit;
    }

    .services_listing_dd_inner:nth-child(2n) .services_listing_dd_inner_col_lft {
        order: inherit;
    }

    .services_listing_dd_inner_col_lft {
        text-align: center;
        margin-bottom: 20px;
    }

    .client_testimonial_sect_top_col_lft,
    .client_testimonial_sect_top_col_rght {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0;
    }

    .client_testimonial_sect_top .container_full_Rt {
        padding: 0;
        width: 100%;
    }

    .client_testimonial_sect_top_col_rght {
        max-width: 80%;
        margin: 0 auto;
    }

    .client_testimonial_sect_top_col_lft {
        display: none;
    }

    .client_testimonial_sect_top_row {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        padding: 40px 0;
    }

    .client_testimonial_sect_top_row:after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
    }

    .client_testimonial_sect_top_col_rght .what_do_headng_partsd {
        color: #fff;
    }

    .client_testimonial_sect_btmsd_col_lft {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0;
        order: 1;
    }

    .client_testimonial_sect_btmsd_col_rghtt {
        flex-basis: 100%;
        max-width: 100%;
        order: 0;
        margin-bottom: 30px;
    }

    .testimonial_slider_imagesd_inner img {
        width: 100%;
    }

    .client_testimonial_sect_btmsd {
        margin-top: 50px;
    }

    /* .male_fertility_servics.five .male_fertility_servics_inner {
        flex-basis: 50%;
        max-width: 50%;
    } */

    .male_fertility_servics_inner.five .male_fertility_servics_inner_wrap .main_img {
        padding-bottom: 61%;
    }

    .physcn_who_care_col_rght {
        order: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .physcn_who_care_col_lft {
        order: 1;
    }

    .physcn_caredds_ttrs::before,
    .Professionalism_exprt_imagesd .main_img::before {
        right: -20px;
        bottom: -20px;
    }

    .physcn_caredds_ttrs,
    .Professionalism_exprt_imagesd .main_img {
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .schedule_appntment_contactPG_top_col_rght {
        text-align: center;
        order: 0;
        margin-bottom: 30px;
    }

    .schedule_appntment_contactPG_top_col_lft {
        order: 1;
    }

    .health_msssn_figgg .main_img {
        display: table;
        margin-left: auto;
        margin-right: auto;
    }

    .map_Secttnd {
        margin-left: 0;
        margin-left: 30px;
        margin-top: 30px;
    }

    .map_Secttnd .ptrnd img {
        width: 150px;
    }

    .map_Secttnd .ptrnd {
        left: -30px;
        top: -30px;
    }

    .contactd_infos_hourd {
        margin-top: 70px;
    }


    .navbar-nav>li>.sub-menu .sub-menu{
        width: 90%;
        margin: 0 auto;
    }
    .navbar-nav>li>.sub-menu .sub-menu {
        position: static;   
    }
    
    /* 03-10-23  */
    .male_fertility_servics_inner_btmss .prgph {
        max-height: 12vw;
    }
    .navbar-nav>li>a{
        font-size: 15px;
    }
    .login_signup_sect li a {
        font-size: 15px;
    }
    .sub-menu>li>a {
        font-size: 15px;
    }
    /* 03-10-23  */

}


@media (max-width: 767px) {

    .container_full {
        padding-left: calc((100% - 540px + 30px)/2);
    }

    .container_full_Rt {
        padding-right: calc((100% - 540px + 30px)/2);
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 25px;
    }


    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    body {
        font-size: 16px;
    }

    .cmn_gap {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .navbar-nav .clickD {
        top: 2px;
    }

    .male_fertility_servics {
        margin: 0;
    }

    .male_fertility_servics_inner {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }

    .male_fertility_servics_inner:last-child {
        margin-bottom: 0;
    }

    .male_fertility_servics_inner_btmss .prgph {
        max-height: inherit;
        overflow-y: inherit;
    }

    .male_fertility_servics_inner_btmss {
        min-height: inherit;
        max-height: inherit;
        padding: 30px 32px;
    }

    .male_fertility_servics_inner.five .male_fertility_servics_inner_btmss {
        min-height: inherit;
        max-height: inherit;
    }

    .personlsd_care_service_col_rght {
        order: 0;
    }

    .personlsd_care_service_col_lft {
        order: 1;
    }

    .male_fertility_servics_inner_wrap .main_img {
        padding-bottom: 50%;
    }

    .what_do_headng_partsd p .bld {
        font-size: 17px;
    }

    .smi_urlgystc_backk h2 {
        font-size: 80px;
    }

    .smi_urlgystc_backk h2 span {
        font-size: 44px;
    }

    .contact_form_get_touch_head {
        padding-left: 50px;
        margin-bottom: 20px;
    }

    .contact_form_get_touch_head::after {
        width: 38px;
        height: 18px;
        top: 40px;
    }

    .contact_form_get_touch_form {
        padding-left: 0;
    }

    .main-head {
        padding: 25px 0;
    }

    .services_listing_dd_inner_imaged .main_img {
        margin-right: 30px;
        margin-bottom: 30px;
    }

    .services_listing_dd_inner_imaged .main_img::before {
        right: -30px;
        bottom: -30px;
    }

    .services_listing_dd_inner:nth-child(2n) .services_listing_dd_inner_imaged .main_img {
        margin-left: 30px;
    }

    .services_listing_dd_inner:nth-child(2n) .services_listing_dd_inner_imaged .main_img::before {
        left: -30px;
    }

    .testimonial_slider_quote_inn {
        padding-left: 24px;
        padding-top: 6px;
    }

    .testimonial_slider_quote_inn::after {
        width: 40px;
        height: 40px;
        background-size: 40px;
    }

    .testimonial_slider_quote_inn .named {
        font-size: 24px;
    }

    .testimonial_slider_quote_inn blockquote {
        font-size: 18px;
    }

    .male_fertility_servics.five .male_fertility_servics_inner {
        flex-basis: 100%;
        max-width: 100%;
    }

    .male_fertility_servics_inner.five .male_fertility_servics_inner_wrap .main_img {
        padding-bottom: 61%;
    }

    .physcn_who_care_col_rght {
        margin-bottom: 20px;
    }

    .usefull_website_inform_col_parent_btms h4 {
        font-size: 25px;
    }

    .smiu_page_outdds>* {
        margin-bottom: 50px;
    }

    .sisterd_website_sect_row ul {
        margin: 0;
    }

    .sisterd_website_sect_row li {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0;
    }

    .sisterd_website_sect_row li:last-child {
        margin-bottom: 0;
    }

    .home_bannner_sliderrrr_innerss img,
    .inner_page_bannn_imgg .mn_bann_img img{ height: 400px; }

    /* support start 20 jul 2023 */
    .single-page-block .home_page_bannner_top {
        padding-bottom: 80px;
    }
    /* support end 20 jul 2023 */


    /* support 07-08-23 start */
    .verified_batch ul li i{
        width: 100px;
        height: 100px;
    }
    .verified_batch ul{
        justify-content: center;
    }
    /* support 07-08-23 start */

}



.blog-paginate nav ul .page-item.active .page-link{
    background-color: #1a73ff;
    border-color: #1a73ff;
}

.blog-paginate nav ul li::before{
    display: none;
}


@media (max-width: 575px) {
    .container_full {
        padding-left: 15px;
    }

    .container_full_Rt {
        padding-right: 15px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 25px;
    }

    h4 {
        font-size: 21px;
    }


    h5 {
        font-size: 17px;
    }

    h6 {
        font-size: 15px;
    }

    .schdule_appntment_sect_heading h3 {
        font-size: 26px;
    }

    .home_page_bannner_bttms .counter {
        padding: 8px 5px 4px 5px;
        min-width: inherit;
    }

    .counter_wrppr .counter_start {
        font-size: 37px;
    }

    .personlsd_care_service .pattern1 {
        display: none;
    }

    .health_msssn_figgg .main_img {
        padding-right: 30px;
    }

    .btn_part_ullll li {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .btn_part_ullll li:first-child {
        margin-top: 0;
    }

    .btn_part_ullll li .vbtnn {
        width: 100%;
        margin: 0;
        text-align: center;
        display: inline-block;
    }

    .health_msssn_figgg.left .main_img {
        padding-left: 30px;
    }

    .patterns_cmns {
        display: none;
    }

    .contact_Fromd_sec_new {
        padding-left: 0;
    }
}


@media (max-width: 479px) {
    .main-head .navbar-brand img {
        width: 170px;
    }

    .bnn_headingss h1 {
        font-size: 35px;
    }

    .bnn_headingss_prgph {
        padding-left: 43px;
    }

    .bnn_headingss_prgph::after {
        width: 27px;
    }

    .schdule_appntment_sect_heading h3 {
        font-size: 23px;
    }

    .schcl_app_para {
        padding-left: 36px;
    }

    .schcl_app_para::after {
        width: 28px;
    }

    .button_of_apptmnts_wrap {
        margin: 0;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .button_of_apptmnts_wrap>* {
        padding: 0;
        flex-basis: 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .button_of_apptmnts_wrap>*:last-child {
        margin-bottom: 0;
    }

    .counter_wrppr .counter_start {
        font-size: 31px;
    }

    .what_do_headng_partsd {
        padding-right: 36px;
    }

    .sd_wrap_hd h2::after {
        right: -36px;
        width: 26px;
        height: 14px;
    }

    .what_do_headng_partsd.left {
        padding-left: 36px;
    }

    .what_do_headng_partsd.left .sd_wrap_hd h2::after {
        left: -36px;
    }

    .vbtnn {
        padding: 9px 20px;
        font-size: 15px;
    }

    .health_msssn_figgg .main_img {
        padding-right: 20px;
    }

    .smi_urlgystc_backk h2 {
        font-size: 60px;
    }

    .smi_urlgystc_backk h2 span {
        font-size: 34px;
    }

    .smu_urology_secct_col_lft {
        padding: 50px 0;
    }

    .smu_urology_secct_col_rght {
        padding: 50px 0;
    }

    .health_msssn_figgg.left .main_img {
        padding-left: 20px;
    }

    .main_foot_top_wrapper {
        padding: 20px 10px;
    }

    .main_foot_top_col_rght {
        margin-bottom: 30px;
    }

    .client_testimonial_sect_top_col_rght {
        max-width: 90%;
    }

    .physcn_caredds_ttrs::before,
    .Professionalism_exprt_imagesd .main_img::before {
        display: none;
    }

    .physcn_caredds_ttrs,
    .Professionalism_exprt_imagesd .main_img {
        margin-left: 0;
        margin-right: 0;
    }

    .map_Secttnd iframe {
        height: 300px;
    }

    .keep_health_mind_col_rght .what_do_headng_partsd.left .sd_wrap_hd h2::after {
        left: -36px;
        width: 26px;

    }

    .home_bannner_sliderrrr_innerss img,
    .inner_page_bannn_imgg .mn_bann_img img{ height: 300px; }

    .bnn_headingss_prgph table{
        width: 169px;
        overflow-x: auto;
    }
    
}
