/**
 * 
 * @format
 */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

:root {
  --white-smoke: #f3f3f3;
  --main: #AB4D2E;
  --second: #DD744E;
  --yellow: #F6BA55;
  --dark-yellow: #E99B16;
  --green: #97CE9E;
  --dark-green: #5DBB87;

  --black-oliver: #3E3A39;

  --container-margin: 6.25rem;
  --nav-item-min-height: 2.5rem;
  /* 16px */
  --margin-gap-1: 1rem;
  /* 32px */
  --margin-gap-2: 2rem;
  /* 48px */
  --margin-gap-3: 3rem;
  /* 64px */
  --margin-gap-4: 4rem;
  /* 80px */
  --margin-gap-5: 5rem;
  /* 96px */
  --margin-gap-6: 6rem;
  /* 112px */
  --margin-gap-7: 7rem;
  /* 128px */
  --margin-gap-8: 8rem;
  /* 144px */
  --margin-gap-9: 9rem;
  /* 160px */
  --margin-gap-10: 10rem;

  --input-padding-left: 1.25rem;
}

/* container */
/* container */
/* container */
body {
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: white;
}

body * {
  box-sizing: border-box;
}

main {
  background-color: white;
  height: 100%;
}

img {
  width: 100%;
}
/* text */
/* text */
/* text */
.h1 span,
h1 span,
.h1,
h1 {
  font-style: normal;
  font-weight: normal;

  font-size: 2.5rem;
  line-height: 1.2;

  color: var(--main);

  margin-bottom: 0;

  vertical-align: middle;
}

.h2 span,
h2 span,
.h2,
h2 {
  font-style: normal;
  font-weight: normal;

  font-size: 2.25rem;
  line-height: 1.2;

  /* font-weight: bold; */

  color: var(--black-oliver);

  margin-bottom: 0;

  vertical-align: middle;
}

.h3 span,
h3 span,
.h3,
h3 {
  font-style: normal;
  font-weight: normal;

  font-size: 2rem;
  line-height: 1.2;

  color: var(--black-oliver);

  margin-bottom: 0;

  vertical-align: middle;
}

.h4 span,
h4 span,
.h4,
h4 {
  font-style: normal;
  font-weight: normal;

  font-size: 1.75rem;
  line-height: 1.2;

  color: var(--black-oliver);
  margin-bottom: 0;

  vertical-align: middle;
}

.h5 span,
h5 span,
.h5,
h5 {
  font-style: normal;
  font-weight: normal;

  font-size: 1.5rem;
  line-height: 1.2;

  color: var(--black-oliver);
  margin-bottom: 0;

  vertical-align: middle;
}

.h6 span,
h6 span,
.h6,
h6 {
  font-style: normal;
  font-weight: normal;

  font-size: 1.2rem;
  line-height: 1.2;

  color: var(--black-oliver);
  margin-bottom: 0;

  vertical-align: middle;
}

.p span,
p span,
.p,
p {
  font-style: normal;
  font-weight: normal;

  font-size: 1rem;
  line-height: 1.5;

  color: var(--black-oliver);
  margin-bottom: 0;

  vertical-align: middle;
}

.i,
i {
  vertical-align: middle;
}

p .highlight {
  text-decoration: underline;
}

/* media query */
/* media query */
/* media query */
@media screen and (min-width: 1200px) {
  .container-fluid {
    padding-left: var(--container-margin);
    padding-right: var(--container-margin);
  }
}

@media screen and (max-width: 576px) {
}

@media screen and (max-width: 360px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body * {
    /* max-width: 100%; */
  }

  .h1,
  h1 {
    font-size: 2rem;
    /* word-wrap: break-word; */
    max-width: 100vw;
  }

  .h2,
  h2 {
    font-size: 1.8rem;
    /* word-wrap: break-word; */
    max-width: 100vw;
  }

  .h3,
  h3 {
    font-size: 1.6rem;
    /* word-wrap: break-word; */
    max-width: 100vw;
  }

  .h4,
  h4 {
    font-size: 1.4rem;
    /* word-wrap: break-word; */
    max-width: 100vw;
  }

  .h5,
  h5 {
    font-size: 1.2rem;
    /* word-wrap: break-word; */
    max-width: 100vw;
  }

  .h6,
  h6 {
    font-size: 1rem;
    /* word-wrap: break-word; */
    max-width: 100vw;
  }

  .p,
  p {
    font-size: 1rem;
    /* word-wrap: break-word; */
    max-width: 100vw;
  }
}


.btn {
  border: 0;
  outline: 0;
  width: fit-content;
  height: fit-content;
  padding: 0.5rem 1rem;
  min-width: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn p {
  font-weight: 500;
  color: white;
}

.btn-white {
  background-color: white;
}

.btn-white p {
  color: var(--main);
}

.btn-white:hover {
  background-color: white;
  transition: all 0.3s ease;
}

.btn-white:hover p {
  color: var(--second);
  transition: all 0.3s ease;
}

.btn-brown {
  background-color: var(--main);
  transition: all 0.3s ease;
}

.btn-brown p {
  color: white;
}

.btn-brown:focus,
.btn-brown:hover {
  background-color: var(--second);
  transition: all 0.3s ease;
}