@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
body{
    font-family: 'Roboto';
}
.nobar{
    width: 100%;
    height: 100px;
    justify-content: space-between;
    display: flex;
    padding-top: 10px;
}
.right{
display: flex;
gap: 50px;
margin-right: 20px;
margin-top: 10px;
}
.left{
    margin-left: 20px;
    color: rgb(0, 110, 255);
}
.img{
    background-image: url(./img/istockphoto-1357529933-612x612.jpg);
    width: 100%;
    height: 800px;
   justify-items: flex-end;
   background-size: cover;
   position: relative;
 
}

.child{
    position: absolute;
    top: 240px;
   align-self: self-start;
    width: 600px;
    height: 370px;
    right: 380px;
     background-color: cyan;
     padding-top: 40px;
     padding-left: 20px;
     border-radius: 15px;
}
.b1, .b2{
    font-size: 40px;
    margin-top: 10px;
}
.b2{
    margin-bottom: 40px;
}
.child button{
    margin-top: 20px;
    width: 150px;
    height: 70px;
    border-radius: 30px;
    background-color: darkblue;
    color: white;
    font-size: medium;
    box-shadow: white 6px 6px 6px;
    border: none;
    transition: 0.5s;
}
.child button:active{
  transform: scale(0.7);
}
.fsa{
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    width: 100%;
    height:50px;
}
.fda{
    font-size: large;
    display: flex;
    gap: 20px;
}
.fda i{
    font-size: 32px;
}
.ic{
  width: 100%;
  height: 500px;
    margin-top: 20px;
}
.ic h1{
    text-align: center;
}
.ic p{
    margin-bottom: 40px;
    text-align: center;
}
.s1, .s2, .s3{
    width: 200px;
    height: 300px;
}
.ic img{
    width: 100%;
    height: 100%;
}
.sic{
    display: flex;
    justify-content: space-evenly;
}
.s1 img{
    border-top-left-radius: 15px;
}
.s3 img{
  border-bottom-right-radius: 15px;
}

