@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:wght@300;400;500;600;700&family=Playpen+Sans:wght@100..800&family=Roboto:wght@100;300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
}
* { box-sizing: border-box; }


h3 {
    margin-top: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}
h4 {
    font-weight: 500;
    margin-top: 10px;
}
p {
    font-weight: 400;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}
.mt-page {
    display: flex;
    gap: 0px;
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
    margin-bottom: 110px;
    min-height: calc(100vh - 324px);
    font-family: "Inter", sans-serif;
    font-size: 16px;
}
@media (max-width: 1270px) {
  .mt-page {
    padding: 30px 15px;
  }
}



