@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --max-width: 1728px;
  --min-width: 1440px;
  --primary-color: #500f1a;
  --seconder-color: #dccaa3;
  --normal-font-size: 16px;
  --large-font-size: 18px;
  --heading-size: 28px;
  --white: #ffffff;
  --black: #1d1d1d;
  --normal-font-family: "Inter";
  --heading-font-family: "EB Garamond", serif;
  --light-font-weight: 400;
  --bold--font-weight: 700;
  --footer-bg: #355b32;
}

body {
  overflow-x: hidden;
  padding-top: 122px;
}
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); */
  max-width: var(--min-width);
  font-family: var(--normal-font-family);
  padding: 0 20px;
}
.pre-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--min-width);
  font-family: var(--normal-font-family);
}
.content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.content_image {
  height: auto;
  width: auto;
}
.content img {
  height: auto;
  width: 100%;
}
.content_text h2 {
  color: var(--primary-color);
  font-family: var(--heading-font-family);
  font-size: var(--heading-size);
  font-weight: 600;
  margin-bottom: 20px;
}
.content_text p {
  color: var(--black);
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--large-font-size);
  line-height: 23px;
  margin-bottom: 14px;
}
.content_text h4 {
  color: var(--black);
  font-size: 20px;
  font-weight: var(--bold--font-weight);
  margin-bottom: 10px;
}
.content_btn {
  display: flex;
  padding: 12px 39px;
  align-items: center;
  border-radius: 6px;
  background: var(--primary-color);
  margin-top: 20px;
  color: var(--white);
  font-family: var(--normal-font-family);
  font-size: 18px;
  font-weight: 600;
  width: max-content;
  border: 1.5px solid var(--primary-color);
  cursor: pointer;
}
.content_btn:hover {
  background-color: white;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}
.content_heading h5 {
  color: var(--primary-color);
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.content_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 950px;
}
.content_heading h2 {
  color: var(--black);
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: 40px;
  font-weight: var(--bold--font-weight);
  line-height: 120%;
}
.content_heading p {
  color: var(--black);
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}
.d-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1440px) {
  .pre-container {
    max-width: 1200px;
  }
}
@media (max-width: 1120px) {
  body {
    padding-top: 112px;
  }
}
@media (max-width: 1024px) {
  body {
    padding-top: 132px;
  }
}

@media (max-width: 768px) {
  .content_heading h2 {
    font-size: 32px;
  }
  .content_heading p {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  :root {
    --normal-font-size: 14px;
    --large-font-size: 16px;
    --heading-size: 20px;
  }
  .content_btn {
    font-size: 14px;
    padding: 8px 12px;
  }
  .content_heading h2 {
    font-size: 22px;
}
.content_heading p {
    font-size: 12px;
}
.d-flex{
  flex-direction: column;
}
}
