@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500&subset=latin-ext');

body {
    font-family: 'Poppins', sans-serif;
	margin:0;
    color: #000;
    background-color:#ffffff;
}

header{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding:50px 0;
   
}

main{
     width: 90%;
      margin: 0 auto;
      font-size: 15px;
      padding: 0 30px;
    max-width: 1024px;
    display:flex;
    flex-direction: row; 
    flex-wrap: wrap;
    gap:40px;
}
main p {
  line-height: 25px;
  margin-top: 0;
    font-size:16px;
    color:#000;
    padding:10px;

}

footer{
    width: 100%;
    margin: 60px auto 20px auto;
    float:left;
    text-align: center;
    color:#000;
    font-size:12px;
}
h1 {
    color: #bf944e;
    font-size: 40px;
    font-weight: 600;
    margin: 20px 0 0 20px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

h2 {color: #bf944e;
    font-size:20px;
    font-weight: 600;
    margin:20px 0;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

h2:hover {
    color: #000;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

div.text {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100%/2 - 40px);

}

div.text--100 {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    font-size: 16px;

}
.image {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    -webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.image:hover {
    filter: grayscale(0);
    -webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}

a {
    text-decoration: none;
}

strong {font-weight:500;}

 @media all and (min-width:200px) and (max-width:600px) {
     div.text {width: 100%;}
}
