/* style sheet for get help page  */
* {
    margin: 0;
    padding: 0;
}

body {
   
    font-family: 'Merienda', cursive;
    background-image: url(../images/bodybg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/* dropdown menu style */
.dropdown-menu1 {
    display: none;
}
.dropdown-menu1 ul li{
    margin-bottom: 20px;
    list-style: none;
}
.dropdown-menu1 ul li a{
    text-decoration: none;
    padding-left: 12px;
    padding-top: 30px;
}
.dropdown1:hover .dropdown-menu1 {
    background-color: aliceblue;
    height: 100px;
    width: 190px;
    border-bottom: 2px solid #6C3DD9;
    border-top: 10px solid white;
    display: block;
    position: absolute;
    left: 20%;
    top: 90%;
}

.dropdown1:hover .dropdown-menu ul {
    margin: 10px;
}

.dropdown1:hover .dropdown-menu ul li { 
    width: 120px;
}


/* get help background img  */
.gethelpbg {
    background-image: linear-gradient(rgb(4, 9, 30, 0.7), rgb(4, 9, 30, 0.7)), url(../images/gethelpbg.jpg);
    background-attachment: fixed;
    background-size: 1510px;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 30vh;
    text-align: center;
    font-size: 40px;
    padding-top: 150px;
    text-transform: uppercase;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
}
@media screen and (max-width:600px) {
    .gethelpbg {
        background-image: linear-gradient(rgb(4, 9, 30, 0.7), rgb(4, 9, 30, 0.7)), url(../images/gethelpbg.jpg);
        background-attachment: fixed;
        background-size: 700px;
        background-position: top;
        background-repeat: no-repeat;
        min-height: 15vh;
        text-align: center;
        font-size: 20px;
        padding-top: 150px;
        text-transform: uppercase;
        font-weight: 400;
        color: white;
        letter-spacing: 1px;
    }
}
/* animation*/
.gethelpbg h1{
    background: url(../images/back.png);
    color: transparent;
    -webkit-text-stroke: 0.50px white;
    -webkit-background-clip: text;
    background-position: 0 0;
    animation:back 20s linear infinite;
}
@keyframes back{
    100%{
        background-position: 2000px 0;
    }
}

/* button  */

.join {
    cursor: pointer;
    background-color: white;
    color: #6C3DD9;
    font-weight: 500;
    position: relative;
    left: 70px;
    padding: 20px 85px;
    border: none;
    margin-top: 80px;
    animation-name: slide;
    animation-duration: 2s;
    border-radius: 20px;
}
.helptypes {
   
    background-image: url(../images/circle-scatter-haikei\ \(1\).png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    top: 100px;
    /* z-index: -1; */

}
.gethelp{
    display: flex;
    justify-content: space-around;
   
    padding-top: 100px;
    padding-bottom: 50px;
}
.helptypes p {
    text-align: center;
    color: white;
    position: relative;
    top: 30px;
    animation-name: slide;
    animation-duration: 2s;
}
@keyframes slide{
    0%{opacity: 0;}
    100%{ opacity: 1;}
    }
.helptypes h1 {
    text-align: center;
    color: white;
    animation-name: slide;
    animation-duration: 2s;
}

.info {
    height: 500px;
    margin-top: 100px;
}

.medicinfo h1 {
    position: relative;
    top: 150px;
    margin-left: 100px;
    font-weight: 400;
    color: #6C3DD9;
}

.medicinfo p {
    position: relative;
    top: 280px;
    text-align: center;
    height: 250px;
    font-size: 25px;
    margin: 0px 100px;
    color: #6C3DD9;
    text-shadow: 1px 1px rgb(124, 118, 118);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.medicimgs {
    display: flex;
    position: relative;
    top: 180px;
    overflow-x: scroll;
    overflow-y: hidden;
}

.medicimgs img{
    margin-left: 50px;
    width: 400px;
    transition: 0.3s;
    border-radius: 20px;
    animation-name: new;
animation-duration: 8s;


}

.medicimgs img:hover {
    transform: scale(1.1);
    box-shadow: 5px 10px 18px #888888;
}


@keyframes new{
0%{transform: translateX(1500px);opacity: 0;}
100%{transform: translateX(0px); opacity: 1;}
}

.medicimgs::-webkit-scrollbar {
    display: none;
}

#hrgt {
    position: relative;
    top: 230px;
}

.productinfo h1 {
    position: relative;
    margin-top: 235px;
    margin-left: 100px;
    font-weight: 400;
    color: white;
    padding-top: 40px;
}

.productinfo {
    
    background-image: url(../images/circle-scatter-haikei\ \(1\).png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 800px;
    /* z-index: -1; */
    position: relative;
    top: 300px;
}

.productinfo p {
    position: relative;
    top: 80px;
    text-align: center;
    height: 250px;
    font-size: 25px;
    margin: 0px 100px;
    color: white;
    text-shadow: 1px 1px rgb(124, 118, 118);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

.productsimgs {
    display: flex;
    position: relative;
    top: 20px;
    overflow-x: scroll;

    overflow-y: hidden;
}

.productinfo img {
    margin-left: 40px;
    width: 400px;
    transition: 0.3s;
    animation-name: new;
animation-duration: 4s;
/* border: 2px solid red; */
}
.productsimgs img:hover {
    transform: scale(1.1);
    box-shadow: 5px 10px 18px #888888;
}

.productsimgs::-webkit-scrollbar {
    display: none;
}

/* .medicimgs {
    display: flex;
    position: relative;
    top: 180px;
    overflow-x: scroll;
    overflow-y: hidden;
}

.medicimgs img {
    padding: 20px;
    height: 400px;
    width: 480px;
    transition: 0.3s;
}

.medicimgs img:hover {
    transform: scale(1.1);
}

.medicimgs::-webkit-scrollbar {
    display: none;
} */

.govtinfo {
    background-image: linear-gradient(rgb(4, 9, 30, 0.7), rgb(4, 9, 30, 0.7)), url(../images/medical-camp.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: 1587px;
    min-height: 100vh;
    position: relative;
    top: 300px;
}

.govtinfo h1 {
    position: relative;
    top: 150px;
    margin-left: 100px;
    font-weight: 400;
    color: #6C3DD9;
}

.govtinfo p {
    position: relative;
    text-shadow: 1px 1px rgb(124, 118, 118);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    top: 280px;
    text-align: center;
    height: 220px;
    font-size: 25px;
    margin: 0px 100px;
    color: white;
}
/* footer  */
#footer{
    position: relative;
   top: 250px;
}
footer {
   background-image: url(../images/footer1.png);
    padding-top: 50px;
    /* z-index: -1; */
}
.foot1 {
    display: flex;
    justify-content: space-between;
    margin: 20px 100px 0px 160px;
    color: white;
}
.fb img {
    padding-left: 15px;
}
.foot2 {
    display: flex;
    justify-content: space-between;
    margin: 0px 100px 0px 160px;
    color: white;
}
.foot2p p {
    font-weight: 500;
    padding-top: 20px;
}
.foot22p {
    display: flex;
}
.foot22p p {
    padding-left: 60px;
    padding-top: 20px;
    font-weight: 500;
    margin-bottom: 50px;
}
.foot3 {
    display: flex;
    justify-content: space-between;
    color: white;
    margin: 30px 100px 0px 160px;
}
.add p {
    padding-left: 30px;
}
.mail p {
    padding-left: 30px;
}