/******************************* Fonts 
Font Name: Inter
*************************************/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/************************** CSS Resets 
*************************************/

*,
*::before,
*::after {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto
}

@media(max-width: 1399px) {
  .header .header-wrapper {
    padding: 0 30px;  
  }
}

@media(min-width: 1400px) {
  .container {
      max-width:1320px;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white-color);
}

body,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
figure,
blockquote {
  margin: 0;
  padding: 0;
  color: var(--black-color);
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  line-height: 1.2;
  font-weight: 600;
}

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/************************** Typography 
*************************************/

h1 {
  font-size: 2.5rem; /* 40px */
}

h2 {
  font-size: 2.25rem; /* 36px */
}

h3 {
  font-size: 1.875rem; /* 30px */
}

h4 {
  font-size: 1.5rem; /* 24px */
}

h5 {
  font-size: 1.25rem; /* 20px */
}

h6 {
  font-size: 0.875rem; /* 14px */
}

p {
  font-size: 0.875rem; /* 14px */
  font-style: normal;
  font-weight: 500;
  line-height: 1.71429;
  letter-spacing: 0.14px;
}

@media screen and (max-width: 575px) {
  h1 {
    font-size: 1.625rem; /* 26px */
  }
  h2 {
    font-size: 1.5rem; /* 24px */
  }
  h3 {
    font-size: 1.375rem; /* 22px */
  }

  h4 {
    font-size: 1.25rem; /* 20px */
  }

  h5 {
    font-size: 1rem; /* 16px */
  }

  h6 {
    font-size: 0.875rem; /* 14px */
    line-height: 1.225;
  }
}