@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
box-sizing: border-box;
padding: 0px;
margin: 0px;
}
body{
    font-family: "Poppins", serif;
    font-size: 15px;
    overflow-x: hidden;
}
img{    
    max-width: 100%;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: white;
}
i{
    color: white;
}
/* typography  */
h1{
    font-size: 4rem;
    font-weight: 400;
}
h2{
    font-size: 60px;
    font-weight: 500;
    
}
h3{
    font-size: 40px;
}
h4{
    font-size: 30px;
}
h5{
    font-size: 20px;
}
p{
    letter-spacing: 0.03125rem;
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(128, 128, 128, 0.668);

}

/* flex  */
.flex-row{
    display: flex;

}
.d-flex{
    display: flex;
    flex-wrap: wrap;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.justify-content{
    justify-content: space-between;
}
.space-around{
    justify-content: space-around;
}
.center{
    align-items: center;
}
.center-md{
    justify-content: center;
}
.text-align-center{
    text-align: center;
}
/* button  */
.btn{
    background-color: #c72828;
    color: #fff;
    padding: 12px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 8px;
    display: inline-block;
}
.btn-sec{
    background-color: #c72828;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
}
.btn-read{
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #c72828;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-block;
    border-radius: 8px;
}
.section{
    padding: 50px 0;
}
.site{
    width: 570px;
}   
/* container  */
.container {
    max-width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
}

.heading{
    width: 50%;
  display: inline-block; 
  padding: 20px;
  h2{
    text-align: center;
  }
  p{
    text-align: center;
    font-size: 14px;
    line-height: 1.5;

  }
}
/* margin  */
.mg-left{
    margin-left: 50px;
}
.mg-right{
    margin-right: 10px;
}
.mg-bottom{
    margin-bottom: 10px;
}
.mg-top{
    margin-top: 20px;
}
.mg-right-2{
    margin-right: 20px;
}
/* padding  */
.pd-top{
    padding-top: 50px;
}

/* common */
.section{
    padding: 50px 0;
}
.active{
    color:rgb(255, 175, 54);
}
.heading{
    width: 50%;
  display: inline-block; 
  padding: 20px;
  h2{
    text-align: center;
  }
  p{
    text-align: center;
    font-size: 14px;
    line-height: 1.5;

  }
}
.red{
    color: red;
}
