* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
    font-family: 'Nunito Sans';
    src: url('../__theme/nunito_sans_font/static/NunitoSans_10pt-Medium.ttf') format('woff2'),
         url('../__theme/nunito_sans_font/static/NunitoSans_7pt-Regular.ttf') format('woff'),
         url('../__theme/nunito_sans_font/static/NunitoSans_10pt_Expanded-Regular.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}


:root {
  --max-width: 1728px;
  --min-width: 1440px;
  --primary-color: #1D0D74;
  --seconder-color: #D00107;
  --normal-font-size: 16px;
  --large-font-size: 18px;
  --m-heading-size: 24px;
  --heading-size: 28px;
  --white: #ffffff;
  --black: #000000;
  --normal-font-family: "Nunito Sans";
  --light-font-weight: 400;
  --bold--font-weight: 700;
}

body {
  overflow-x: hidden;
	padding-top: 140px;
}
html {
  scroll-behavior: smooth;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="file"]::-webkit-file-upload-button {
  display: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

input:focus,
textarea:focus
, select:focus {
  outline: none;
}
input , textarea, button, select{
  font-family: var(--normal-font-family);
}

.d-none {
  display: none;
}

a {
  text-decoration: none;
}
button {
  border: none;
}

body {
    font-family: 'Nunito Sans', sans-serif;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
  font-family: var(--normal-font-family);
}
.pre-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--min-width);
  font-family: var(--normal-font-family);
}

@media (max-width: 1440px) {
  .pre-container {
    max-width: 1200px;
  }
}
@media (max-width: 1024px) {
body{
	padding-top: 164px;
}
}
@media (max-width: 500px) {
  :root {

    --normal-font-size: 14px;
    --large-font-size: 16px;
    --heading-size: 24px;
    --m-heading-size: 20px;
  }
	body{
		padding-top: 134px;
	}
}
