:root {

  /**
   * colors
   */

  --indigo-dye: hsl(207, 53%, 25%);
  --black-coral: hsl(0, 0%, 0%);
  --cultured: hsl(0, 0%, 96%);
  --white: hsl(0, 0%, 100%);
  --teal-blue: #4090D1;

  /**
   * typography
   */

  --ff-be-vietnam-pro: 'Be Vietnam Pro', sans-serif;

}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

button {
  cursor: pointer;
}

html {
  font-family: var(--ff-be-vietnam-pro);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.w-100 {
  width: 100%;
}

h1,
h2,
h3 {
  color: var(--indigo-dye);
  line-height: 1.2;
}

.h1 {
  font-size: var(--fs-1);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
}

.section-text {
  color: var(--black-coral);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}

.btn {
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 16px 30px;
  border-radius: var(--radius-4);
  transition: var(--transition);
}

.btn-primary {
  color: var(--white);
  background: var(--indigo-dye);
}

.btn>ion-icon {
  font-size: 18px;
}

.btn-primary:is(:hover, :focus) {
  background: var(--blue-ryb);
}

.btn-secondary {
  background: var(--teal-blue);
  color: var(--white);
}

.btn-secondary:is(:hover, :focus) {
  background: var(--indigo-dye);
}

.section-subtitle {
  color: var(--black-coral);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-bottom: 15px;
}

.section-title {
  text-align: center;
}

.logo img {
  width: 100%;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background: var(--white);
  padding-top: 40px;
  padding-bottom: 10px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--black-coral);
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-title .hero .section-text {
  margin-bottom: 20px;
}

.hero .btn {
  margin-inline: auto;
}

.contact-container {
  display: flex;
  flex-direction: row;
  gap: 36px;
  justify-content: center;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-right {
  /* border-left: 1px solid var(--teal-blue); */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.divide {
  border-left: 1px solid var(--teal-blue);
}

.location-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.location-icon {
  background: var(--cultured);
  color: var(--black-coral);
  font-size: 22px;
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.hero-subtitle {
  color: var(--indigo-dye);
  line-height: 1.6;
  font-style: normal;
  font-size: 0.9rem;
}

/*-----------------------------------*\
  #DISCLAIMER
\*-----------------------------------*/
.disclaimer {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.text-white {
  color: var(--white);
}

.disclaimer-text {
  color: var(--black-coral);
  line-height: 1.3;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: justify;
  font-size: 0.5rem;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer .logo {
  margin-bottom: 20px;
}

.footer-bottom {
  padding-block: 1rem;
  border-top: 1px solid var(--black-coral);
  border-top-width: thin;
}

.copyright {
  color: var(--black-coral);
  font-size: var(--fs-4);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 15px;
}

.copyright>a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
}

.copyright>a:is(:hover, :focus) {
  color: var(--teal-blue);
}

.social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.social-link {
  background: hsla(0, 0%, 90%, 0.5);
  color: var(--black-coral);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) {
  background: var(--black-coral);
  color: var(--white);
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 560px;
    margin-inline: auto;
  }

}

/**
 * responsive larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * base font size
   */

  html {
    font-size: 17.5px;
  }

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 2.286rem;
    --fs-2: 1.829rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 700px;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
  }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright {
    margin-bottom: 0;
  }

}

/**
 * responsive larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * base font size
   */

  html {
    font-size: 18px;
  }

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 2.571rem;
    --fs-2: 1.944rem;
    --fs-3: 1.167rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 950px;
  }

  .section-title {
    max-width: 20ch;
    margin-inline: auto;
    text-align: center;
  }

  .no-margin {
    margin-inline: initial;
  }

  /**
   * HERO
   */

  .hero {
    padding-top: 80px;
  }

  .hero .btn {
    margin-inline: 0;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .contact-list {
    padding: 30px;
  }

  .contact-item:first-child {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

}


/**
 * responsive larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3rem;
    --fs-2: 2.333rem;
    --fs-3: 1.222rem;
    --fs-4: 0.944rem;

  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1000px;
  }

}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .logo {
    width: 75%;
  }
}

@media (max-width: 575px) {
  .hero-text {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}