*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;

}

section{
    width:100%;
    height:100vh;

}

section header{
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 0 20px rgba(213, 10, 189, 0.3);
}
/* section header .logo{ */
    /* font-size : 30px; */
    /* color: black; */
    /* text-decoration: none; */
    /* font-weight: bold; */
    /* margin: 15px 0; */
/* } */
/* section header.logo span{ */
    /* color: #f9004d; */

/* } */
section header .logo{
    font-size: 30px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    margin:15px 0;
}
section header .logo span{
    color: #f9004d;

}
section header  ul{
    list-style: none;
}
section header ul li{
    display: inline-block;
    margin: 5px 5px;
    padding: 5px 20px;

}
section header ul li a{
    color: black;
    text-decoration: none;
}
section header ul li a:hover{
    color: #f9004d;
}
section header p{
    cursor: pointer;
    padding : 10px 25px;
    border:1px solid #b36982;
    border-radius: 30px;
    transition: 0.3s;
}
section header p:hover{
    color:white;
    background: #b36982;
}

.circle{
    position: absolute;
    top : 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(179,105,130);
    clip-path: circle(320px at left -230px);
    z-index: -1;
}
.circles{
    position : absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #b36982;
    clip-path: circle(250px at right 800px);
    z-index: -1;
}
section .texts h1{
    position: absolute;
    top: 10%;
    left: 4%;
    font-size: 100px;
    color: #6a6666;
}
section .texts h1 span{
    color:#f90085;

}
section .texts p{
    width: 650px;
    position: absolute;
    top: 200px;
    left: 4%;
    line-height: 26px;
    text-align: justify;
}
section .background_image img{
    width:750px;
    position: absolute;
    top:25%;
    left: 47%;
    margin-left: 25px;

}
section .btn{
    position: relative;
    top:77%;
    left : 38px;
    width: 340px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
section .btn .read{
    background: #0099f9;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
/* section .btn p{ */

/* } */
section .btn p{
    padding: 10px 25px;
    background: skyblue;
    border: 2px solid #f90085 ;
    cursor: pointer;
    transition: 0.3s;


}
.about{
    width: 100%;
    height: 240vh;
    padding: 50px;
}
.about .box{
    width: 100%;
    padding:80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about .box .card{
    width: 200px;
    height: auto;
    padding: 5px 10px;
    margin: 0 15px;
    background: gainsboro;
    border: 1px solid gainsboro;
    cursor: pointer;
    z-index: 1;
    transition:0.3s;
}
.about .box .card:hover{
    box-shadow: 3px 5px 20px rgba(0,0,0,0.3);
    transform: scale(1.1);
    border-radius: 5px;
}
.about .box .card img{
    width:90px;

}
.about hr{
    height: 2px;
    background: #b36982;
    border-radius: 5px;
    margin: 35px 110px;
}
.about .toy h1{
    font-size:70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:35px 0;
}
.about .toy p{
    text-align: center;
    margin:35px 0;
    color: black;
    font-size:25px;
}
.about .toy_card{
    width:100%;
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}
.about .toy .toy_box img{
    width: 250px;
    cursor: pointer;
    transition:0.3s;
}
/*.about .toy_box .toy_card{
    background: #9d9d9d;
    width: 350px;
    padding: 25px 25px;
    text-align:center;
    border: 10px ;
    transition:0.3s;
}*/
/*.about .toy_box .toy_card .btn{
    text-decoration: wavy;
    color: pink;
    padding:10px 30px ;
    background: #f9004d;
    width:10px;
}*/
.footer{
    background: #242624;
    padding:50px;
}
.footer .main{
    max-width: 1170px;
    margin: auto;

}
ul{
    list-style: none;

}
.row{
    display: flex;
    flex-wrap:wrap;
}


.footer_col{
    width:25%;
    padding: 0 15px;
}
.footer_col h4{
    font-size:18px;
    color:white;
    text-transform: capitalize;
    margin-bottom:30px;
    font-weight: 500;
    position:relative;
}
.footer_col h4::before{
    content:'';
    position:absolute;
    left:0;
    bottom: -10px;
    background: #f9004d;
    height: 2px;
    box-sizing: border-box;
    width:50px;

}
/*.footer_col .social img{
    width:25px;

    margin:5px;

}





