@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 !important; 
    font-family: "Poppins", sans-serif !important;
    outline: none;
    text-decoration: none !important;
}

html, body {
    height: 100%;
    margin: 0;
    background-color: #FCFCFD;
}

.divider{
    width: 100%;
    height: 1px;
    background-color: #E6E8EC;
    margin: 60px 0;
}
.divider-sm{
    width: 100%;
    height: 1px;
    background-color: #E6E8EC;
    margin: 20px 0;
}


.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pd-tp-bt {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
    .pd-tp-bt {
        padding-top: 30px;
        padding-bottom: 30px;    
    }
    .divider{
        margin: 30px 0;
    }
}

@media screen and (max-width: 576px) {
    .pd-tp-bt {
        padding-top: 20px;
        padding-bottom: 20px;    
    }
    .divider{
        margin: 20px 0;
    }
}