* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}
a,
button:active,
button:focus,
input:active,
input:focus {
  outline: 0 !important;
}
a:hover {
  text-decoration: none;
}

/* container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
}

/* header */
.header {
  background: #646464;
  padding: 13px 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.headerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.logo img {
  display: block;
  max-width: 100%;
}
.headerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.headerLink {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  padding: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.headerLink:hover {
  color: rgba(255, 255, 255, 0.75);
}
.burgerImg {
  display: none;
}
.burgerImg img {
  display: block;
  max-width: 100%;
}

/* intro */
.intro {
  padding: 48px 0;
  background: #f8f9fa;
}
.introInner {
  text-align: center;
}
.introImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.introTitle {
  color: #212529;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 57.6px; /* 120% */
  margin-top: 23px;
}
.introSub {
  color: #212529;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 150% */
  margin-top: 8.7px;
}
.introBtn {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  padding: 7px 13px;
  border-radius: 6px;
  border: 1px solid #0d6efd;
  background: #0d6efd;
  margin-top: 16px;
}

/* items */
.items {
  padding: 48px 0;
}
.items1 {
  background: #f8f9fa;
}
.itemsTitleContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7.6px;
  padding-bottom: 9.3px;
  border-bottom: 1px solid #dee2e6;
}
.itemsTitleContainer img {
  display: block;
}
.itemsTitle {
  color: #212529;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 38.4px; /* 120% */
}
.itemsBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 26px;
  margin-top: 25px;
}
.itemBlock {
  width: 32%;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.itemBlockImg img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.itemBlockText {
  padding: 16px;
}
.itemBlockTitle {
  color: #212529;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 120% */
}
.itemBlockSub {
  color: #212529;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-top: 8px;
}
.itemBlockBtn {
  display: inline-block;
  color: #0d6efd;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  border-radius: 6px;
  padding: 7px 13px;
  border: 1px solid #0d6efd;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 16px;
}
.itemBlockBtn:hover {
  background: #0d6efd;
  color: #fff;
}

/* items2 */
.items2 {
  padding: 48px 0;
}

/* suscribe */
.suscribe {
  margin-top: 117px;
}
.suscribeInner {
  max-width: 498px;
  margin: 0 auto;
  text-align: center;
}
.suscribeTitle {
  display: inline-block;
  color: #212529;
  text-align: center;
  font-family: 'Segoe UI';
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 38.4px; /* 120% */
  padding-bottom: 6px;
  border-bottom: 3px solid #007bff;
}
.suscribeInput {
  display: block;
  width: 100%;
  color: rgba(33, 37, 41, 0.75);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  background: #fff;
  padding: 8px 12px;
  margin-top: 33px;
}
.suscribeBtn {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  padding: 9px 13px;
  border-radius: 6px;
  border: 1px solid #0d6efd;
  background: #0d6efd;
  margin-top: 17px;
}

/* weather */
.weather {
  margin-top: 90px;
}
.weatherBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
  padding: 16px;
}
.weatherImg {
  color: #212529;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 150% */
}
.weatherValue {
  color: #212529;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 38.4px; /* 120% */
  border-left: 1px solid #dee2e6;
  padding: 5px 15.655px 14.39px 17px;
}
.weatherMode {
  color: #6c757d;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  border-left: 1px solid #dee2e6;
  padding: 8px 15.607px 12px 17px;
}
.weatherSpeed {
  color: #212529;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
  padding: 11px 15.65px 10px 17px;
  border-left: 1px solid #dee2e6;
}

/* footer */
.footer {
  background: #646464;
  margin-top: 60px;
  padding: 24px 0;
}
.footerLinks {
  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;
  gap: 16px;
}
.footerLink {
  color: #0d6efd;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.footerSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.footerSub {
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
}
