html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
    background-color: #ffffff;
    color: #2b2b2b;
    font-family: "Lato", serif;
    height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

main {
  display: flex;
  align-items: center;
  min-height: calc(100% - 54px);
}

p {
    line-height: 1.4;
    text-align: center;
    font-size: 24px;
    margin-bottom: 32px;
}

a {
    color: #2b2b2b;
    font-weight: 700;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
  background-color: #309102;
  border:1px solid #309102;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  transition: .3s;
}

.btn:hover {
  border-color: #309102;
  background-color: transparent;
  color: #2b2b2b;
}

.logo {
    margin: 0 auto;
    padding: 40px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
}

h1 {
  opacity: 0;
  overflow:hidden;
  visibility: hidden;
  height:0;
  width:0;
}

h2 {
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 64px;

}

.contact-link {
  display: inline-flex;
  gap: 14px;
  font-size: 18px;
}

.contact-link:hover {
  text-decoration: none;
}
.contact-link img {
  width: 30px;
}

.contact-box {
    padding: 40px;
    text-align: center;
}

footer p {
  padding: 30px 10px 10px;
}

.swiper-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}