* {
  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: #162858;
  --seconder-color: #C30000;
  --normal-font-size: 16px;
  --large-font-size: 18px;
  --m-heading-size: 24px;
  --heading-size: 28px;
  --white: #ffffff;
  --black: #000000;
  --normal-font-family: "Nunito Sans", sans-serif;
  --light-font-weight: 400;
  --bold--font-weight: 700;
}

body {
  overflow-x: hidden;
  padding-top: 128px;
  font-family: "Nunito Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* section {
  scroll-margin-top: 120px;
 
} */


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: 500px) {
  :root {

    --normal-font-size: 14px;
    --large-font-size: 16px;
    --heading-size: 24px;
    --m-heading-size: 20px;
  }

  body {
    padding-top: 124px;
  }
}

.slick-dots li button:before {
  font-size: 24px;
}

.slick-dots li.slick-active button {
  width: 24px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 20px;
  margin-top: 4px;
}