/*
Theme Name: UroHealth Partners Theme
Author: Syed Abdul Rehman
Description: A minimalist starter theme.
Version: 1.0
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #002858;
}

h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #002858;
}

h3 {
    font-size: 1.75rem;
    line-height: 2.25rem;
    font-weight: 400;
    color: #002858;
}

h4 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
    color: #002858;
}

p, ul, ol {
    color: #3d3d3b;
    font-size: 1rem;
    line-height: 1.5rem;
}

a {
    color: #00AFF0;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: #002858;
}

.spacer-20{
    width: 100px; height: 20px;
}

.main-header-container {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 20px 0;
    background-color: #fff;
    z-index: 99;
    position: sticky;
    top: 0;
    background-color: #fff;
}


.main-header {
    width: 100%;
    max-width: 1140px;
    height: auto;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-direction: row;
}

.main-header .logo {
    width: 300px;
    height: auto;
    margin: 5px 0 0 0;
}

.main-header .main-menu-container{
    width: calc(100% - 340px); height: auto;
    display: flex; flex-direction: row; gap: 0;
}

.main-header .main-menu-container .main-menu {
    width: calc(100% - 60px);
    height: auto;
}

.main-header .main-menu-container .search-icon{
    width: 40px; height: auto;
    margin-left:10px;
    padding: 30px 0 0 0;
    cursor: pointer;
}

.main-header .main-menu-container .search-icon .fa-solid{
    color: #002858;
    font-size: 22px;
}

.main-header .main-menu-container .search-icon .fa-solid:hover{
    color: #00AFF0;
     font-size: 28px;
}

.header-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    font-size: 18px;
    padding:  0;
    margin: 0;
   
}

.header-menu .menu-item {
    position: relative;
    padding:20px 40px;
    font-size: 18px;
}

.header-menu .menu-item a {
    text-decoration: none;
    color: #000;
}

.header-menu .menu-item a:hover {
    color: #0ab0eb;
}


.header-menu .menu-item a strong {
    display: block;

}

.header-menu .menu-item .sub-menu {
    position: absolute;
    top: 45px;
    left: -70px;
    margin: 40px 0;
    width: 300px;
    height: auto;
    display: none;
    padding: 20px;
    background-color: #002858;
    z-index: 10;
}

.header-menu .menu-item>.sub-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    /* Place it on top of the sub-menu */
    left: 50%;
    /* Center it horizontally */
    transform: translateX(-50%);

    /* Triangle Shape Logic */
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #002858;
    /* Same color as sub-menu background */
}

.header-menu .menu-item:hover .sub-menu {
    display: block;
}

.header-menu .menu-item .sub-menu .menu-item {
    display: block;
    padding: 5px 0;
    font-size: 16px;

}

.header-menu .menu-item .sub-menu .menu-item a {
    color: #fff;
}

.header-menu .menu-item .sub-menu .menu-item a:hover {
    color: #00AFF0;
}

.header-menu .mega-menu .sub-menu {
    position: absolute;
    top: 45px;
    left: -340px;
    margin: 40px 0;
    width: auto;
    height: auto;
    display: none;
    padding: 20px;
    background-color: #002858;
    z-index: 10;
}

.header-menu .mega-menu:hover .sub-menu {
    display: grid;
    grid-template-columns: 200px 200px 200px 200px;
}

.header-menu .mega-menu .sub-menu .mega-menu-head .sub-menu::before {
    content: none;
}

.header-menu .menu-item .sub-menu .mega-menu-head {
    display: inline-block;
    position: relative;
    padding: 0;
}

.header-menu .menu-item .sub-menu .mega-menu-head a {
    border-bottom: 3px solid #fff;
    font-weight: 700;
}

.header-menu .menu-item .sub-menu .mega-menu-head .sub-menu {
    width: auto;
    display: block;
    position: relative;
    top: -30px;
    left: 0;
    margin-bottom: -10px;
    padding: 0 20px;
}

.header-menu .menu-item .sub-menu .mega-menu-head .sub-menu .mega-menu-button,
.header-menu .menu-item .sub-menu .mega-menu-head .sub-menu .menu-item {
    padding: 5px 0;
    font-size: 16px;
}

.header-menu .menu-item .sub-menu .mega-menu-head .sub-menu .mega-menu-button a,
.header-menu .menu-item .sub-menu .mega-menu-head .sub-menu .menu-item a {
    border-bottom: none;
    font-weight: 400;
}


.main-header-container .search-form-container{
    width: 100%; max-width: 1140px; height: auto;
    margin: 0 auto; padding: 0;
    display: none;
}

.main-header-container .search-form-container .searchform{
    width: 100%;  height: auto;
    margin: 10px 0 ; padding: 0;
}
.main-header-container .search-form-container .searchform #s{
    width: calc(100% - 170px);  height: auto;
    margin:  0 ; padding: 10px;
    font-size: 18px;
    border: 1px solid gray;
    border-radius: 8px;
}

.main-header-container .search-form-container .searchform #searchsubmit{
    width: 150px; height: auto;
    margin-left: 10px; padding: 10px 20px;
    background-color: #00AFF0;
    font-size: 16px;
    color: #fff;
    border-radius: 8px;
}

.main-header-container .search-form-container .searchform #searchsubmit:hover{
    background-color: #002858;
}

@media screen and (max-width:1200px) {
    .main-header {
        flex-direction: column;
        gap: 10px;
    }

    .main-header .logo {
        width: 100%;
        text-align: center;
    }

    .main-header .main-menu-container{
        width:100%; height: auto;
        display: flex; flex-direction: row; gap: 40px;
    }

    .main-header .main-menu-container .main-menu {
        width: calc(100% - 100px);
        text-align: center;
    }

    .header-menu .main-menu-container .mega-menu .sub-menu {
        left: -200px;
    }

    .main-header-container .search-form-container{      
        padding: 0 20px;       
    }
}

@media screen and (max-width: 767px) {
    .main-header-container {
        display: none;
    }
}

.main-container {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;

}

.main-container .content {
    width: 100%;
    max-width: 1140px;
    height: auto;
    margin: 0 auto; 
}

.main-container .content  .page-title{
   margin: 20px 0 0 0;
}

.service-box {
    text-align: center;
}


.button {
    width: 150px;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    background-color: #00AFF0;
    text-align: center;
}

.button:hover {
    background-color: #002858;
    color: #fff;
}

/*------------------------------------Our Providers page------------------------------*/

.physicians-sub-menu-wrapper{
    width: 100%; max-width: 1140px; height: auto;
    margin: 20px auto; padding: 0 20px;
}

.physicians-sub-menu-wrapper .physicians-sub-menu{
    width: 100%;  height: auto;
    margin: 0; padding: 0;
    list-style: none;
    text-align: center;
}

.physicians-sub-menu-wrapper .physicians-sub-menu .menu-item{
   display: inline-block;
   font-size: 20px;
   text-transform: uppercase;
   padding: 10px 20px;
   color:#000;
}

.physicians-sub-menu>.active{
    border: 2px solid #000;
}

.physicians-sub-menu-wrapper .physicians-sub-menu .menu-item:hover{
 border: 2px solid #000;
}

.physicians-sub-menu-wrapper .physicians-sub-menu .menu-item a{
    color:#000;
}

.before_physicians{
    width: 100%; max-width: 1140px; height: auto;
    margin: 0 auto;  margin-bottom:20px; padding: 0 20px;
    text-align: center;
}



.physicians-container {
    width: 100%;
    height: auto;
    margin: 0;
}

.physicians {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 40px 0;
}

.physicians:nth-child(even) {
    background-color: #002858;
    color: #fff;
}

.physicians:nth-child(even) h2 {
    color: #fff;
}

.physicians:nth-child(even) p,
.physicians:nth-child(even) ul  {
    color: #fff;
}

.physicians:nth-child(even) .col-1 {
    order: 2;
}

.physicians:nth-child(even) a {
    color: #fff !important;
}

.physicians:nth-child(even) a:hover {
    color: #00AFF0 !important;
}

.physicians .row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    max-width: 1140px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
}

.physicians .row h2 {
    margin-top: 0;
}

.physicians .row .col-1 {
    width: 40%;
    height: auto;
}

.physicians .row .col-1 img {
    width: 100%;
    height: auto;
}

.physicians .row .col-2 {
    width: 60%;
    height: auto;
}

.physicians .row .col-wide {
    width: 100%;
    height: auto;
}

@media screen and (max-width:767px) {
    .physicians .row {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: start;
    }

    .physicians .row .col-1,
    .physicians .row .col-2 {
        width: 100%;
        height: auto;
    }

    .physicians .row .col-1 {
        order: 1;
    }

    .physicians .row .col-2 {
        order: 2;
    }
}

.blog-container {
    width: 100%;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.blog-container .col-1 {
    width: 70%;
    height: auto;
    margin: 0;
}

.blog-container .col-2 {
    width: 30%;
    height: auto;
    margin: 0;
}

.blog-container .col-1 .post-item {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid black;
}

.blog-container .col-1 .post-item:first-child {
    width: 100%;
    height: auto;
    padding: 0 00 20px 0;
    border-bottom: 1px solid black;
}

.blog-container .col-1 .post-thumbnail img {
    width: 100%;
    height: auto;
    margin: 0;
}

.blog-container .col-1 .post-excerpt {
    width: 100%;
    height: auto;
    margin: 10px 0;
}

.blog-container .col-1 .button-container {
    margin: 20px 0;
}

.blog-container .col-1 .button-container a:hover {
    color: #fff;
}

.blog-container .col-2 .recent-posts ul,
.blog-container .col-2 .categories ul {
    list-style: none;
    padding: 0;
}

.blog-container .col-2 .recent-posts ul li,
.blog-container .col-2 .categories ul li {
    margin: 10px 0;
    padding: 5px 0;
    border-bottom: 1px solid black;
}

.blog-container .col-2 .recent-posts ul li::before,
.blog-container .col-2 .categories ul li::before {
    content: "►";
    color: #000;
}

@media screen and (max-width:767px) {
    .blog-container {
        display: flex;
        flex-direction: column;
    }

    .blog-container .col-1 {
        width: 100%;
        height: auto;
    }

    .blog-container .col-2 {
        width: 100%;
        height: auto;
    }
}

.main-container .content .post-thumbnail img {
    width: 100%;
    height: auto;
    margin: 0;
    border: 1px solid gray;
    box-shadow: 5px 5px 5px gray;
}

.main-footer {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 40px 20px;
    background-color: #002858;
    color: #fff;
}

.main-footer p {
    color: #fff;
}

.main-footer h3 {
    color: #fff;
}

.main-footer a:hover {
    color: #fff;
}

.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 10px;
}

.main-footer .row {
    width: 100%;
    max-width: 1140px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-around;
}

.main-footer .row .footer-1 {
    width: 34%;
    height: auto;
    margin: 0;
    padding: 0;
}

.main-footer h4 {
    margin-top: 0; margin-bottom: 0;
    text-transform: uppercase;
    color:#fff;
}

.main-footer .row .footer-2,
.main-footer .row .footer-3,
.main-footer .row .footer-4 {
    width: 22%;
    height: auto;
    margin: 0;
    padding: 0;
}

.main-footer .row .footer-3 {
    margin-top: -15px;
}


.main-footer .copyright {
    width: 100%;
    height: auto;
    margin: 40px 0 0 0;
    text-align: center;
}

.main-footer .copyright a {
    color: white;
}

.main-footer .follow-us {
    margin-top: 40px;
}

.main-footer .follow-us h3 {
    font-weight: 600;
}

.main-footer .fa {
    font-size: 22px;
    margin-right: 20px;
    color: #00AFF0;
}

.main-footer .fa:hover,
.main-footer svg {
    color: #fff;
}

.main-footer .marketing {
    margin: 30px 0;
}


@media screen and (max-width:767px) {
    .main-footer .row {
        flex-direction: column;
    }

    .main-footer .row .footer-1,
    .main-footer .row .footer-2,
    .main-footer .row .footer-3,
    .main-footer .row .footer-4 {
        width: 100%;
        height: auto;
    }
}


.breadcrumbs{
    width: 100%; height: auto;
    margin: 0; margin-bottom: 20px;
}

.breadcrumbs .breadcrumb-list{
    width: 100%; height: auto;
    margin: 0; padding: 0;
    list-style: none;
}

.breadcrumbs .breadcrumb-list .list-item{
   display: inline;
   font-size: 16px;
}

.breadcrumbs .breadcrumb-list .list-item::after{
    content : " > ";
    font-size: 18px;
    vertical-align: middle;
}

.breadcrumbs .breadcrumb-list .list-item:last-child:after{
    content: unset;
}

/*---------------------------Pagination----------------------------*/

.pagination{
    width: 100%; height: auto;
    margin:20px 0;
}

.pagination span, .pagination a{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.pagination span, .pagination a{
   margin-right: 30px;
}


.wp-block-search{
    width: 100%; height: auto;
    margin-top: 30px;
}

.wp-block-search .wp-block-search__button{
    width: 120px; height: auto;
    background-color: #00AFF0;
    font-size: 16px;
    color:#fff;
    border-radius: 8px;
  
}

.wp-block-search .wp-block-search__button:hover{
    color: #fff; 
    background-color: #002858;

}

.pay-your-invoice-button{
    width: 100%; max-width:300px; height: auto;
    background-color: #00AFF0;
    padding: 30px;
    border-radius: 8px;
    cursor: pointer;
    vertical-align: middle;
}

.pay-your-invoice-button:hover{
    background-color: #002858;
}

.pay-your-invoice-button  img{
    vertical-align: middle;
    margin-right: 20px;
}

.pay-your-invoice-button  span{
    color:#fff;
    font-size: 18px; font-weight: 600;
    vertical-align: middle;

}

.footer-1-widget .wp-block-search{
    width: 100%; max-width: 300px; height: auto;
}

.wp-block-search .wp-block-search__label{
    display: none;
}

/*-----------------------------Slider-------------------------------*/

.slider-container{
    width: 100%; height: 500px;
    margin: 0; padding: 0;
    position: relative;
}

.slider-container .slide{
    width: 100%; height: 100%;
    margin: 0; padding: 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left top;
    position: absolute; left: 0; top:0;
    display:none;
}


.slider-container .slide:first-child{
    display:block;
}

.slider-container .slide .title{
    display:none;
}

.slider-container .slide .text{
    width: 100%; max-width: 40%;
    position:absolute; right:20px; top: 20%;
}

.slider-container .slide .text h2{
    font-size: 48px; line-height: 60px;  font-weight: 700;
    margin-bottom: 0;
}

.slider-container .slide .text h3{
    font-size: 28px; line-height: 36px;  font-weight: 700;
    color:#fff;
    margin-top: 0;
}

.slider-container .slide .text a{
    display: inline-block;
    background-color: #00AFF0;
    font-size: 16px; font-weight: 700;
    color:#fff;
    padding: 10px 20px;
    border-radius: 8px;
}

.slider-container .slide .text a:hover{
    color:#000;
}

@media screen and (max-width:1024px) {
    .slider-container .slide {
       width: 100%; height: 100%;

    }

    .slider-container .slide .text{
        width:60%; max-width: none; height: auto;   
        padding: 20px;
        position:absolute; right:20px; top: 20%;
        background-color: rgb(256, 256, 256, 0.5);
    }

    .slider-container .slide:first-child .text{
        background-color: rgb(0, 0, 0, 0.5);
    }


    .slider-container .slide .text h2{
        font-size: 32px; line-height: 42px;  font-weight: 700;
        margin: 10px 0;
    }

    .slider-container .slide .text h3{
        font-size: 28px; line-height: 38px;  font-weight: 700;
    }
}


@media screen and (max-width:767px) {
    .slider-container .slide .text{
        width:100%; max-width: none;
        padding: 20px;
        position:absolute; right:0; top: 20px;
        background-color: rgb(256, 256, 256, 0.5);
    }

    .slider-container .slide .text h2{
        font-size: 24px; line-height: 32px;  font-weight: 700;
    }

}

.dots-container{
    width: 100%; height: auto;
    display: flex; flex-direction: row; gap: 40px;
    justify-content: center;
    position: absolute; left:0; bottom: 20px;
}

.dots-container .dot{
    width: 15px; height: 15px;
    border: 2px solid #000;
    border-radius: 15px;
    background-color: #fff;
    cursor: pointer;
}