/*RESET*/
html, body, ul, li, h1, h2, h3, h4, h5, h6, img, p {
  margin: 0;
  padding: 0;
  color: #969696;
  font-family: 'Montserrat', sans-serif;  
}

a{
    text-decoration: none;
}

html {
	font-size:62.5%;
    box-sizing: border-box;
    
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {	
	font-size:1.6rem;    
}

img {
    max-width:100%;
}

.content__container {
  max-width: 680px;
  margin: 0 auto;
  padding-top: 45px;
}

.content__container h1{text-align:center;}
.content__container h1.success{color:#81c835;}
.content__container h1.error{color:#ffa500;}

.top__logo {
  display: block;
  margin: 0 auto 30px auto;
  
}

.content__header {
  text-align: center;
}

.header__text {
  border: 6px solid #81c835;
  padding: 35px 20px;
}

.header__text h2 {
  color: #334b21;
  font-size: 1.7rem;
  font-weight: 700;
}

.rating__container {
  max-width: 216px;
  height: 40px;
  margin: 0 auto; 
}

.rating__bar {
  border-bottom: 6px solid #eef2ea;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  
}

.rating__bar p,
.rating__additional p{
  color: #81c835;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.rating__additional {
  padding-top: 20px;
}

.rating__additional textarea {
  border: 6px solid #eef2ea;
  padding: 25px 20px;
  width: 100%;
  margin-bottom: 15px;
}

input[type=submit] {
  border:none;
  background-color: #334b21;
  color: #ffffff;
  display: block;
  max-width:300px;
  padding: 10px 25px;
  margin: 0 auto;
  text-transform: uppercase;
}

input[type=submit]:hover {
  background-color: #4c6f32;
}

/*RATING STARS */

.stars {
  background: #ffffff;
  height: 30px;
  width: 200px;
  padding: 10px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  margin: 0 auto;
}

.star__input{
  position: absolute;
  left: -99999px;
}

.star__label {
  width: 30px;
  height: 30px;
  padding: 5px;
  color: transparent;
}

.star__label::before {
  content: '★';
  color: #b8bbb6;
  font-size: 45px;
  line-height: 30px;
  margin-right: -100%;
}

.star__label:hover::before,
.star__label:hover ~ .star__label::before,
.star__input:checked ~ label::before {
  color: #ffa500;
}


/*FOOTER*/

footer {
  padding-bottom: 30px;
}
.footer__logo {
  display: block;
  margin-bottom: 30px;
}


.footer__font {
  color: #90a481;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7
}

footer a:hover {
  color: #90a481;
  text-decoration: underline;
}

.footer__adress {
  margin-bottom: 15px;
}

.social__icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.social__icons img {
  margin-right: 15px;
}

.footer__mr {
  display: block;
  margin-bottom: 15px;
}


@media (max-width: 991px) {
  
  footer {
    text-align: center;
  }
  .social__icons {
    justify-content: center;
  }
  
  .footer__logo {
    margin-bottom: 15px;
  }  
  
  .footer__logo-container{
    order: 2 !important;
  }
  
  
  .footer__logo {
    display: inline-block;
    margin-top: 15px;
  }
}

@media(max-width: 575px) {
  
}