* {
    margin: 0px;
    overflow-x: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

header {
    /* background-color: red; */

    background-color: black;


    font-size: 20px;
    color: grey;
    display: flex;
    justify-content: space-around;
}

header .clinicName {
    padding: 4px;
    border: 1px solid grey;
}

header .socialIcons {
    /* width: 10px;
    height: 100px; */
    font-size: 30px;
    align-items: center;
}

header .socialIcons i {
    /* border-left: 1px solid grey; */
    /* font-size: 15px; */
    margin-left: 10px;
    margin-top: 1px;
    cursor: pointer;
}

header .socialIcons i:hover {
    color: #0052D2;
}



/* navbar  */
#navbar {
    /* position: fixed; */
    display: flex;
    align-items: center;
}

#navbar {
    position: relative;
    /* position: fixed; */
    /* background-color: blueviolet; */
    height: 13vh;
    padding: 4px;
}

#logo {
    /* margin: -16px -3px; */
}

#logo img {
    /* margin: 4px 11px;
    height: 110px; */
    height: 90px;
    width: 280px;

}

/* LIST STYLING */
nav {
    display: flex;
    justify-content: space-around;
}

.ul ul {
    display: flex;
    justify-content: space-around;

}

#navbar li {
    list-style: none;
    margin-right: 20px;

}

#navbar ul li a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-weight: 300;
}

#navbar ul li a:hover {
    color: #0052D2;
}

#floatingButton {
    position: fixed;
    top: 86%;
    left: 95%;
    height: 60px;
    width: 60px;
    background-color: green;
    border-radius: 50%;
    text-align: center;
}

#floatingButton i {
    text-align: center;
    margin-top: 20%;
    color: white;
}

/* Moving images */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: #0052D2;
    opacity: 0.3;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #290606;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

.fade img {
    height: 75vh;

}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Consultion */
.consult h1 {
    margin-top: 2rem;
    text-align: center;
}

.consult .consultGap {
    height: 25vh;
    background-color: #0052D2;
    color: white;
}

.consult .consultGap h2 {
    text-align: center;
    padding: 4rem;
}

/* Expertise */
.expertise {
    padding: 2rem;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.expertise .expertise-heading2 {
    margin-top: 15px;
}

.expertise .expertiseGap {
    margin-top: 1rem;
    border: 2px solid #0052D2;
    width: 8vw;
}

.expertise .diseaseExpertise {

    margin-top: 2rem;
    display: flex;
    /* justify-content: space-around; */
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    /* margin-left: 30em; */

}

.expertise .diseaseExpertise .diseaseExpertiseImg {
    text-align: center;
    margin-right: 3rem;
}

.expertise .diseaseExpertise .diseaseExpertiseImg img {
    height: 250px;
    width: 400px;
}

/* Form section */
.contactForm {
    /* border: 2px solid green; */
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    /* background-color: #bec5bc; */
    /* box-shadow: 5px 18px 50px 60px rgb(197, 91, 91); */
}

.contactForm .form {
    padding: 12px;
    /* border: 4px double #e64d3b; */
    border: 10px groove #0052D2;
    border-style: groove;
    border-radius: 10px;
    /* margin-left:15rem;
    margin-right: 7rem; */
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    /* align-items: center; */
    /* background-color: #f0f0f0 */
    /* background-color: white; */
    /* margin-left: 12rem; */
    /* background-color: linen; */
    /* background-image: linear-gradient(rgb(42, 88, 136),rgb(63, 226, 166)); */
    /* background-color: rgba(146, 24, 24, 0.495); */
    width: 80vw;
    /* color:  #b24a3e;;
    box-shadow: 10px 20px 30px red; */
    margin-bottom: 25px;
}

.contactForm .form p {
    font-size: 2em;
    text-align: center;
    /* color: #e64d3b; */
    padding: 1rem;

}

form {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

}

.leftSide select {
    font-size: 1em;
    height: 35px;
}

.form .leftSide {
    /* border: 5px solid rgb(16, 185, 30); */
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 50vh;
    width: 25vw;
    justify-content: center;
    margin-right: 2rem;
}

input {
    height: 35px;
    margin-bottom: 3vh;
    background-color: #f0f0f0;
    /* color: #e64d3b; */

}

.contactForm label {
    /* color: #e64d3b; */
    /* color: black; */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 1.3em;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form .rightSide {
    /* border: 5px solid black; */
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 50vh;
    width: inherit;
    justify-content: center;
}

.rightSide #gender {
    font-size: 1.2rem;
}

textarea {
    background-color: #f0f0f0;
}

.button {
    margin-top: 3px;
    display: flex;
    justify-content: right;
}

button {
    height: 6vh;
    width: 20vw;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #e64d3b; */
    background-color: #0052D2;
    border: 2px solid #0052D2;
    border-radius: 9px;
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
}

button:hover {
    color: white;
    background-color: white;
    color: #0052D2;
    border: 2px solid #0052D2;
    transition: 0.5s;
}

/* Contact option */
.contactOptions {
    margin-left: 3rem;
    margin-right: 3rem;
    padding: 1rem;
    /* background-color: black; */
    /* color: white; */

}

.contactOptions .contactBox {
    /* border: 2px solid blue; */
    display: flex;
    justify-content: space-between;
    width: 75vw;
    margin: auto;
    /* background-color: black; */
    height: auto;
    align-items: center;
    border-radius: 5px;
}

.contactBox .contactOption {
    /* border: 4px solid red; */
    display: flex;
    width: 350px;
    padding: 0.4rem;
    /* height: 13vh; */
    height: inherit;
}

.contactOption .contactText {
    margin-left: 1rem;
}

.contactOption .contactIcon {
    /* border: 3px solid; */
    /* width: 25vw; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactOption .contactIcon i {
    /* border: 2px solid blue; */
    /* background-color: #e64d3b; */
    background-color: #0052D2;
    text-align: left;
    font-size: 3.2em;
    /* text-align: center; */
    height: 90px;
    border-radius: 5px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;

}

.contactOption .contactText {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

/* About Section */
.about {
    /* border: 5px solid black; */
    padding: 1rem;
    margin-top: 2rem;
    display: flex;
    /* background-image: linear-gradient(rgba(8, 83, 196, 0),rgb(9, 49, 123)); */
    /* justify-content: center; */
    align-items: center;

}

.aboutImages {
    /* position: relative;
    top: 0;
    left: 0;
    padding: 1px; */
    margin-left: 10rem;
    /* height: 45vh; */
    /* width: 25vw; */
    height: 420px;
    width: 500px;
    border: 10px groove #0052D2;
}

.aboutImages img {
    height: 415px;
    width: 500px;
}

.aboutText {
    /* border: 4px solid blue; */
    margin-top: 12rem;
    margin-left: 60px;
    height: 85vh;
    width: 35vw;
    align-items: center;
    justify-content: center;
}

.aboutText .heading {
    margin: -6px 0 15px;
    /* color: rgb(18, 18, 65); */
    font-size: 40px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    color: #0052D2;
    transition: 2s;
}

.aboutText .heading:hover {
    /* margin: -6px 0 15px; */
    color: #0052D2;
    font-size: 40px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    transition: 1s;


}

.aboutText .heading::after {
    content: "";
    width: 0%;
    transition: 2s;
    display: block;
    transition: 2s;
}

.aboutText .heading:hover::after {
    width: 30%;
    border: 5px solid #0052D2;
    transition: 2s;
}

.aboutText p {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    /* font-family: 'EB Garamond', serif; */
    font-weight: 900;
    font-size: 16px;
    /* color: rgb(11, 70, 181); */
}

.aboutText p:hover {
    /* color: #ffffff; */
}

.aboutText button {
    /* color: white;
    background-color: #e64d3b;
    border: #e64d3b;
    border-radius: 50px; */
    margin-top: 50px;
    /* border-radius: 50px;
    padding: 11px;
    width: 8.5rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
}

/* .aboutText button:hover{ */
/* background-color: white; */
/* border:2px solid #ed272e; */
/* color: #e64d3b;
    border: 1px solid #e64d3b;
    transition: 0.3s ease-in-out; */
/* } */

/* Diseases */
.diseaseHeading {
    margin-top: 7vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.diseaseHeading .heading {
    text-align: center;
}

.diseaseHeading .headingGap {
    margin-top: 20px;
    width: 10vw;
    border: 2px solid #0052D2;
}


.disease {
    padding: 6rem;
    display: grid;
    grid-template-columns: repeat(3, 50fr);
    /* grid-gap: 20px; */
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    /* background-color: #0052D2; */
    background-image: url('/images/disbackground.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 15px;

}

.particularDisease {
    display: flex;
    flex-direction: column;
    border: 2px solid black;
    align-items: center;
    justify-content: center;
    /* height: 50; */
    padding: 1rem;
    box-shadow: 5px 10px 15px #0052D2;
    background-color: white;
}

.particularDisease i {
    height: 10vh;
    font-size: 3rem;
    /* color: ; */
}

.particularDisease a {
    margin-top: 5px;
    /* color: #e64d3b; */
    text-decoration: none;
}


footer {
    margin-top: 120px;
    /* background-color: #1508a2; */
    background-color: #0b2146;
    color: white;
    /* display: flex;
    justify-content: space-evenly;
    align-items: center; */
    /* height: 15vh; */
    padding: 2em;
}

.searchBox {
    text-align: right;
}

footer .socialIcons {
    display: flex;
    flex-direction: column;
}

.footerContent {
    display: flex;
    justify-content: space-evenly;
    
}

.footerContent .Location {
    /* border: 2px solid wheat; */
    width: 18vw;
}

.Location .add {
    margin-top: 15px;
}

footer .socialIcons i {
    margin-top: 15px;
}


#homeicon,
#secondIcon {
    display: none;
}

@media only screen and (max-width:600px) {

    #sidemenu {
        border-radius: 5px;
        /* background: #1c1c1e; */
        background-color: #0052D2;
        position: fixed;
        top: 0;
        left: -200px;
        height: 100vh;
        width: 150px;
        padding-top: 50px;
        z-index: 2;
        transition: left 0.5s;
        display: flex;
        flex-direction: column;
        /* column-gap:2% ; */
        justify-content: flex-start;
    }

    #secondIcon {
        margin-top: -37px;
        /* margin-left: -55px; */
        margin-left: -5%;
        position: absolute;
        font-size: 40px;
        display: block;
        color: #0052D2;
    }

    #homeicon {
        display: block;
        color: white;
    }

    ul i {
        position: absolute;
        top: 15px;
        right: 10px;
        cursor: pointer;
    }

    i {
        cursor: pointer;
        font-size: 300px;
    }

    #navbar ul li a {
        color: white;
    }

    #sidemenu li {
        margin-top: 30px;

    }

    #logo img {
        height: 73px;
        width: 203px;
    }

    header {
        font-size: 10px;
    }


    .consult .consultGap h2 {
        padding: 3rem;
    }
    .expertiseHeading{
        margin-top: 15px;
        margin-bottom: 10px;
        text-align: center;
    }

    .expertise .diseaseExpertise {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        margin-left: 50px;
    }

    .expertise .diseaseExpertise .diseaseExpertiseImg {
        text-align: center;
        margin-top: 3rem;
    }

    form{
        display: flex;
        flex-direction: column;
    }
 
  
    .contactForm {
        padding: 0px;
    }

    .contactForm .form {
        width: 90vw;
        
    }
 

    .form .leftSide {
        height: 42vh;
        width: 48vw;
    }

    .form .rightSide {
        height: 45vh;
    }

    .button {
        margin-top: 10px;
    }

    button {
        font-size: 10px;
        width: 140px;
    }


    .contactOptions .contactBox {
        display: flex;
        flex-direction: column;
    }


    .about {
        margin-top: 2rem;
        flex-direction: column;
        
    }

    .aboutImages {
        margin-left: 5px;
        border: none;
        
        
        
    }

    .aboutText {
        text-align: justify;
        margin-top: 50px;
        width: 75vw;
        margin-left: 0px;
        height: fit-content;
    }

    .disease {
        grid-template-columns: repeat(2, 50fr);
        padding: 1rem;
    }

    #floatingButton {
        left: 82%;
    }

    .fade img {
        height: 365px;
    }
    .footerContent{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .foot{
        margin-top: 25px;
    }
}