@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&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");

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Poppins;
}

:root {
    --black: #000;
    --red: #e41515;
    --grey: #eff0f2;
    --white: #fff;
    --blue: #1371ff;
    --dark-grey: #858384;
    --light-red: #fde8e8;
    --yellow-orange: #f79e1b;
    --gray-main: #4d5f7d;
    --primary-main: #282a6a;
    --green: #17b26a;
    --whatsapp-green: #3c3;
}

body {
    width: 100%;
}

a {
    -webkit-text-decoration: none;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: Poppins;
}

ul {
    list-style: none;
}

.invisible {
    display: none !important;
}

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

.section-layout {
    max-width: 1332px;
    margin: 0 auto;
    padding: 0 24px;
}

.grecaptcha-badge {
    display: none;
}
@media (max-width: 48rem) {
    .section-layout {
        padding: 0 15px;
    }
}
