@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

:root{
    --blue:#fb934c;
    --dark-blue:#80400b;
}

*{
    font-family: 'Fjalla One', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    border:none;
    transition: all .3s cubic-bezier(.38,1.15,.7,1.12);
    
}

*::selection{
    background:var(--dark-blue);
    color:#fffff0;
}

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

section{
    min-height: 100vh;
    padding:1rem 9%;
    padding-top: 8rem;
}

.heading{
    text-align: center;
    color:var(--blue);
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: normal;
    padding:1rem;
}

header{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top:0; left:0;
    z-index: 1000;
    padding:2rem;
}

header .logo{
    color:var(--dark-blue);
    font-size: 2.5rem;
    
}

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

header .navbar a{
    margin-left: .7rem;
    padding:.5rem 2rem;
    font-size: 1.7rem;
    color:var(--dark-blue);
    border-radius: .5rem;
}

header .navbar a.active,
header .navbar a:hover{
    background: var(--blue);
    color:#fff;
    box-shadow: 0 .5rem 2rem rgba(0,0,0,.1);
}

header.sticky{
    background:#fff;
    box-shadow: 0 .5rem 2rem rgba(0,0,0,.1);
}

#menu{
    font-size: 3rem;
    color:var(--orange);
    cursor: pointer;
    display: none;
}

.home{
    background:url(../images/background.png) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.home .content{
    text-align: center;
    padding-top: 3rem;
}

.home .content h1{
    font-size: 5rem;
    color:var(--dark-orange);
}

.home .content h3{
    font-size: 4rem;
    color:var(--orange);
    font-weight: normal;
}

.home .content .btn{
    display: inline-block;
    padding:.7rem 3rem;
    color:#fff;
    background:var(--blue);
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    margin-top: 1rem;
    font-size: 1.7rem;
}

.home .content .btn:hover{
    background:var(--dark-blue);
}

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

.types .box-container .box{
    flex:1 1 30rem;
    border-radius: .6rem;
    margin:2rem;
    padding:2rem;
    text-align: center;
}

.types .box-container .box img{
    height:15rem;
    padding:0.1rem;
}

.types .box-container .box h3{
    color:var(--blue);
    font-size: 2rem;
}

.types .box-container .box p{
    color:var(--dark-blue);
    font-size: 1.5rem;
    padding:1rem;
}

.types .box-container .box:hover{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

.symptoms{
    background:url(../images/backgroundimg.png) 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: 44vh;
}

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

.symptoms .column .box-container .box{
    margin:2rem;
    text-align: center;
}

.symptoms .column .box-container .box img{
    width:20rem;
    padding:2rem;
}

.symptoms .column .box-container .box h3{
    font-size: 2rem;
    color:var(--blue);
}

.treatment .column{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.treatment .column .box-container{
    margin:1.6rem;
    flex:1 1 50rem;
    border:.1rem solid rgba(0,0,0,.1);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
}

.treatment .column .box-container .title{
    padding:1.5rem .5rem;
    text-align: center;
    font-size: 2.5rem;
    background:var(--blue);
    color:#fff;
}

.treatment .column .box-container:last-child .title{
    background:#ff3300;
}

.treatment .column .box-container .box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:2rem;
}

.treatment .column .box-container .box img{
    width:16rem;
    padding:2rem;
}

.treatment .column .box-container .box h3{
    font-size: 2rem;
    color:var(--blue);
}

.treatment .column .box-container .box p{
    font-size: 1.2rem;
    color:var(--dark-blue);
    padding:2rem 0;
}

.breathing{
    background:url(../images/backgroundimg.png) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

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

.breathing .box-container .box img{
    margin:1rem;
    border-radius: 50%;
    height:20rem;
    width:20rem;
    object-fit: cover;
    background:var(--blue);
}

.breathing .box-container .box h3{
    font-size: 2rem;
    color:var(--blue);
}

.breathing.box-container .box span{
    font-size: 1.7rem;
    color:var(--dark-blue);
}

.breathing.box-container .box .share{
    border-top: .1rem solid rgba(0,0,0,.1);
    padding:1rem;
    margin-top: 1rem;
}

.breathing.box-container .box .share a{
    border-radius: 50%;
    height: 4.5rem;
    width:4.5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    margin: .4rem;
    background:#eee;
    color:var(--blue);
}

.breathing .box-container .box .share a:hover{
    background:var(--blue);
    color:#fff;
    transform: rotate(360deg);
}
.breathing .content .btn{
    display: inline-block;
    padding:.7rem 3rem;
    color:#fff;
    background:var(--blue);
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    margin-top: 1rem;
    font-size: 1.7rem;
}

.breathing .content .btn:hover{
    background:var(--dark-blue);
}
//
* {
  box-sizing: border-box;
}

body {
   

  color: #80400b;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: 300px;
  width: 300px;
  position: relative;
  transform: scale(1);
}

.circles {
  background-color: #fb934c;
  height: 100%;
  width: 100%;
  border-radius: 60%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.gradient-circles {
  background: conic-gradient(
    #fda172 0%,
    #d67229 40%,
    #fff 40%,
    #fff 60%,
    #fcae1e 60%,
    #ec9706 100%
  );
  height: 320px;
  width: 320px;
  z-index: -2;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
}

.pointer {
  background-color: #fb934c;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  display: block;
}

.pointer-container {
  position: absolute;
  top: -40px;
  left: 140px;
  width: 20px;
  height: 190px;
  animation: rotate 7.5s linear forwards infinite;
  transform-origin: bottom center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.container.grow {
  animation: grow 3s linear forwards;
}

@keyframes grow {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.2);
  }
}

.container.shrink {
  animation: shrink 3s linear forwards;
}

@keyframes shrink {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}
.playlist .column{
    display: flex;
    justify-content: center;
}

.playlist .column .main-image img{
    width:25vw;
}

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

.playlist .column .box-container .box{
    text-align: center;
    margin:2rem;
}

.playlist .column .box-container .box img{
    width: 17rem;
    height: 17rem;
    padding:1rem;
}

.playlist .column .box-container .box h3{
    font-size: 2rem;
    color:var(--blue);
}

//
.draw{
    
    background:url(../images/backgroundimg.png) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

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

.draw .box-container .box img{
    margin:1rem;
    border-radius: 50%;
    height:20rem;
    width:20rem;
    object-fit: cover;
    background:var(--blue);
}

.draw .box-container .box h3{
    font-size: 2rem;
    color:var(--blue);
}

.draw.box-container .box span{
    font-size: 1.7rem;
    color:var(--dark-blue);
}

.draw.box-container .box .share{
    border-top: .1rem solid rgba(0,0,0,.1);
    padding:1rem;
    margin-top: 1rem;
}

.draw.box-container .box .share a{
    border-radius: 50%;
    height: 4.5rem;
    width:4.5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    margin: .4rem;
    background:#eee;
    color:var(--blue);
}

.draw.box-container .box .share a:hover{
    background:var(--blue);
    color:#fff;
    transform: rotate(360deg);
}
.draw .content .btn{
    display: inline-block;
    padding:.7rem 3rem;
    color:#fff;
    background:var(--blue);
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    margin-top: 1rem;
    font-size: 1.7rem;
}

.draw .content .btn:hover{
    background:var(--dark-blue);
}

.tools {
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:650px;
  height:650px;
  font-family:"Raleway", sans-serif;
}
.tools .commands {
  height:50px;
  display:flex;
  align-items:center;
  background:white;
  padding:0px 10px;
}
.tools .commands .name {
  font-weight:600;
  color:#222;
  width:80px;
}
.tools .commands .type,
.app .controls .size,
.app .controls .color {
  margin: 0px 10px;
}
.tools .commands .type input {
  display:none;
}
.tools .commands .type label {
  width:30px;
  height:30px;
  display:inline-block;
  text-align:center;
  line-height:30px;
  margin:0px 2px;
  cursor:pointer;
}
.tools .commands .type input:checked + label {
  background:#111;
  color:#eee;
  border-radius:50%;
}
.tools .commands .size input {
  height:10px;
}
.tools .commands .actions {
  flex:1;
  text-align:right;
}
.tools .commands .actions button {
  padding:5px 10px;
  cursor:pointer;
    color: white;
    background-color: #fb934c;
}

.footer{
    background:url(../images/footer.png) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

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

.footer .box-container .box h3{
    font-size: 2.5rem;
    color:var(--blue);
    padding:1rem 0;
}

.footer .box-container .box p{
    font-size: 1.5rem;
    color:var(--dark-blue);
    padding:.5rem 0;
}

.footer .box-container .box a{
    font-size: 1.5rem;
    color:var(--dark-blue);
    padding:.5rem 0;
    display: block;
}

.footer a:hover{
    text-decoration: underline;
}

.footer .credit{
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
    border-top: .1rem solid rgba(0,0,0,.1);
    padding:2.5rem 1rem;
    color:var(--dark-blue);
}

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

.scroll-top{
    position: fixed;
    bottom:7.5rem; right:1.5rem;
    z-index: 1000;
}

.scroll-top p{ color: #fb934c;
}
.scroll-top img{
    width:8rem;
    animation: float 3s linear infinite;
}

@keyframes float{
    100%, 0%{
        transform: translateY(0rem);
    }

    50%{
        transform: translateY(-3rem);
    }

}



/*login*/


.container1{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap :7rem;
    padding: 0 2rem;
}

.img{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.login-content1{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

.img img{
	width: 500px;
}

form{
	width: 360px;
}

.login-content1 img{
    height: 100px;
}

.login-content1 h2{
	margin: 15px 0;
	color: #333;
	text-transform: uppercase;
	font-size: 2.9rem;
}

.login-content1 .input-div{
	position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d9d9d9;
}

.login-content1 .input-div.one{
	margin-top: 0;
}

.i{
	color: #d9d9d9;
	display: flex;
	justify-content: center;
	align-items: center;
}

.i i{
	transition: .3s;
}


.button{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #fb934c, #fb934c, #fb934c);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}
.button:hover{
	background-position: right;
}










/* 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;
    }

    .playlist .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;
    }

   
    }


}