.widget {
  padding-bottom: 100px;
  width: 100%;
}
.widget__wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  height: 310px;
}
.widget__weather {
  padding: 30px;
  border-radius: 20px;
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
}
.widget__weather_windy {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
}
.widget__weather-left {
  max-width: 407px;
}
.widget__weather-left .title-s {
  margin-bottom: 20px;
}
.widget__location {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}
.widget__location-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
.widget__location-subtitle {
  color: #858790;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.widget__location-btn {
  width: 56px;
  height: 56px;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
}
.widget__weather-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 326px;
  width: 100%;
  height: 100%;
}
.widget__weather-img .q-img {
  height: 100%;
  border-radius: 30px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.widget__weather-img-mobile {
  display: none;
}
.widget__weather-box {
  margin-bottom: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.widget__weather-temp {
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
}
.widget__weather-subtitle {
  color: #858790;
}
.widget__weather-line {
  margin-bottom: 20px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  border-bottom: 1px solid #ddd;
}
.widget__weather-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.widget__weather-slider .carousel__viewport {
  width: calc(100% - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.widget__weather-slider-item {
  flex-direction: column;
}
.widget__weather-slider-time {
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  text-wrap: nowrap;
}
.widget__weather-slider-icon svg {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget__weather-slider-temp {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}
.widget__weather-slider-arrows {
  position: absolute;
  top: calc(50% - 10px);
  bottom: calc(50% - 10px);
  right: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.widget__weather-slider-arrows .q-btn {
  width: 20px;
  height: 20px;
  min-height: unset;
  min-width: unset;
  border: 1px solid rgba(11, 18, 33, 0.3);
  transition: all 0.3s linear;
}
.widget__weather-slider-arrows .q-btn:hover {
  background-color: #ff521b;
  border-color: #ff521b;
}
.widget__weather-slider-arrows .q-btn:hover svg path {
  fill: #ffffff;
}
.widget__weather-slider-arrows .q-btn svg {
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget__weather-slider-arrows .q-btn svg path {
  fill: #0b1221;
  transition: all 0.3s linear;
}
.widget__currency {
  padding: 30px;
  border-radius: 20px;
  background: #f2f2f2;
}
.widget__currency-date {
  color: #858790;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
.widget__currency .top {
  margin-bottom: 30px;
  justify-content: space-between;
}
.widget__currency .q-table__card {
  background-color: transparent;
}
.widget__currency .q-table {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
.widget__currency .q-table thead {
  color: #858790;
}
.widget__currency .q-table thead tr,
.widget .q-table tbody td {
  height: 36px;
}
.widget__currency .q-table th,
.widget .q-table td {
  padding: 10px 0px;
  background-color: inherit;
}
@media (max-width: 1200px) {
.widget__weather-left {
    max-width: 285px;
}
}
@media (max-width: 1080px) {
.widget__weather,
  .widget__currency {
    padding: 20px;
}
.widget__weather-img {
    max-width: 280px;
}
.widget__location-title {
    font-size: 22px;
}
.widget__weather-temp {
    font-size: 32px;
}
}
@media (max-width: 940px) {
.widget__weather {
    padding: 0;
}
.widget__weather-left .title-s {
    margin: 20px 20px 0 20px;
}
.widget__location,
  .widget__weather-box,
  .widget__weather-line,
  .widget__weather-slider {
    margin: 20px;
}
.widget__weather-img {
    display: none;
}
.widget__weather-img-mobile {
    margin-bottom: 14px;
    display: flex;
}
.widget__weather-left {
    max-width: 100%;
}
.widget__wrap {
    grid-template-columns: 1.5fr 1fr;
    height: unset;
}
.widget__weather-line {
    padding-bottom: 20px;
}
}
@media (max-width: 768px) {
.widget {
    padding-top: 20px;
    padding-bottom: 45px;
}
.widget__wrap {
    grid-template-columns: 1fr;
}
}
@media (max-width: 640px) {
.widget .title-s {
    font-size: 18px;
}
.widget__location-title {
    font-size: 18px;
}
.widget__location-subtitle {
    font-size: 13px;
}
.widget__location-btn {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: 10px;
}
.widget__weather-temp {
    font-size: 28px;
}
.widget__weather-box {
    font-size: 13px;
    line-height: 16px;
}
.widget__currency-date {
    font-size: 18px;
    line-height: 20px;
}
.widget__currency .top {
    margin-bottom: 20px;
    gap: 10px;
}
}.service-categories {
  width: 100%;
}
.service-categories .top {
  margin-bottom: 20px;
}
.service-categories .q-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-categories .q-item {
  padding: 5px 20px 10px 20px;
  min-height: unset;
}
.service-categories .q-item__section--main {
  font-weight: 500;
}
.service-categories .q-item__section--side {
  display: none;
}
.service-categories__btn-all {
  display: none;
}
.service-categories__number {
  margin-left: 6px;
  color: #858790;
}
.service-categories__subtitle {
  color: #858790;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 1080px) {
.service-categories .q-list {
    grid-template-columns: repeat(3, 1fr);
}
.service-categories .q-expansion-item:nth-child(n+7) {
    display: none;
}
.service-categories__btn-all {
    margin-top: 15px;
    display: flex;
}
}
@media (max-width: 768px) {
.service-categories .q-item {
    padding: 10px 0px 10px 0px;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
}
.service-categories .q-expansion-item:nth-child(n+4) {
    display: none;
}
}
@media (max-width: 640px) {
.service-categories .q-list {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 500px) {
.service-categories .q-list {
    grid-template-columns: repeat(1, 1fr);
}
}.platform .main-page .services .top .sort {
  display: none;
}
.platform .main-page .services .q-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
.platform .section {
    padding-top: 23px;
    padding-bottom: 16px;
}
.platform .q-header__platform .banner-top {
    padding-top: 0;
    padding-bottom: 0;
}
}