/* Make images responsive */
/* img {
  max-width: 100%;
  height: auto;
} */

/* GLOBAL */
:root {
  --primary-color: #711914;
  --primary-color-50-opacity: #D0A9A6;
  --background-color: #FCEBE9;
  --global-side-padding: 16px;
}

@font-face {
  font-family: "mier-a";
  src: url("assets/MierA-Light.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "mier-a";
  src: url("assets/MierA-LightItalic.ttf");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "mier-a";
  src: url("assets/MierA-DemiBoldItalic.ttf");
  font-weight: 600;
  font-style: italic;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background-color);
  max-width: 1080px;
  margin: 0px auto;
  color: var(--primary-color);
  font-family: "mier-a", sans-serif;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

p {
  font-size: 18px;
}

.bottom-border {
  border-bottom: 0.5px solid var(--primary-color-50-opacity);
}

.two-col-section {
  display: flex;
  gap: 30px;
  padding: 80px var(--global-side-padding);
  flex-direction: row;
}

.two-col-section-child {
  flex: 1;
}

.single-col-section {
  padding: 80px var(--global-side-padding);
}

.single-col-section-child {
  max-width: max-content;
  margin: 0px auto;
  text-align: center;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 26px;
}

.bold {
  font-weight: 600;
}

.link {
  color: var(--primary-color);
}

/* HEADER */
header {
  padding: 12px var(--global-side-padding);
}

.hero-section {
  padding: 120px var(--global-side-padding);
  background-image: url("assets/mesh-grandient.svg");
  background-repeat: no-repeat;
  background-position-x: 550px;
}

.title-text {
  width: 510;
}

.nav-logo {
  width: auto;
  height: 36;
}

.pk-flag {
  display: inline;
  height: 28px;
  width: auto;
}

/* SECTION 1 */
.quote {
  background-color: #F7C6C3;
  padding: 20px 26px;
}

.quote-title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 32px;
  padding-bottom: 6px;
}

.quote-subtitle {
  font-style: italic;
  padding-bottom: 6px;
}

/* SECTION 2 */
.assets-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.assets-container-child {
  flex: 1;
  max-width: 130px;
}

/* SECTION 3 */
.btwn-text-space {
  margin-bottom: 6px;
}

.button {
  display: block;
  padding: 10px 26px;
  width: max-content;
  margin: 12px auto 0px auto;
  text-decoration: none;
  background-color: white;
  border: 1px solid var(--primary-color);
  line-height: 100%;
  color: var(--primary-color);
}

/* FOOTER */
footer {
  padding: 12px 0px 16px 0px;
}

.footer-content {
  max-width: max-content;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: end;
}

.email-icon {
  width: 18px;
  height: 18px;
}