@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');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html,body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    font-family: var(--text-type);
}
:root{
    --primary-color:#D8232A;
    --text-type: "Poppins", sans-serif;
    --label-color:#000000;
    --btn-txt-color:#FFFFFF;
}
a{
    display:inline-block;
    text-decoration:none;
}
ul{
    list-style: none;
}
.container{
    max-width:1386px;
    margin: 0 auto;
    padding: 0 15px;
    width:100%;
}
.row{
    display:flex;
    flex-wrap:wrap;
    margin: 0 -15px;
}
.col-7{
    width:calc(8.33% *7);
    padding: 0 15px;
}
.col-5{
    width: calc(8.33% *5);
    padding: 0 15px;
}
.primary-btn{
    width:100%;
    display:inline-block;
    background: var(--primary-color);
    border-radius:10px;
    font-family: var(--text-type);
    color:var(--btn-txt-color);
    padding:10px 0;
    border:none;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    margin-bottom:20px;
}
.primary-btn >span{
    position:relative;
    z-index:2;
}
.primary-btn::after{
    content:"";
    height:100%;
    width:100%;
    transform:scale(0);
    background:rgba(0, 0, 0, 100%);;
    position:absolute;
    top:0;
    transition:1s linear;
    left:0;
}
.primary-btn:hover::after{
    transform:scale(1000);
}
.or-text{
    text-align:center;
    margin-bottom:20px;
}
.secondary-btn{
    width:100%;
    font-family:var(--text-type);
    text-transform: capitalize;
    font-size:16px;
    font-weight:400;
    display:flex;
    align-items:center;
    justify-content:center;
    background: transparent;
    border-radius:10px;
    color:#000000;
    border:1px solid rgba(0, 0, 0, 20%);
    padding:10px 0;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    margin-bottom:40px;
}
.secondary-btn >span{
    position:relative;
    z-index:2;
}
.secondary-btn::after{
    content:"";
    height:100%;
    width:100%;
    transform:scale(0);
    background:rgba(0, 0, 0, 60%);
    position:absolute;
    top:0;
    transition:1s linear;
    left:0;
}
.secondary-btn:hover::after{
    transform:scale(1000);
}
.secondary-btn  svg{
   width:20px;
   height:20px;
   margin-right:10px;
}