@import url("https://fonts.googleapis.com/css?family=Lato:300,400,500,700,900");
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top {
  height: 360px;
  /*background-image: url("../img/back.jpg");*/
  background: #00663F;
  background-size: 100% 100%;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  text-align: left;
  padding-top: 80px;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 136px;
  opacity: 0.84;
  background-color: #00663F;
}
.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.column {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 944px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

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

body,
html {
  color: #000;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #fff;
}

@media screen and (max-width: 768px) {
  body,
  html {
    text-align: center;
    font-size: 0.9vw;
  }
}

img {
  max-width: 100vw;
}

h2 {
  color: #2D3345;
  font: 38px "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 0.47px;
  line-height: 44px;
  text-align: center;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

h2 span {
  color: #2D3345;
  font: 38px "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.47px;
  line-height: 44px;
}

@media screen and (max-width: 768px) {
  h2 span {
    font-size: 32px;
    line-height: 40px;
  }
}

@media screen and (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

.underheader {
  text-align: left;
  margin: 40px 0 68px;
  color: #fff;
  font: 20px "Lato", sans-serif;
  font-weight: 300;
  line-height: 32px;
}

@media screen and (max-width: 768px) {
  .underheader {
    font-size: 18px;
    line-height: 30px;
    margin: 10px auto 37px;
    text-align: center;
  }
}

.underheader span {
  color: #636E7D;
  font-size: 18px;
  letter-spacing: 0.22px;
  line-height: 30px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .underheader span {
    font-size: 18px;
    line-height: 30px;
  }
}




.top h2 {
  text-align: left;
  color: #fff;
  font: 54px "Lato", sans-serif;
  font-weight: 500;
  line-height: 62px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .top h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    margin: 20px auto 24px;
  }
}

.top .row {
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .top .row {
    flex-direction: column;
  }
}

.store {
  display: block;
  width: 210px;
  height: 65px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-radius: 45px;
}

@media screen and (max-width: 768px) {
  .store {
    margin: 0 auto;
  }
}

.store img {
  max-width: 100%;
}

.top__phone {
  width: 33%;
  justify-self: flex-end;
  display: flex;
  flex: 0 1 42%;
}

.top__phone img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .top__phone {
    width: 100%;
  }
}

.top__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .top__text {
    width: 100%;
    order: 2;
  }
}

.mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile {
    display: block;
  }
}

.desktop {
  display: block;
}

@media screen and (max-width: 768px) {
  .desktop {
    display: none;
  }
}

.top__store {
  cursor: pointer;
  width: 230px;
  height: 66px;
  box-shadow: 0 10px 22px 0 rgba(255, 180, 0, 0.16);
  border-radius: 50px;
  margin-top: 50px;
}

.top__store img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .top__store {
    margin: 10px auto;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about {
  background: #F3F4F6;
  padding: 90px 0;
}

@media screen and (max-width: 768px) {
  .about {
    padding: 50px 0;
  }
}

.about h2 {
  color: #383838;
  font-size: 32px;
  line-height: 39px;
  font-weight: 900;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .about h2 {
    font-size: 28px;
    color: #383838;
    margin-bottom: 50px;
  }
}

.about .row {
  justify-content: space-around;
  align-items: flex-end;
}

.about__block {
  width: 12%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .about__block {
    width: 45%;
  }
}

.about__block:first-child img {
  box-shadow: 0 5px 11px 0 rgba(167, 10, 96, 0.3);
}

.about__block:nth-child(2) img {
  box-shadow: 0 5px 11px 0 rgba(10, 134, 167, 0.3);
}

.about__block:nth-child(3) img {
  box-shadow: 0 5px 11px 0 rgba(10, 167, 31, 0.3);
}

.about__block:nth-child(4) img {
  box-shadow: 0 5px 11px 0 rgba(2, 153, 219, 0.3);
}

.about__block img {
  max-width: 102px;
  border-radius: 90%;
}

.about__block p {
  text-align: center;
  color: #383838;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.contact {
  background: #fff;
  padding: 90px 0;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 30px 0;
  }
}

.contact img {
  display: block;
  margin: 10px auto;
}

.contact .container {
  width: 556px;
  max-width: 100vw;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .contact .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

.contact h2 {
  color: #2D3345;
  font: 32px "Lato", sans-serif;
  font-weight: 900;
  line-height: 32px;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .contact h2 {
    font-size: 32px;
    line-height: 30px;
    margin-top: 50px;
  }
}

.contact h3 {
  color: #2D3345;
  font: 26px "Lato", sans-serif;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  margin: 20px auto;
}

@media screen and (max-width: 768px) {
  .contact h3 {
    font-size: 16px;
    line-height: 30px;
    margin: 10px auto;
  }
}

.contact form {
  width: 85%;
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .contact form {
    width: 96%;
    margin: 20px auto;
  }
}

.contact input,
.contact textarea {
  background: rgba(243, 244, 246, 0.55);
  border: none;
  border-radius: 8px;
  color: #2D3345;
  font: 18px "Lato", sans-serif;
  font-weight: 300;
  line-height: 38px;
  padding: 10px 20px;
  outline: none;
}

.contact input:active, .contact input:focus, .contact input:hover,
.contact textarea:active,
.contact textarea:focus,
.contact textarea:hover {
  outline: none;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #2D3345;
  padding: 0;
}

.contact .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .contact .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.contact input {
  width: 48%;
  height: 46px;
}

@media screen and (max-width: 768px) {
  .contact input {
    width: 100%;
    margin: 10px auto;
  }
}

.contact textarea {
  resize: none;
  min-height: 48px;
  width: 100%;
  margin: 20px auto 0;
}

@media screen and (max-width: 768px) {
  .contact textarea {
    margin: 10px auto;
  }
}

.contact button {
  background: transparent;
  border-radius: 26px;
  border: 2px solid #00663F;
  font: 18px "Lato", sans-serif;
  font-weight: 500;
  color: #00663F;
  text-align: center;
  width: 263px;
  height: 52px;
  outline: none;
  margin: 7px auto 0;
  cursor: pointer;
}

.contact button:active, .contact button:focus, .contact button:hover {
  outline: none;
}

.captcha-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px auto 20px;
}



footer .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__logo {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font: 38px "Lato", sans-serif;
  font-weight: 700;
  line-height: 28px;
  color: #2C72E2;
}

.footer__logo img {
  max-width: 68px;
  margin-right: 16px;
}

@media screen and (max-width: 768px) {
  .footer__logo img {
    max-width: 100%;
    margin: 10px auto;
  }
}

@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 15%;
    margin-left: 5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__links {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer__links {
    width: 70%;
    flex-direction: column;
    align-items: flex-end;
  }
}

.footer__links a {
  color: #fff;
  font: 20px "Lato", sans-serif;
  font-weight: 300;
  line-height: 31px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font: 18px "Lato", sans-serif;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.22px;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 15px;
  }
}

.footer__logo-title {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  color: #fff;
  font: 24px "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 28px;
}

@media screen and (max-width: 768px) {
  .footer__logo-title {
    font-size: 14px;
    line-height: 15px;
  }
}

.footer__logo-description {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  color: #fff;
  font: 12px "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: 1.09px;
  line-height: 14px;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .footer__logo-description {
    font-size: 13px;
    line-height: 15px;
    display: none;
  }
}

@-webkit-keyframes waver {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
    transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}

@keyframes waver {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
    transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
