:root {
	--top--section-margin: 80px;
    
    @media(max-width: 991px) {
    	--top--section-margin: 64px;
    }
}

@media(min-width: 1360px) {
	.dresden-design .container {
		width: 1320px;
	}
}

.dresden-design :is(.text, .contacts-text__text) a {
	color: #f60;
    transition: all .2s ease-in-out;
}
.dresden-design :is(.text, .contacts-text__text) a:hover {
	color: #4285f4;
}

.dresden-design a:visited,
.dresden-design a:focus {
	color: inherit;
}

.dresden-design .text-accent {
	color: #f60!important;
}

.post, 
.page {
	margin-bottom: 0;
}

.text h2 {
	font-weight: 700;
	font-size: 36px;
	letter-spacing: 0.02em;
    line-height: 1.2;
}
@media(max-width: 767px) {
	.text h2 {
    	text-align: center;
		font-size: 32px;
    }
}

.dresden-design :is(
	.section,
	.rating,
	.text,
	.map,
    .counter,
    .pagination
) {
	margin-top: var(--top--section-margin)!important;
    margin-bottom: 0!important;
}

.dresden-design .pulse-bg::after {
	content: none;
}
.dresden-design .pulse-bg {
	width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
}
.dresden-design .go-top {
	right: 70px;
  	bottom: 40px;
    left: unset;
}
.dresden-design :is(
	.pulse-bg,
	.go-top
) {
	display: inline-flex;
    align-items: center;
    justify-content: center;
	background-color: #f60;
    border-color: #f60;
}
.dresden-design .pulse {
	width: unset;
    height: unset;
}
.dresden-design .pulse-bg {
	transform:unset;
}
@media(max-width: 991px) {
	.dresden-design :is(
    	.pulse,
		.go-top
    ) {
    	right: 10px;
    }
}

.dresden-design .btn {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
	font-size: 14px;
    line-height: 20px;
	letter-spacing: 0.04em;
	color: #fff!important;
    gap: 8px;
	border-radius: 4px;
	padding: 8px 16px;
    background-color: #f60;
    color: #fff;
    transition: all .2s ease-in-out;
}
.dresden-design .btn.btn--white {
	background-color: #fff!important;
    color: #363636!important;
}
.btn-icon {
	width: 1rem;
    height: 1rem;
    min-width: 1rem;
    min-height: 1rem;
    object-fit: contain;
}
.dresden-design .btn:hover { 
	background: #4285f4;
    color: #fff;
}

.header {
	background-color: #1d2736;
}
.dresden-design .header::after {
	content: none;
}
.dresden-design .header__wrapper {
	display: grid;
    grid-template-columns: 280px 1fr 280px;
    height: unset;
    padding: 24px 0;
    width: 1600px;
    max-width: 95%;
    margin: 0 auto;
}
.header__logo-wrapper {
	display: flex;
    align-items: center;
    justify-content: start;
    gap: 13px;
}
.header__logo-img {
	width: 48px;
    height: 60px;
	min-width: 48px;
    min-height: 60px;
    object-fit: contain;
}
.header__logo-text-wrapper {
	display: flex;
    flex-direction: column;
}
.header__logo-text-row {
	white-space: nowrap;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
.header__logo-accent-text {
	color: #4285F4;
}
.header__nav {
	display: flex;
    justify-content: center;
    align-items: center;
}
.header__nav-list {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 23px;
	margin: 0;
	padding: 0;
    color: #fff;
}
.dresden-design .header__nav-list-item {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.header__nav-list-link {
	font-size: 15px;
	line-height: 107%;
	letter-spacing: 0.04em;
	color: #fff;
}
.header__nav-list-link:hover {
	color: #fff;
}
.header__btns-wrapper {
	display: flex;
    align-items: center;
    justify-content: end;
    gap: 13px;
}
@media(min-width: 1024px){
	.dresden-design :is(
    	.header__phone-btn-mobile,
    	.header-burger
    ) {
		display: none;
    }
}
@media(max-width: 1023px){
	.dresden-design .header__wrapper {
    	display: flex;
        justify-content: space-between;
    }
    .dresden-design .header__phone-btn-mobile {
    	display: inline-flex;
        margin-bottom: 32px;
        background-color: #4285f4;
    }
    .header__logo-img {
		width: 36px;
	    height: 46px;
		min-width: 36px;
	    min-height: 46px;
	}
    .header__logo-text-row {
    	font-size: 18px;
    }
    .dresden-design .header__phone-btn {
    	display: none;
    }

	.header-burger {
    	display: inline-flex;
		position: relative;
		width: 35px;
		height: 14px;
		align-items: center;
		justify-content: end;
		transition: all .2s ease-in-out;
	}
    .header-burger:before,
	.header-burger:after {
		content: '';
		background-color: #fff;
		position: absolute;
		height: 2px;
		transition: all .2s ease-in-out;
	}
	.header-burger:before {
		width: 25px;
		top: 0;
		transition: all .2s ease-in-out;
	}
	.header-burger:after {
		width: 25px;
		bottom: 0;
		transition: all .2s ease-in-out;
	}
	.header-burger.pressed:before,
	.header-burger.pressed:after {
		width: 30px;
	}
	.header-burger.pressed:before {
		transform: rotate(45deg);
		top: 6px;
	}
	.header-burger.pressed:after {
		transform: rotate(-45deg);
		bottom: 6px;
	}
	.header-burger.pressed .header-burger__line {
		opacity: 0;
	}
    .header-burger__line {
		background-color: #fff;
		width: 30px;
		height: 2px;
		transition: all .2s ease-in-out;
	}
    
    .header__nav {
    	position: absolute;
		top: 100%;
		left: 0;
        right: 0;
		background-color: #fff;
        max-height: 0;
		padding: 0;
		flex-direction: column;
		align-items: center;
		justify-content: start;
		width: 100%;
		text-align: center;
		z-index: 10000;
		overflow-y: scroll;
        transition: all .3s ease-in-out;
    }
    .header__nav-list {
    	flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 15px 0;
        padding: 32px 0;
    }
    .dresden-design .header__nav-list-link {
		text-align: center;
		color: #363636!important;
    }
}
@media(max-width: 767px) {
	header .header__wrapper {
    	width: 1600px;
	    background: #1D2736;
	    flex-direction: row;
        margin-left: auto;
        margin-right: auto;
        padding: 8px 0;
	}
}

.dresden-design .footer {
	background-color: #1d2736;
    margin-top: var(--top--section-margin);
}
.dresden-design .footer {
    clear: both;
}
.footer__wrapper {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 24px;
    padding: 46px 0 0;
}
.footer__column {
	display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer__logo-wrapper {
	display: flex;
    gap: 10px;
}
.footer__logo-text-wrapper {
	display: flex;
    flex-direction: column;
}
.footer__logo-text-row {
	white-space: nowrap;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
}
.footer__logo-accent-text {
	color: #FF6600;
}
.footer__logo-img {
	width: 38px;
    height: 48px;
    min-width: 38px;
    min-height: 48px;
    object-fit: contain;
}
.footer__text {
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.8);
}
.footer__social {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.footer__social-item {
	border-radius: 50%;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3c4455;
}
.footer__social-icon {
	width: 100%;
    height: 100%;
	object-fit: contain;
}
.footer__links-wrapper {
	display: inline-flex;
    flex-direction: column;
    gap: 16px;
}
.dresden-design .footer__link {
    display: inline-flex;
	align-items: center;
    gap: 8px;
	font-weight: 300;
	font-size: 14px;
    line-height: 1;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.8)!important;
}
.footer__link--bold {
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	color: #fff;
}
.footer__link svg {
	width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    object-fit: contain;
}
.footer__column-title {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}
button.footer__column-title {
	display: inline-flex;
    gap: 16px;
    align-items: center;
    border: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    text-align: left;
    line-height: 1.6;
}
.dresden-design .footer__copyright {
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
    margin-top: 49px;
    padding: 0 0 38px;
}
@media(min-width: 992px){
	.footer__social--mobile {
    	display: none;
    }
    button.footer__column-title {
    	pointer-events: none;
    }
    button.footer__column-title svg {
		display: none;
	}
}
@media(max-width: 991px){
	.footer__wrapper {
    	grid-template-columns: 100%;
    }
    .footer__social--desktop,
    .footer__links-wrapper--desktop {
    	display: none;
    }
    .footer__social--mobile {
    	border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 16px;
    }
    .footer__copyright {
    	margin-top: 32px;
    }
    .footer__column {
    	gap: 0;
    }
    .footer__column-title:not(button.footer__column-title) {
    	margin-bottom: 16px;
    }
    button.footer__column-title + .footer__links-wrapper {
		max-height: 0;
        overflow: hidden;
        transition: all .3s ease-in-out;
         -ms-overflow-style: none;
	    scrollbar-width: none;
        scrollbar-gutter: stable;
	}
    button.footer__column-title + .footer__links-wrapper.active {
    	max-height: 300px;
    }
	button.footer__column-title + .footer__links-wrapper::-webkit-scrollbar {
	    display: none;
	    background: transparent;
	}
    button.footer__column-title + .footer__links-wrapper > *:first-child {
    	margin-top: 16px;
    }
}

.hero {
	position: relative;
    isolation: isolate;
    color: #fff;
    padding: 85px 0;
}
.hero__bg {
	position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.hero__content {
	display: flex;
    flex-direction: column;
    gap: 32px;
	width: 640px;
    max-width: 100%;
}
.hero__trustbanner {
	width: 128px;
    min-width: 128px;
    object-fit: contain;
    backdrop-filter: blur(72.30000305175781px);
	background: rgba(255, 255, 255, 0.01);
}
.hero__info-wrapper {
	display: flex;
    flex-direction: column;
    gap: 32px;
}
.hero__heading {
	margin: 0;
    font-weight: 600;
	font-size: 36px;
	line-height: 111%;
	letter-spacing: 0.02em;
	color: #fff;
}
.hero__list {
	margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero__list li {
	margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 20px;
	line-height: 100%;
	letter-spacing: 0.03em;
	color: #fff;
}
.hero__list li:before {
	content: '';
    display: inline-block;
    margin-right: 8px;
    width: 26px;
    height: 12px;
    min-width: 26px;
    min-height: 12px;
    background-image: url(../images/icons/key.svg);
}
@media(max-width: 767px) {
	.hero {
    	padding: 64px 0 30px;
        text-align: center;
    }
    .hero__content {
    	gap: 16px;
        align-items: center;
    }
    .hero__info-wrapper {
    	gap: 16px;
    }
    .hero__list li {
    	font-size: 16px;
		line-height: 125%;
		letter-spacing: 0.04em;
    }
    .hero__list li:before {
    	content: none;
    }
    .dresden-design .hero__btn {
    	margin-top: 48px;
        width: 100%;
        padding: 16px;
    }
}

.geo-callback__form {
	background-color: #fff;
    height: 50px;
    padding: 7px 8px;
    border-radius: 4px;
}
.dresden-design .geo-callback__input-container {
	padding: 0;
}
.dresden-design .geo-callback__input {
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 8px 16px;
    height: 35px;
    width: calc(100% - 8px);
}
.geo-callback__send,
.geo-callback__send.btn {
    height: 100%;
  	padding: 8px 16px;
  	line-height: 143%;
}
.callback .callback__content {
	padding: 43px 0 44px;
}
.callback .callback__subtitle {
	margin-bottom: 8px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.callback .callback__title {
	font-weight: 700;
	font-size: 48px;
}
.callback .callback__list {
	margin: 16px 0 0;
    padding: 0;
}
.callback .callback__list li:before {
	background-image: url(../images/icons/accept.svg);
    width: 16px;
    height: 16px;
    min-width: 16px;
	min-height: 16px;
}
.callback .callback__image {
	padding-top: 0;
}
.callback .callback__form {
	margin-top: 32px;
}
@media(max-width: 767px) {
	.callback .callback__content {
    	padding: 80px 0;
    }
	.callback .callback__subtitle {
		margin-bottom: 16px;
		text-align: center;
    }
	.callback .callback__title {
		font-size: 32px;
		letter-spacing: 0.02em;
		text-align: center;
    }
    .callback .geo-callback__form {
    	flex-direction: column;
        height: unset;
        gap: 8px;
    }
    .callback .callback__image {
    	display: none;
    }
    .callback .geo-callback__input-container,
    .callback .geo-callback__send {
    	width: 100%;
    }
    .dresden-design :is(
    	.callback .geo-callback__input,
    	.callback .geo-callback__send
    ) {
        padding: 16px;
        height: unset;
        width: 100%;
    }
}

.about {
	overflow: hidden;
}
.about__wrapper {
	display: grid;
    grid-template-columns: 1fr 60%;
    gap: 16px;
    align-items: stretch;
}
.about__img-wrapper {
	width: 100%;
	height: 100%;
    position: relative;
}
.about__img {
	height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center right;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: 620px;
}
.about__info-wrapper {
	padding: 130px 0 122px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about__heading {
	font-weight: 600;
	font-size: 48px;
	line-height: 83%;
}
.about__text {
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.04em;
	color: #686d76;
}
.about__text > :first-child {
	margin-top: 0;
}
.about__text > :last-child {
	margin-bottom: 0;
}
.about__grid {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%),1fr));
    gap: 12px 24px;
}
.about__grid-item {
	padding: 16px;
    backdrop-filter: blur(10px);
	background: rgba(66, 133, 244, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
}
.about__grid-item:before {
	content: '';
    display: inline-block;
    margin-right: 13px;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    background-image: url(../images/icons/key2.svg);
}
@media(max-width: 1199px) {
	.about__img-wrapper {
    	display: none;
    }
    .about__wrapper {
    	grid-template-columns: 100%;
    }
}
@media(max-width: 767px) {
	.about__info-wrapper {
		padding: 48px 0;
	    gap: 16px;
	}
    .about__heading {
		font-size: 32px;
		line-height: 125%;
		text-align: center;
    }
}

.service-tabs .service-tabs__wrapper {
	display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}
.service-tabs .service-tabs__tabs,
.service-tabs .service-tabs__tabs-content {
	width: 100%;
}
.service-tabs .service-tabs__tab-content {
	border-radius: 8px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
    padding-bottom: 16px;
}
.service-tabs .service-tabs__tab-content p {
	margin-bottom: 16px;
}
.service-tabs .service-tabs__tab {
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    overflow: hidden;
}
.service-tabs .service-tabs__icon img {
	width: 32px;
  	height: 32px;
  	min-width: 32px;
  	min-height: 32px;
}
.service-tabs__content-img {
	margin: -42px -62px 0 -35px;
    width: calc(100% + 62px + 35px);
    max-width: calc(100% + 62px + 35px);
    object-fit: cover;
    margin-bottom: 16px;
}
.service-tabs .service-tabs__title {
	font-weight: 700;
}
.service-tabs .service-tabs__tab--active .service-tabs__title {
	color: #363636;
}
.service-tabs .service-tabs__tab:not(.service-tabs__tab--active):hover .service-tabs__icon {
	background: #4285f4;
}
.service-tabs .service-tabs__tab:not(.service-tabs__tab--active):hover .service-tabs__title {
	color: #363636;
}
.service-tabs .service-tabs__tab:not(.service-tabs__tab--active):hover {
	background: #fff;
}
.service-tabs .service-tabs__tab,
.service-tabs .service-tabs__tab * {
	transition: all .2s ease-in-out;
}
.service-tabs .service-tabs__link a {
	font-weight: 700;
	font-size: 14px;
	line-height: 171%;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	color: #f60;
	transition: all .2s ease-in-out;
}
.service-tabs .service-tabs__link a:hover {
	color: #4285f4;
}
@media (max-width: 991px) {
  	.service-tabs .service-tabs__wrapper {
	    grid-template-columns: 100%;
	}
}

.services-block {
	background-color: #f9f9f9;
    padding: var(--top--section-margin) 0;
}
.services-block__wrapper {
}
.services-block__heading {
	font-weight: 700;
	font-size: 36px;
	letter-spacing: 0.02em;
	text-align: center;
    line-height: 1.1;
}
.services-block__heading--large {
	font-size: 48px;
	letter-spacing: 0.01em;
}
.services-block__grid {
	margin-top: 39px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 24px;
}
.services-block__grid-item {
	padding: 24px 32px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
	background: #fff;
}
.services-block__grid-item-img-wrapper {
	display: flex;
	align-items: center;
    justify-content: center;
	width: 60px;
	height: 60px;
    min-width: 60px;
	min-height: 60px;
    border-radius: 4px;
    background-color: #edf3fe;
}
.services-block__grid-item-img {
	width: 32px;
	height: 32px;
    min-width: 32px;
	min-height: 32px;
    object-fit: contain;
}
.services-block__grid-item-name {
	margin-top: 16px;
    font-weight: 700;
	font-size: 18px;
	line-height: 111%;
	letter-spacing: 0.03em;
}
.services-block__grid-item-text {
	margin-top: 4px;
    font-size: 14px;
	line-height: 143%;
	letter-spacing: 0.04em;
	color: #686d76;
}
.services-block__semititle {
	text-align: center;
    margin-top: 32px;
    margin-bottom: 64px;
    font-weight: 700;
	font-size: 16px;
	line-height: 150%;
}
.services-block__centered-text {
	text-align: center;
    margin-top: 16px;
    color: #686d76;
}
.services-block__contacts-wrapper {
	margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 16px 83px;
}
.services-block__contacts-icons-wrapper {
	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	gap: 16px 83px;
}
.services-block__contacts-icons-item {
	display: inline-flex;
  	align-items: center;
  	justify-content: center;
    gap: 12px;
}
.services-block__contacts-btn-wrapper {
}
.services-block__btn {
	font-weight: 700;
	font-size: 14px;
	line-height: 143%;
	letter-spacing: 0.04em;
}
@media (max-width: 991px) {
	.services-block__heading {
    	font-size: 32px;
    }
  	.services-block__contacts-wrapper {
    	flex-direction: column;
        gap: 32px;
        margin-top: 24px;
    }
    .services-block__semititle {
    	margin: 24px 0 32px;
    }
    .services-block__contacts-icons-wrapper {
    	gap: 24px;
    }
}

.dresden-design .rating__item {
	gap: 12px;
}
.dresden-design .rating__item svg {
	width: 22px;
  	height: 22px;
  	min-width: 22px;
  	min-height: 22px;
}

@media(max-width: 767px) {
	.dresden-design .rating {
    	padding: 50px 0 110px;
    }
}

.dresden-design .contacts-text__wrapper {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
}
.dresden-design .contacts-text__contacts-wrapper {
	width: 100%;
    padding: 0;
}
.contacts-text__item {
	width: 50%;
}
.contacts-text__item--orange {
	max-width: 424px;
    width: 100%;
}
.contacts-text__item--full-width {
	width: 100%;
}
.contacts-text__text--center * {
	text-align: center;
}
.dresden-design .contacts-text__text,
.dresden-design .contacts-text__text.contacts-text__text--wide,
.contacts-text__item:has(.contacts-text__text--wide) {
	width: 100%;
}
.dresden-design .contacts-text__text :is(h2,h3,h4,h5,h6) {
	clear: none;
}
.dresden-design .contacts-text__text h2 {
	font-weight: 700;
	font-size: 36px;
    line-height: 1.2;
	letter-spacing: 0.02em;
    margin-bottom: 32px;
}
.dresden-design .contacts-text__text * {
    text-wrap: balance;
}
.dresden-design .contacts-text__contacts {
	padding: 32px 24px;
    border-radius: 8px;
}
.contacts-text__phone-button {
	margin-top: 16px;
}
.contacts-text__mail {
	margin-top: 16px;
}
@media(max-width: 991px) {
	.contacts-text__item {
    	width: 100%;
        max-width: 100%;
    }
    .contacts-text__item--content {
    	order: 1;
    }
    .contacts-text__item--full-width {
    	order: 2;
    }
    .contacts-text__item--orange {
    	order: 3;
    }
    .contacts-text__text h2 {
    	text-align: center;
    }
    .contacts-text__text--center *:not(h2) {
		text-align: left;
	}
}
@media(max-width: 767px) {
	.dresden-design .contacts-text__text h2 {
    	font-size: 32px;
        margin-bottom: 16px;
    }
}

.testimonials {
	background-color: #f9f9f9;
    padding: 80px 0;
}
.dresden-design .testim {
	padding: 0 8px;
}
.dresden-design .testim__item {
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
	background-color: #fff;
    border: none;
    border-radius: 8px;
}
.dresden-design .testim__info-wrapper {
	display: flex;
    justify-content: center;
    flex-direction: column;
}
.dresden-design .testim__rating-wrapper {
	margin-top: 4px;
}
.dresden-design .testim__text {
	margin-top: 17px;
}
.dresden-design .testim__header {
	grid-template-columns: 72px 1fr;
}
.dresden-design .testim__img-wrapper {
	width: 60px;
  	height: 60px;
}
.dresden-design .swiper-pagination-bullet {
	width: 16px;
  	height: 16px;
}
.dresden-design .testim__wrapper {
  height: 250px !important;
}
.dresden-design .testimonails-form-btn {
	border-radius: 4px;
    margin-bottom: 0;
}

@media(max-width: 767px) {
	.dresden-design .testim {
		padding: 0 5px;
	}
    .testimonials {
	    padding: 64px 0;
	}
}

.counter__item {
	flex-direction: column;
    gap: 16px;
}
.counter__item * {
	text-align: center;
}
.counter__count .text-accent {
	font-weight: 900;
	font-size: 64px;
	letter-spacing: 0.01em;
}
.dresden-design .counter__count {
	font-size: 20px;
	letter-spacing: 0.03em;
    line-height: 1;
}
.dresden-design .counter__title {
	font-size: 20px;
	letter-spacing: 0.03em;
    line-height: 1;
}
.dresden-design .counter__icon {
	width: 46px;
  	height: 46px;
}
@media(max-width: 767px) {
	.dresden-design .counter__wrapper {
    	margin: 0;
        gap: 32px;
    }
	.dresden-design .counter__item {
    	padding: 0;
    }
    .dresden-design .counter__icon {
    	display: none;
    }
}

.blog-previews h2 {
	line-height: 1.2;
}
.dresden-design .blog-previews__wrapper {
	margin: 50px 0 0;
}
.dresden-design .blog-list {
	margin: 0;
}
.dresden-design .blog-list__item {
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border-bottom: none;
}
.dresden-design .blog-list__item > :not(.blog-list__img-wrapper) {
	padding: 32px 21px 16px;
}
.dresden-design .blog-list__item-title {
	padding-top: 0;
    text-wrap: balance;
    font-weight: 700;
	font-size: 28px;
	line-height: 86%;
	letter-spacing: 0.02em;
}
.dresden-design .blog-list__excerpt {
	text-wrap: balance;
    margin: 16px 0 0;
    justify-content: start;
}
.dresden-design .blog-list__excerpt * {
	margin: 0;
}
.dresden-design .blog-list__btn {
	margin: 32px 0 0;
}
@media(max-width: 767px) {
	.blog-previews h2 {
    	font-size: 32px;
    }
    .dresden-design .blog-list__item > :not(.blog-list__img-wrapper) {
    	padding: 24px 24px 16px;
    }
    blog-list__btn {
    	padding: 16px;
        width: 100%;
    }
}

.dresden-design .accordion-item__header {
	padding: 24px;
}
.dresden-design .accordion-item__header::after, 
.dresden-design .accordion-item__header::before {
	content: none;
}
.dresden-design .accordion-item__title {
	display: flex;
  	align-items: center;
  	justify-content: space-between;
	padding: 0;
    font-weight: 700;
	font-size: 16px;
    text-transform: unset;
}
.dresden-design .accordion-item__title:after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 14px;
    min-width: 24px;
	min-height: 14px;
	margin-left: 8px;
	background-image: url('data:image/svg+xml;utf8,<svg width="24" height="14" viewBox="0 0 24 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.7714 13.6583C12.3454 14.1139 11.6546 14.1139 11.2286 13.6583L0.31952 1.99163C-0.106506 1.53601 -0.106507 0.797321 0.31952 0.34171C0.745548 -0.113902 1.43627 -0.113902 1.8623 0.34171L12 11.1834L22.1377 0.341709C22.5637 -0.113903 23.2545 -0.113903 23.6805 0.341709C24.1065 0.79732 24.1065 1.53601 23.6805 1.99162L12.7714 13.6583Z" fill="%23FF6600"/></svg>');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	vertical-align: middle;
    transition: all .2s ease-in-out;
}
.dresden-design .accordion__title {
	padding: 0;
    border: none;
    font-weight: 700;
	font-size: 36px;
	line-height: 140%;
	letter-spacing: 0.02em;
}
.accordion__items {
	margin-top: 38px;
}
.dresden-design .accordion-item__text {
	padding-right: 24px;
	padding-left: 24px;
    font-size: 14px;
}
.dresden-design .accordion-item--opened {
	margin: 0;
}
.dresden-design .accordion-item__text > *:last-child {
	margin-bottom: 0;
}
.dresden-design .accordion-item--opened .accordion-item__title:after {
	transform: rotate(.25turn);
}
@media(max-width: 767px) {
	.accordion__items {
    	margin-top: 32px;
	}
	.dresden-design .accordion__title {
		font-size: 32px;
		line-height: 158%;
	}
    .dresden-design .accordion-item__text {
		padding-right: 16px;
		padding-left: 16px;
	}
    .dresden-design .accordion-item__header {
		padding: 24px 16px;
	}
    .dresden-design .accordion-item__title:after {
		width: 16px;
		height: 9px;
        min-width: 16px;
		min-height: 9px;
    }
}

.dresden-design .einsatzgebiete__link:hover {
  	color: #fff;
}