@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');

:root{
    --main-color:#fa9805;
    --black:#244361;
    --box-shadow:0 5px 10px rgba(0,0,0,.1);
	--blue:#3c6382;
    --dark-blue:#0a3d62;
}

*{
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none !important;
    text-transform: capitalize;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
	    transition: all .3s cubic-bezier(.38,1.15,.7,1.12);

}

*::selection{
    background:var(--dark-blue);
    color:#fff;
}

html{
    scroll-padding-top: 60px;
}

section{
    padding:20px 0;
}



.heading{
    text-align: center;
    padding:0 15px;
    padding-bottom: 5px;
    color:var(--black);
    font-size: 25px;
}

.heading span{
    color:var(--main-color);
}

.link-btn{
    display: inline-block;
    background:var(--main-color);
    color:#fff;
    border-radius: 50px;
    padding:5px 25px;
    font-size: 17px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.link-btn:hover{
    color:#fff;
    background:var(--black);
}

header{
    box-shadow: var(--box-shadow);
    background: #fff;
}

header .logo{
    font-size: 20px;
    color:var(--black);
}

header .logo span{
    color:var(--main-color);
}

header .nav a{
    margin-left: 3px;
    border-radius: 50px;
    color:var(--black);
    padding:5px 15px;
}

header .nav a.active,
header .nav a:hover{
    background: var(--main-color);
    box-shadow: var(--box-shadow);
    color:#fff;
}

#menu-bar{
    color:var(--black);
    cursor: pointer;
    font-size: 25px;
    transition: .2s linear;
}

.home{
    min-height: 100vh;
    background: url(../images/home-bg.png) no-repeat;
    background-position: center;
    background-size: cover;
}

.home .content span{
    color:var(--main-color);
    font-size: 20px;
}

.home .content h3{
    color:var(--black);
    font-size: 50px;
    font-weight: bolder;
}

.about .content h3{
    color:var(--black);
    font-size: 33px;
}

.about .content p{
    color:#777;
    font-size: 14px;
}

#prevent{
	padding: 100px;
}

.prevent .box{
    flex:1 1 300px;
    background:#f8f8fe;
    border-radius: 5px;
    text-align: center;
}

.prevent .box img{
    margin-bottom: 10px;
    height: 70px;
}

.prevent .box h3{
    color:var(--black);
    font-size: 20px;
}

.prevent .box p{
    color:var(--black);
    font-size: 14px;
}

#symptoms{
	padding: 120px;
}
.symptoms{
    background:url(../images/background-img.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.symptoms .column{
    display: flex;
    align-items: center;
    justify-content: center;
}

.symptoms .column .main-image img{
    width: 25vh;
}

.symptoms .column .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.symptoms .column .box-container .box{
    margin:1rem;
    text-align: center;
}

.symptoms .column .box-container .box img{
    width:10rem;
    padding:1rem;
}

.symptoms .column .box-container .box h3{
    font-size: 1.5rem;
    color:var(--blue);
}

#precautions{
	padding: 100px;
}

.precautions .column{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.precautions .column .box-container{
    margin:.5rem;
    flex:.5 .5 .5rem;
    border:.5rem solid rgba(0,0,0,.1);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
}

.precautions .column .box-container .title{
    padding:.5rem .5rem;
    text-align: center;
    font-size: 1rem;
    background:var(--blue);
    color:#fff;
}

.precautions .column .box-container:last-child .title{
    background:#d65106;
}

.precautions .column .box-container .box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:1rem;
}

.precautions .column .box-container .box img{
    width:6rem;
    padding:1rem;
}

.precautions .column .box-container .box h3{
    font-size: 1.5rem;
    color:var(--blue);
}

.precautions .column .box-container .box p{
    font-size: 1rem;
    color:var(--dark-blue);
    padding:1rem 0;
}

#hand-wash {
	padding: 100px;
		background-image: url("../images/home-bg.png");
	background-attachment: scroll;
	background-clip: initial;
	background-color: 0 .5rem 1rem rgba(0,0,0,.1);
	background-origin: initial;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.hand-wash .column{
    display: flex;
    justify-content: center;
	
}

.hand-wash .column .main-image img{
    width:15vw;
}

.hand-wash .column .box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hand-wash .column .box-container .box{
    text-align: center;
    margin:2rem;
}

.hand-wash .column .box-container .box img{
    width: 9rem;
    height: 9rem;
    padding:1rem;
}

.hand-wash .column .box-container .box h3{
	font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color:darkslateblue;
}
#contact{
	padding: 100px;
}
.contact form{
    padding:10px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.contact form .box,
.contact form textarea{
    background:#f8f8fe;
    border-radius: 5px;
    font-size: 17px;
    padding:10px;
    margin:7px 0;
    width: 100%;
    text-transform: none;
    color:var(--black);
}

.contact form textarea{
    resize: none;
    height: 200px;
}

.contact .map{
    border-radius: 5px;
    height: 100%;
    width:100%;
}





/*------------------------------------------------------------------
    Footer
-------------------------------------------------------------------*/

.footer-area{
	padding-top: 40px;
	padding-bottom: 0px;
}
.bg-f{
	background-image: url("../images/footer-bg.jpg");
	background-attachment: scroll;
	background-clip: initial;
	background-color: rgba(0, 0, 0, 0);
	background-origin: initial;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.bg-f::before {
    background: #010101;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
	opacity: 0.8;
}

.footer-area .container{
	position: relative;
	z-index: 1;
}
.footer-area h3{
	color: #ffffff;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 500;
	border-bottom: 2px solid rgba(207, 166, 113, 0.5);
	margin-bottom: 10px;
}
.footer-area p{
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	padding-bottom: 10px;
}

.arrow-right{
	position: relative;
}
.arrow-right::before {
    content: "\f101";
	font-family: 'FontAwesome';	
	position: absolute;
	right: 0px;
	top: 0;
	color: #fff;
	font-size: 60px;
	line-height: 60px;
}


.footer-area p.lead{
	font-size: 19px;
	color: #ffffff;
	margin-bottom: 0px;
}
.footer-area p.lead a{
	color: #ffffff;
	margin-bottom: 15px;
}
.footer-area p.lead a:hover{
	color: #d65106;
}
.footer-area p a{
	font-size: 18px;
	color: #ffffff;
}
.footer-area p a:hover{
	color: #d65106;
}

.subscribe_form {
    display: block;
    text-align: center;
    padding: 5px 0;
}

.subscribe_form .form_input {
    display: block;
    background-color: rgba(0,0,0,0.9);
	border: 1px solid #ffffff;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    padding: 0 10px;
    float: left;
	font-weight: 300;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.subscribe_form .submit {
    background-color: #d65106;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 50px;
    display: inline-block;
    padding: 0 10px;
    float: left;
    width: 100%;
	border: none;
	cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.subscribe_form .submit:hover{
	background: #010101;
}

.f-social {
    padding-bottom: 10px;
    margin: 0px;
    margin-top: 20px;
}
.f-social li a {
    font-size: 18px;
    color: rgba(214, 81, 6);
	width: 38px;
	height: 38px;
	display: block;
	text-align: center;
	line-height: 38px;
	background: #ffffff;
	border-radius: 4px;
}

.copyright{
	margin-top: 20px;
	position: relative;
	display: block;
	background-color: #010101;
	border-top: 1px solid rgba(207, 166, 113);
	padding: 30px 0;
	z-index: 1;
}

.copyright .company-name{
	font-size: 16px;
	text-align: center;
}
.copyright .company-name a{
	font-size: 16px;
}


.scroll-top{
    position: fixed;
    bottom:7.5rem; right:1.5rem;
    z-index: 1000;
}

.scroll-top img{
    width:4rem;
    animation: float 3s linear infinite;
}

@keyframes float{
    100%, 0%{
        transform: translateY(0rem);
    }

    50%{
        transform: translateY(-3rem);
    }

}













/* media queries  */

@media (max-width:991px){

    .home .content h3{
        font-size: 30px;
    }

}

@media (max-width:768px){

    header .nav{
        position: absolute;
        top:100%; left: 0; right: 0;
        background: #fff;
        border-top: 1px solid rgba(0,0,0,.1);
        border-bottom: 1px solid rgba(0,0,0,.1);
        transition: .2s linear;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header .nav.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    header .nav a{
        display: block;
        width: 100%;
        margin:10px;
    }

    .fa-times{
        transform: rotate(180deg);
    }

}














/* media queries  */

@media (max-width:1200px){

    html{
        font-size: 55%;
    }

}

@media (max-width:991px){

    section{
        padding:1rem 3%;
        padding-top: 8rem;
    }

    #menu{
        display: block;
    }

    header .navbar{
        position: absolute;
        top:100%; left: 0;
        width:100%;
        background:#fff;
        padding:2rem;
        border-top: .1rem  solid rgba(0,0,0,.1);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
    }

    header .navbar.nav-toggle{
        transform: scaleY(1);
        opacity: 1;
    }

    header .navbar a{
        display: block;
        margin:1.5rem 0;
        font-size: 2rem;
    }

    .fa-times{
        transform: rotate(180deg);
    }

    .symptoms .column .main-image img{
        display: none;
    }

    .hand-wash .column .main-image img{
        display: none;
    }

}

@media (max-width:768px){

    html{
        font-size: 50%;
    }

    .home .content h1{
        font-size: 4rem;
    }

    .home .content h3{
        font-size: 3.5rem;
    }

}

@media (max-width:450px){

    .home .content h1{
        font-size: 3.5rem;
    }

    .home .content h3{
        font-size: 2.5rem;
    }

    .symptoms .column .box-container .box img{
        width:14rem;
    }

    .precautions .column .box-container .box{
        flex-flow: column;
        text-align: center;
    }

 

}


}






/*<!---------------------------Sticky social media bar---------------------->*/

#sticky-social-icon .float-sticky-bar>li{
	background-color:#d65106;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding: 4px 5px;
	width: 150px;
	position: fixed;
	z-index: 999;
	transition: all 0.5s ease;
	display: flex;
	justify-content: flex-end;
	left: -112px;
	opacity: 0.9;
	
}

#sticky-social-icon .fab{
	font-size: 20px;
	color:floralwhite;
	padding: 10px 0 10px 10px;
	width: 35px;
	margin-left: 8px;
}

#sticky-social-icon .float-sticky-bar>li:hover{left: 0;}
#sticky-social-icon .float-sticky-bar>li>a{
	color: #fff !important;
	text-decoration: none;
	text-align: center;
	line-height: 45px !important;
	vertical-align: top !important;
}

/* -- position each icons ---*/

#sticky-social-icon .position-fb{top: 160px;}
#sticky-social-icon .position-tw{top: 212px;}
#sticky-social-icon .position-in{top: 264px;}
#sticky-social-icon .position-li{top: 316px;}
#sticky-social-icon .position-tu{top: 368px;}


*, *::before, *::after{
	transition: all 0.2s ease-in-out;
	list-style: none;
}

.social-icon{
	margin: 0;
	padding: 0;
	list-style: none;
}

.social-icon a{
	
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 18px;
	text-align: center;
	color: #32353c; /*dark gray*/
	background-color: #fff;
}

.social-icon li{
	display: inline-block;
	margin: 0 5px 0 0;
	padding: 0;
	line-height: normal;
}

.social-icon a:hover{
	color: #fff!important;
}

/* Background colors for font awsome icons*/

.faicon-facebook:hover{background-color: #3b5998 !important;}
.faicon-twitter:hover{background-color: #00ACEE !important;}
.faicon-instagram:hover{background-color: #EA4C89 !important;}
.faicon-youtube:hover{background-color: #0E76A8 !important;}
.faicon-linkedin:hover{background-color: #C8232C !important;}

