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



html, body {
  display: flex;
  flex-direction:column;
  min-height: 100%;
  height:100%;
}

@media (max-width: 800px) {
  body.works_on_smartphone {
  	display: block;
  }
  body.works_on_smartphone main {
  	display: block;
  }
  header .right {
  	float: none;
  }
}

main {
    flex-grow:1;
}

.logo {
    width: 200px;
    margin-top: -50px;
    margin-right: 48px;
}

.logo:hover {
    transform:scale(1.05,1.05);
    transition:0.5s;
}

.menu ul {
    list-style:none;
    margin: 0;
    padding: 0;
    overflow:hidden;
    top: 0;
    width:100%;
    left:0;
    background-color: #333;
}


.menu ul li a {
    float:left;
    display: block;
    color: white;
    text-align:center;
    padding: 14px;
    font-weight:600;
    text-decoration:none;
}


.menu ul li a:hover {
    background-color: rgb(90, 86, 86);
    cursor:pointer;
}

h2,small,a{
  margin:0;
  padding:0;
}

a{
  text-decoration:none;
}

.Carousel {
  width:100%;
  margin: 0px -20px;
}

.Carousel h2{
  font-size: 40px;
  line-height: 38px;
  padding-bottom: 24px;
  opacity: 0.9;
  letter-spacing: 10px;
  text-align:center;
  font-style: italic;
}

/*imag*/

.slick-list {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 304px;
  padding: 10px 0px;
  margin: 0px auto;
  max-width: 90vw;
  overflow: hidden;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  transition: .5s ease-in-out;
}

.slick {
  position: relative;
  width: 275px;
  padding: 0px 18px;
  float: left;
  box-sizing: border-box;
  display: flex;
  height: 100%;
}

.slick h4 {
  position: absolute;
  z-index: 1;
  font-size: 22px;
  line-height: 23px;
  color: white;
  padding: 15px;
}

.slick h4 small {
  font-size: 15px;
  display: block;
}

.slick a img {
  object-fit:cover;
  height: 300px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.5);
  transition: 0.3 ease-in-out;
}

.slick a img:hover{
  opacity:0.85;
}

.slick-arrow{
  border-radius: 30px;
  background-color: #fff;
  position: absolute;
  z-index: 4;
  width: 48px;
  height: 48px;
  text-align: center;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.15);
  border: 0;
  cursor: pointer;
}

.slick-arrow:focus{
  outline: 0;
}

.slick-arrow svg{
  width: 12px;
  height: 100%;
  color: rgba(0,0,0,.7);
}

.slick-prev{
  left:0px;
}

.slick-next{
  right: 0px;
}
.red {
    background-color: rgb(194, 18, 18);
    color:  rgb(194, 18, 18);
    display:flex;
}

.blue {
    background-color: rgb(27, 27, 190);
    color:  rgb(27, 27, 190);
    display:flex;
 }

 .social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5px;
    float:right;
  }
  .social-buttons__button {
    margin: 10px 5px 0;
  }
  
  .social-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    width: 70px;
    height: 70px;
    text-decoration: none;
  }
  .social-button__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 100%;
    background: #fff;
    text-align: center;
  }
  .social-button i,
  .social-button svg {
    position: relative;
    z-index: 1;
    transition: 0.3s;
  }
  .social-button i {
    font-size: 28px;
  }
  .social-button svg {
    height: 40%;
    width: 40%;
  }
  .social-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    border-radius: 100%;
    transition: 0.3s;
  }
  .social-button:focus, .social-button:hover {
    color: #fff!important;
  }
  .social-button:focus::after, .social-button:hover::after {
    width: 100%;
    height: 100%;
    margin-left: -50%;
  }
  
  .social-button--facebook {
    color: #3b5998 !important;
  }
  .social-button--facebook::after {
    background: #3b5998;
  }
  .social-button--twitter {
    color: #1da1f2 !important;
  }
  .social-button--twitter::after {
    background: #1da1f2;
  }
  .social-button--pinterest{
   color: #bd081c !important;
  }
  .social-button--pinterest::after {
    background: #bd081c;
  }
  .social-button--youtube {
   color: #ff0000 !important;
  }
  .social-button--youtube::after {
    background: #ff0000;
  }
  .social-button--instagram {
   color: #c13584 !important;
  }
  .social-button--instagram::after {
    background: #c13584;
  }