/* google fonts */
/* inter */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/* google fonts */

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

body {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #fff6f2;
}

main {
  overflow-x: hidden;
}

.my-container {
  max-width: 1640px;
  margin: 0 auto;
  overflow: hidden;
}

.btn-common {
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  line-height: 164%;
  display: flex;
  padding: 8px 36px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-common:active {
  transform: scale(0.98);
}

.btn--primary {
  border: 1px solid #844f36;
  background: #844f36;
  color: #fff;
}
.btn--primary:hover {
  background: #6d412c;
}

.btn--outline {
  color: #844f36;
  border: 1px solid #844f36;
}

.form-select:focus {
  box-shadow: none;
  border: 1px solid #844f36;
  border-radius: 4px;
}

.form-select option:hover {
  background: #844f36;
  color: #fff;
}

.accordion-button {
  background-color: inherit;
}

.accordion-button:focus {
  box-shadow: none;
  background-color: inherit;
  border: none;
}

.accordion-header {
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: inherit;
  border: none;
  box-shadow: none;
}

.accordion-item {
  background-color: inherit;
}

.section-title {
  color: #333;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

.mobile-nav-logo {
  max-width: 165px;
  height: auto;
}

.mobile-nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1700px) {
  .my-container {
    padding: 0 20px;
  }
}

@media (max-width: 1350px) {
  .btn-common {
    font-size: 17px;
  }

  .navbar-content {
    gap: 30px;
  }

  .section-title {
    font-size: 50px;
    line-height: 60px;
  }
}

/* 1024px and below */
@media (max-width: 1024px) {
  .section-title {
    font-size: 40px;
    line-height: 50px;
  }

  .btn-common {
    font-size: 16px;
    padding: 8px 32px;
  }
}

/* 768px and below */
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
    line-height: 46px;
  }

  .btn-common {
    font-size: 15px;
    padding: 8px 28px;
  }
}

/* 480px and below */
@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
    line-height: 32px;
  }
  .btn-common {
    font-size: 14px;
    padding: 6px 24px;
  }
}

/* 375px and below */
@media (max-width: 375px) {
  .section-title {
    font-size: 22px;
    line-height: 30px;
  }
}
