:root {
  --main-color: #272525;
  --secondary-color: #3761aa;
  --text-m: 1.8rem;
  --text-l: 2.2rem;
  --text-xl: 4rem;
}

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

html {
  min-height: 100%;
  font-size: 62.5%;
  background: url(img/bg.jpg) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Generall styles*/
body {
  color: var(--main-color);
  font-family: 'Lora', serif;
  font-size: var(--text-m);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
section {
  padding: 0 2rem;
}
.container {
  max-width: 93rem;
  margin: 0 auto;
}
.line {
  height: 0.3rem;
  background: var(--main-color);
}
.line-double {
  height: 1.5rem;
  border-top: 0.3rem solid var(--main-color);
  border-bottom: 0.8rem solid var(--main-color);
}
.line-indent {
  text-indent: 1.5em;
}
.drop-cap::first-letter {
  -webkit-initial-letter: 4;
          initial-letter: 4;
  color: var(--secondary-color) ;
  font-size: 4em;
  font-weight: 500;
  line-height: 1;
  float: left;
  margin-right: 0.2em;
}

/* Header styles*/
.header {
  padding-top:7.5rem;
}
.row-1 {
  display:flex;
  align-items: center;
  justify-content: start;
  padding-top: 1rem;
}
.row-2 {
  display:flex;
  align-items: center;
  justify-content: space-between;
}

.header__title {
  font-size: var(--text-xl);
	font-weight: 700;
  line-height: 1;
  margin: 0 auto;
}
.header__logo {
  height: 6.8rem;
}

/* Article styles*/
.article {
  margin-bottom: 10rem;
}
.article__title {
  color: var(--secondary-color);
	font-family: 'Montserrat', sans-serif;
  font-size: var(--text-l);
	font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-align: left;
  margin-top: 1.3em;
  margin-bottom: 0.6em;
}
.article__image {
  margin-top: 3.5rem;
  margin-bottom: 4.2rem;
}
.article p {
  text-align: justify;
  margin-top: 0.5em;
}
.article ul {
  margin-left: 5rem;
}

@media (max-width: 45em) {
  .header {
    padding-top:4rem;
  } 
  .header__logo {
       height: 4rem;
  }
  .article__image {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
  }
}

@supports (font-size: clamp(1vw, 2vw, 3vw)) {
	:root {
    --text-m: clamp(1rem, calc(2vw + 1rem), 3.2rem);
    --text-l: clamp(1.5rem, calc(3vw + 1rem), 4rem);
    --text-xl: clamp(4rem, calc(6vw + 1rem), 9rem);
	}
}