/* CSS RESET */
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
    font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
    isolation: isolate;
}
/* END OF CSS RESET */

/* Main styles */
.main {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.mulish-regular {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.mulish-bold {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.d-flex {
    display: flex;
    gap: 100px;
}

.half-column {
    flex: 1;
}

.main-columns {
    margin-top: 60px;
}

.under-text {
    font-size: 60px;
    margin-bottom: 80px;
    line-height: 70px;
}

.right-text-1 {
    font-size: 20px;
}

.right-text-orange {
    color: rgba(255, 127, 0, 1);
    font-size: 48px;
    margin-top: 80px;
    margin-bottom: 40px;
}

.right-text-platform {
    font-size: 18px;
    margin-bottom: 40px;
}

.button-group {
    gap: 20px;
}

.button {
    border-radius: 20px;
    display: block;
    vertical-align: middle;
    font-size: 14px;
    text-decoration: none;
    padding: 15px 20px;
    border: 1px solid rgba(253, 212, 159, 1);
    color: rgba(85, 89, 103, 1);
    text-align: center;
}

.button.button-orange {
    background: rgba(255, 127, 0, 1);
    color: #FFF;
    display: flex;
    justify-content: center;
}

.button.button-orange img {
    margin-right: 5px;
}

/* End of main styles */
