@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');

:root{
    --red:#FF4F5B;
}

*{
    font-family: 'Roboto', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition:all .3s cubic-bezier(.16,.8,.62,1.52);
    text-transform: capitalize;
}

*::selection{
    background:var(--red);
    color:#fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

html::-webkit-scrollbar{
    width:1.3rem;
}

html::-webkit-scrollbar-track{
    background: #000;
}

html::-webkit-scrollbar-thumb{
    background: var(--red);
}

body{
    background:#f9f9f9;
}

section{
    min-height: 100vh;
    padding:0 7%;
    padding-top: 9rem;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding:1rem 4rem;
    border-radius: 5rem;
    background:var(--red);
    color:#fff;
    overflow: hidden;
    position: relative;
    z-index: 0;
    font-size: 1.7rem;
}

.btn::before{
    content:'';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background:#444;
    clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
    transition:.3s linear;
}

.btn:hover::before{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.heading{
    font-size: 3rem;
    color:#666;
}

.heading span{
    color:var(--red);
}


header{
    width:100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top:0; left: 0;
    z-index: 1000;
    padding:2.5rem 7%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

header .logo{
    font-size: 2.5rem;
    color:#666;
}

header .logo span{
    color:var(--red);
}


header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

header .navbar ul li{
    margin-left: 2.5rem;
}

header .navbar ul li a{
    color:#999;
    font-size: 2rem;
}

header .navbar ul li a.active,
header .navbar ul li a:hover{
    color:var(--red);
    border-bottom: .2rem solid var(--red);
    padding:.7rem 0;
}

#menu{
    font-size: 3rem;
    color:#999;
    cursor: pointer;
    display: none;
}

.home{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.home .image{
    flex:1 1 40rem;
}

.home .image img{
    width:100%;
}

.home .content{
    flex:1 1 40rem;
}

.home .content span{
    color:var(--red);
    font-size: 2.5rem;
}

.home .content h3{
    color:#666;
    font-size: 5rem;
}

.home .content p{
    color:#999;
    font-size: 2rem;
    padding:1rem 0;
}

.protect .heading{
    text-align: center;
    padding:1rem;
}

.protect .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.protect .box-container .box{
    background:#fff;
    border:.1rem solid rgba(0,0,0,.1);
    padding:2rem;
    margin:2rem;
    width:34rem;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    text-align: center;
}

.protect .box-container .box img{
    height: 17rem;
    width:17rem;
}

.protect .box-container .box h3{
    font-size: 2.5rem;
    color:#666;
    padding:1rem 0;
}

.protect .box-container .box p{
    font-size: 1.4rem;
    color:#999;
    padding:.5rem;
}

.protect .box-container .box:hover{
    transform:translateY(-1rem);
}

.symptoms{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.symptoms .content{
    flex:1 1 40rem;
}

.symptoms .image{
    flex:1 1 40rem;
}

.symptoms .image img{
    width:100%;
}

.symptoms .content p{
    font-size: 1.5rem;
    color:#999;
    padding:1rem 0;
}

.symptoms .content ul{
    display: flex;
    flex-wrap: wrap;
    padding:1rem 0;
}

.symptoms .content ul .two{
    padding-left: 4.5rem;
}

.symptoms .content ul li{
    margin-left: 2rem;
    font-size: 1.5rem;
    color:#666;
    padding: .5rem 0;
}

.prevent{
    background:#222;
}

.prevent .row{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
}

.prevent .row .image{
    flex:1 1 37rem;
    height:35rem;
    text-align: center;
}

.prevent .row .image img{
    height:100%;
    width:100%;
    object-fit: cover;
}

.prevent .row .content{
    padding:2rem 0;
    flex:1 1 37rem;
}

.prevent .row .content .heading{
    color:#fff;
}

.prevent .row .content p{
    font-size: 1.7rem;
    color:#aaa;
    padding:1rem 0;
}

.prevent .row .content ul li{
    margin-left: 2rem;
    font-size: 1.5rem;
    color:#aaa;
    padding:.5rem 0;
}

.handwash .heading{
    text-align: center;
    padding:1rem;
}

.handwash .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.handwash .box-container .box{
    background:#fff;
    border:.1rem solid rgba(0,0,0,.1);
    margin:2rem;
    margin-top: 3rem;
    padding:2rem 3.5rem;
    text-align: center;
    position: relative;
}

.handwash .box-container .box img{
    height:17rem;
    width:17rem;
}

.handwash .box-container .box h3{
    font-size: 2rem;
    color:#666;
    padding:1rem 0;
}

.handwash .box-container .box span{
    display: block;
    position: absolute;
    top:-2rem; left:-2rem;
    height:5rem; width:5rem;
    line-height: 5rem;
    font-size: 2rem;
    color:#fff;
    background:var(--red);
    border-radius: 5rem;
}




.map-img img {
  width: 500px;
  height: 300px;
  margin-top: 50px;
}

.img-responsive{
    display: block;
    max-width: 100%;
    height: auto;
}



.world a {
  padding: 5px 25px;
  background-color: #31936b;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.4s ease-in-out;
  color: white;
  text-decoration: none;
}
.world a:hover {
  color: #31936b;
  background-color: black;
}


#maps,
#preb {
  margin-top: 100px;
}

.title p {
  color: #31936b;
  position: relative;
}

.title p::before {
  content: "";
  height: 2px;
  width: 80px;
  background-color: #31936b;
  position: absolute;
  left: 500px;
  top: 11px;
}

.sysm-main-text span::after {
  content: "";
  height: 2px;
  width: 80px;
  background-color: #31936b;
  position: absolute;
  top: 11px;
  left: 80px;
}

.title p::after {
  content: "";
  height: 2px;
  width: 80px;
  background-color: #31936b;
  position: absolute;
  right: 500px;
  top: 11px;
}

.title h2 {
  color: #3333cc;
  text-decoration: underline;
  text-decoration-color: red;
  font-weight: 700;
}

.main-sprade {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 60px 20px;
}

.main-pre {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #f6f5f5;
  height: 250px;
  margin-top: 40px;
  margin: 30px 50px;
}

.cards li {
  list-style: decimal-leading-zero;
  font-size: 20px;
  margin-top: 40px;
  font-weight: 700;
  color: #013354;
}

.cards p {
  color: #414141;
  padding: 5px 0;
}

.cards-2:nth-child(2) {
  padding: 4px 40px;
  list-style: decimal-leading-zero;
  border-radius: 10px;
  background-color: #31936b;
  color: white;
  margin-bottom: -10px;
}

.cards-2 li {
  font-weight: 700;
  font-size: 20px;
}

.spread-card img,
.pre-card img {
  width: 80px;
  height: 80px;
}

.spread-card p,
.pre-card p {
  padding: 20px 0;
  color: #013354;
  font-weight: 700;
}

.flex-card {
  display: flex;
  justify-content: space-between;
}

.flex-card h1 {
  color: #414141;
  font-size: 18px;
}

.flex-card h2 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.flex-card .rev h2 {
  color: #31936b;
  font-weight: 700;
  font-size: 20px;
}

.flex-card .dea h2 {
  color: red;
  font-weight: 700;
  font-size: 20px;
}

.maos h4 {
  margin-bottom: 60px;
}

.india h1,
.world h1 {
  font-size: 25px;
  color: #013354;
  font-weight: 700;
}
.india h3{
  font-size: 15px;
  color: #ff6666;
  font-weight: 700;
}

.world {
  margin-top: 50px;
}
.world h3{
  font-size: 15px;
  color: #ff6666;
  font-weight: 700;
}

.img-responsive{
    display: block;
    max-width: 100%;
    height: auto;
}

.h2 {
  color: #3333cc;
  text-decoration: underline;
  text-decoration-color: red;
  font-weight: 700;
}





/*faq*/
.faques{
    display:flex;
    width:100%;
    flex-flow:column nowrap;
    margin:auto;
    margin-bottom:2em;
}
.faq{
    padding:12px 6px;
    width:100%;
    display:flex;
    justify-content:space-between;
    font-weight:bold;
    font-size: 15px;
}
.faq p{
    width:88%;
    padding:8px;
    color:var(--li);

}
.faq span{
    width:10%;
    display:flex;
    justify-content:center;
    align-items:center;

}
.faq .fa{
    font-weight:bold;
    font-size: 15px;
    color:var(--ln);
}
.faqlist{
    box-shadow:2px 2px 2px rgba(0,0,0,.2);
    margin:.5em 0;
}
.faqlist:hover{
    box-shadow:2px 2px 4px rgba(0,0,0,.4);
}
.faqlist:hover .ans{
    display:block;
    box-shadow:1px 1px 2px rgba(0,0,0,.2);
}
.faqlist div:nth-child(2){
    background:var(--ltext);
    padding:1em 12px;
    display:none;    
}
.fa-angle-up{
    display:none;
}
.ans{

    color:var(--ln);
}



@media (max-width:500px min-width:450px ){
.faques{
    display:flex;
    width:100%;
    flex-flow:column nowrap;
    margin:auto;
    margin-bottom:2em;

}
.faq{
    padding:5px 10px;
    width:100%;
    display:flex;
    
    font-weight:bold;
}


}

























/*FOOTER MAIN PAGE*/


.footer{
    min-height: auto;
    padding-top: 0;
    background:#333;
}

.footer .box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer .box-container .box{
    flex:1 1 25rem;
    margin:2rem;
}

.footer .box-container .box h3{
    font-size: 2.5rem;
    color:#fff;
    padding-bottom: 2rem;
    font-weight: normal;
}

.footer .box-container .box p{
    font-size: 1.5rem;
    color:#ccc;
    padding:1rem 0;
}

.footer .box-container .box p i{
    padding-right: 1rem;
    color:var(--red);
}

.footer .box-container .box a{
    font-size: 1.5rem;
    color:#ccc;
    padding:1rem 0;
    display: block;
}

.footer .box-container .box a:hover{
    color:var(--red);
}

.footer .box-container .box .share{
    display: flex;
    flex-wrap: wrap;
    padding:1rem 0;
}

.footer .box-container .box .share a{
    height:4rem;
    width:4rem;
    line-height: 2rem;
    text-align: center;
    border-radius: 5rem;
    border:.1rem solid #fff3;
    margin-right: 1rem;
}

.footer .box-container .box .share a:hover{
    background:#fff;
}

.footer .credit{
    padding:2rem 1rem;
    text-align: center;
    color:#fff;
    font-weight: normal;
    font-size: 2rem;
    border-top: .1rem solid #fff3;
}

.footer .credit a{
    color:var(--red);
}

.scroll-top{
    position: fixed;
    bottom:7.5rem; right:2rem;
    z-index: 100;
    display: none;
}

.scroll-top img{
    height: 7rem;
}

.counter{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 7%;
}













/* media queries  */

@media (max-width:991px){

    html{
        font-size: 55%;
    }

}

@media (max-width:768px){

    #menu{
        display: block;
    }

    header .navbar{
        position: fixed;
        top:8rem; left:-120%;
        height: 100%;
        width:100%;
        background:#eee;
        border-top: .2rem solid rgba(0,0,0,.1);
    }

    header .navbar ul{
        flex-flow: column;
        padding:2rem;
    }

    header .navbar ul li{
        text-align: center;
        width:100%;
        margin:1rem 0;
    }

    header .navbar ul li a{
        display: block;
        padding:1rem;
    }

    header .navbar ul li a.active,
    header .navbar ul li a:hover{
        padding:1rem;
        background:var(--red);
        color:#fff;
        border:none;
        border-radius: 5rem;
    }

    .fa-times{
        transform: rotate(180deg);
    }

    header .navbar.nav-toggle{
        left:0;
    }

    .home .content{
        text-align: center;
    }

    .prevent .row:last-child{
        flex-flow: column-reverse;
    }

}

@media (max-width:500px){

    html{
        font-size: 50%;
    }

    section{
        padding:0 3%;
        padding-top: 9rem;
    }

}