@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
:root{
    --main-bg-color:#d65106;
    --font1: 'Rubik', sans-serif;
}
.container{
    width: 80vw;
    margin: 0 auto;

    /* overflow: hidden; */
    
}
.btn1{
    font-size: 23px;
    color: white;
    background-color: var(--main-bg-color);
    border: none;
    border-radius: .5rem;
    transition: 0.5s;
    margin: 18px 0px;
    padding: 1.8rem 3.1rem;
    
}
.btn1:hover{
    background-color: black;
}
.bold{
    font-weight: bold;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.f-1{
      font-size: 3.8rem;
    line-height: 5rem;
}

.t-center{
    text-align: center;
}
.m-2{
    margin: 2rem;
}
.black{
    color: black;
}
.head{
    margin: 6.3rem 0;
}
.head p{
    font-size: 2rem;
    color: gray;
}
.my-12{
    margin: 12rem 0;
}
.lh-5{
    line-height: 5rem;
}
.font-2{
    font-size: 2.5rem;
}
.main-bg-color{
    color: var(--main-bg-color);
}
.lh-3{
    line-height: 3rem;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.display-center{
    display: flex;
    justify-content: center;
    align-items: center;
}