* {
  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;
}

body {
  background: #fff;
}

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

/* header */
.header {
  background: #36454f;
  padding: 8px 0;
}
.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;
  gap: 16px;
}
.headerLink {
  display: block;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.burgerImg {
  display: none;
}
.burgerImg img {
  display: block;
  max-width: 100%;
}

/* intro */
.intro {
  margin-top: 40px;
}
.introInner {
  background: #f8f9fa;
  padding: 20px 0;
}
.introImg img {
  display: block;
  max-width: 100%;
}
.introText {
  padding: 0 12px;
}
.introTitle {
  color: #000;
  font-family: 'Open Sans';
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 23px;
}
.introSub {
  color: #6c757d;
  font-family: 'Open Sans';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
}
.introBtn {
  display: inline-block;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 10px;
  background: #0d6efd;
  margin-top: 30px;
}

/* items */
.items {
  margin-top: 40px;
}
.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: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.itemBlock {
  display: flex;
  flex-direction: column;
  width: 31.5%;
  height: 507px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.itemBlockImg img {
  display: block;
  max-width: 100%;
  width: 100%;
  border-radius: 5px 5px 0 0;
}
.itemBlockText {
  padding: 16px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.itemBlockTitle {
  color: #212529;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.itemBlockSub {
  color: #212529;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}
.itemBlockDate {
  color: #212529;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}

/* weather */
.weather {
  margin-top: 60px;
}
.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;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
  padding: 16px;
}
.weatherImg img {
  display: block;
  max-width: 100%;
}
.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: #36454f;
  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: 30px;
}
.footerLink {
  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% */
}
.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: 15px;
}
.footerSub {
  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% */
}
