section.main-data {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 20px;
}
 section.main-data .rates {
	 height: 100%;
	 padding: 10px;
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 background: var(--light-gradient);
}
 section.main-data .rates .switcher {
	 display: flex;
	 margin-bottom: 20px;
	 height: 230px;
}
 section.main-data .rates .switcher .item {
	 margin-right: 10px;
	 border-radius: 15px;
	 background: var(--light-gradient);
	 padding-top: 10px;
	 border: 1px solid var(--light);
	 width: calc(100% / 6);
	 transition: 0.2s linear;
	 position: relative;
	 overflow: hidden;
	 cursor: pointer;
	 display: flex;
	 flex-direction: column;
}
 section.main-data .rates .switcher .item img {
	 position: relative;
	 z-index: 9;
	 width: 100%;
	 height: 55px;
	 object-fit: contain;
}
 section.main-data .rates .switcher .item > div {
	 position: relative;
	 z-index: 9;
	 padding: 10px;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 position: relative;
}
 section.main-data .rates .switcher .item > div .name {
	 font-weight: 700;
}
 section.main-data .rates .switcher .item > div h3 {
	 font-size: 36px;
	 color: var(--main);
	 font-weight: 700;
}
 section.main-data .rates .switcher .item > div .price-note {
	 font-weight: 300;
	 font-size: 12px;
}
 section.main-data .rates .switcher .item > div .capacity {
	 font-size: 12px;
	 font-weight: 700;
	 color: var(--main);
	 margin-bottom: 30px;
}
 section.main-data .rates .switcher .item > div .btn {
	 font-weight: 400;
	 font-size: 10px;
	 width: 100%;
}
 section.main-data .rates .switcher .item > div .arrows {
	 visibility: hidden;
	 opacity: 0;
	 transition: 0.2s linear;
	 display: flex;
	 position: absolute;
	 bottom: 10px;
	 left: 10px;
	 width: calc(100% - 20px);
	 justify-content: center;
	 align-items: center;
}
 section.main-data .rates .switcher .item > div .arrows span {
	 display: flex;
	 margin: 0 10px;
}
 section.main-data .rates .switcher .item > div .arrows span::before, section.main-data .rates .switcher .item > div .arrows::before, section.main-data .rates .switcher .item > div .arrows::after {
	 content: '\e908';
	 font-family: icon;
	 color: var(--white);
	 font-size: 12px;
}
 section.main-data .rates .switcher .item.active {
	 transform: translateY(10px);
}
 section.main-data .rates .switcher .item.active > div .btn {
	 opacity: 0;
	 visibility: hidden;
}
 section.main-data .rates .switcher .item.active > div .arrows {
	 visibility: visible;
	 opacity: 1;
}
 section.main-data .rates .switcher .item.active::after {
	 opacity: 1;
	 visibility: visible;
}
 section.main-data .rates .switcher .item::after {
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: linear-gradient(to bottom, #fff, #fe471c);
	 z-index: 1;
	 opacity: 0;
	 visibility: hidden;
	 transition: 0.2s linear;
}
 section.main-data .rates .switcher .item:hover::after {
	 opacity: 1;
	 visibility: visible;
}
 section.main-data .rates .switcher .item:last-child {
	 margin-right: 0;
}
 section.main-data .rates .rates-items {
	 position: relative;
	 overflow: hidden;
}
 section.main-data .rates .rates-items > .item {
	 padding: 15px;
	 border-radius: 15px;
	 border: 1px solid var(--accent);
	 background: linear-gradient(to bottom, #fe471c -50%, #f7bcb3 0%, #f4f5fc 51%);
	 display: grid;
	 grid-template-columns: 1fr;
	 gap: 20px;
	 opacity: 0;
	 visibility: hidden;
	 position: absolute;
	 width: 100%;
	 transition: 0.2s linear;
}
 section.main-data .rates .rates-items > .item > .top {
	 display: flex;
}
 section.main-data .rates .rates-items > .item > .top .left {
	 display: flex;
	 flex-direction: column;
	 margin-right: 20px;
	 gap: 20px;
}
 section.main-data .rates .rates-items > .item > .top .left .price {
	 min-width: 160px;
	 width: 160px;
	 height: 160px;
	 border: 1px solid var(--light);
	 border-radius: 50%;
	 display: flex;
	 flex-direction: column;
	 justify-content: center;
	 align-items: center;
	 background: var(--white);
}
 section.main-data .rates .rates-items > .item > .top .left .price .name {
	 font-weight: 700;
	 font-size: 24px;
	 line-height: 1;
}
 section.main-data .rates .rates-items > .item > .top .left .price h3 {
	 font-size: 64px;
	 font-weight: 700;
	 color: var(--main);
	 line-height: 1;
	display: flex;
}
 section.main-data .rates .rates-items > .item > .top .left .price h3 span {
	 font-size: 22px;
	 line-height: 28px;
	 margin-top: auto;
	 margin-bottom: 5px;
	 margin-right: 5px;
}
 section.main-data .rates .rates-items > .item > .top .left .price .price-note {
	 font-weight: 300;
	 font-size: 12px;
	 line-height: 1;
}
 section.main-data .rates .rates-items > .item > .top .left .btn {
	 height: 40px;
	 width: 160px;
}
 section.main-data .rates .rates-items > .item > .top img {
	 width: calc(100% - 180px);
	 object-fit: contain;
}
 section.main-data .rates .rates-items > .item > .params {
	 display: flex;
}
 section.main-data .rates .rates-items > .item > .params .item {
	 width: calc(100% / 6);
	 margin-right: 10px;
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 padding: 10px;
	 text-align: center;
	 background: var(--white);
}
 section.main-data .rates .rates-items > .item > .params .item span {
	 display: block;
	 line-height: 1;
	 color: var(--main);
	 font-weight: 700;
	 font-size: 14px;
}
 section.main-data .rates .rates-items > .item > .params .item p {
	 font-size: 14px;
}
 section.main-data .rates .rates-items > .item > .params .item:last-child {
	 margin-right: 0;
}
 section.main-data .rates .rates-items > .item > .data {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 30px 20px;
}
 section.main-data .rates .rates-items > .item > .data h3 {
	 font-size: 20px;
	 font-weight: 700;
	 margin-bottom: 20px;
}
 section.main-data .rates .rates-items > .item > .data ul {
	 list-style: inside;
}
 section.main-data .rates .rates-items > .item > .data p, section.main-data .rates .rates-items > .item > .data li {
	 font-size: 14px;
	 line-height: 16px;
}
 section.main-data .rates .rates-items > .item > .data .characteristics {
	 grid-column: span 2;
}
 section.main-data .rates .rates-items > .item > .data .popular {
	 padding: 10px 20px;
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 background: var(--white);
}
 section.main-data .rates .rates-items > .item > .data .popular .items {
	 display: flex;
	 gap: 10px;
	 justify-content: space-between;
}
 section.main-data .rates .rates-items > .item > .data .popular .items .item span {
	 color: var(--main);
	 font-size: 36px;
	 font-weight: 700;
}
 section.main-data .rates .rates-items > .item > .data .popular .items .item span.from {
	color: var(--dark);
	font-size: 18px;
}
 section.main-data .rates .rates-items > .item > .data .popular .items .item p {
	 font-size: 12px;
	 font-weight: 300;
}
 section.main-data .rates .rates-items > .item.active {
	 opacity: 1;
	 visibility: visible;
	 position: static;
}
 section.main-data .services-promo .top {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 20px;
	 height: 240px;
}
 section.main-data .services-promo .top .movers {
	 display: flex;
	 grid-row: span 2;
	 border-radius: 20px;
	 border: 1px solid var(--light);
	 background: var(--light-gradient);
	 height: 240px;
}
 section.main-data .services-promo .top .movers img {
	 height: 100%;
	 max-width: 95px;
	 object-fit: contain;
}
 section.main-data .services-promo .top .movers > div {
	 padding: 20px;
	 display: flex;
	 flex-direction: column;
	 gap: 10px;
	 justify-content: space-between;
}
 section.main-data .services-promo .top .movers > div > h3 {
	 font-size: 20px;
	 font-weight: 700;
	 max-width: 100px;
}
 section.main-data .services-promo .top .movers > div .price {
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 justify-content: center;
	 min-width: 106px;
	 width: 106px;
	 height: 106px;
	 background: var(--white);
	 border: 1px solid var(--light);
	 border-radius: 50%;
	 align-self: end;
}
 section.main-data .services-promo .top .movers > div .price .name {
	 font-weight: 700;
	 line-height: 1;
}
 section.main-data .services-promo .top .movers > div .price h3 {
	 color: var(--main);
	 font-weight: 700;
	 font-size: 36px;
	 line-height: 1;
}
 section.main-data .services-promo .top .movers > div .price .price-note {
	 font-weight: 300;
	 font-size: 12px;
	 line-height: 1;
}
 section.main-data .services-promo .top .movers > div > p {
	 font-size: 14;
}
 section.main-data .services-promo .top .movers > div > p::before {
	 content: '•';
	 margin-right: 10px;
}
 section.main-data .services-promo .top .trucks {
	 display: flex;
	 flex-direction: column;
	 border-radius: 20px;
	 border: 1px solid var(--light);
	 background: var(--light-gradient);
	 position: relative;
	 padding: 10px;
}
 section.main-data .services-promo .top .trucks img {
	 position: absolute;
	 left: 0;
	 width: 88%;
	 z-index: 1;
	 height: 100%;
	 object-fit: contain;
	 object-position: 0 100%;
}
 section.main-data .services-promo .top .trucks h3 {
	 font-size: 14px;
	 font-weight: 700;
	 position: relative;
	 z-index: 9;
	 line-height: 1.2;
	 margin-left: auto;
	 margin-right: 0;
}
 section.main-data .services-promo .top .trucks p {
	 position: relative;
	 z-index: 9;
	 line-height: 1.2;
	 font-size: 12px;
	 font-weight: 300;
	 margin-left: auto;
	 margin-right: 0;
}
 section.main-data .services-promo .bottom {
	 margin-top: 20px;
	 display: flex;
	 height: calc(100% - 260px);
}
 section.main-data .services-promo .bottom .rate-descriptions {
	 width: 50%;
	 height: 100%;
	 background: var(--light-gradient);
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 padding: 15px;
	 position: relative;
	 margin-right: 20px;
}
 section.main-data .services-promo .bottom .rate-descriptions .item {
	/* display: none;
	 */
	 position: absolute;
	 top: 15px;
	 left: 15px;
	 width: calc(100% - 30px);
	 height: calc(100% - 30px);
	 visibility: hidden;
	 opacity: 0;
	 transition: 0.2s linear;
}
 section.main-data .services-promo .bottom .rate-descriptions .item * {
	 font-size: 14px;
	 line-height: 20px;
}
 section.main-data .services-promo .bottom .rate-descriptions .item h3 {
	 color: var(--main);
	 font-weight: 700;
	 margin-bottom: 2px;
}
 section.main-data .services-promo .bottom .rate-descriptions .item p, section.main-data .services-promo .bottom .rate-descriptions .item ul {
	 margin-bottom: 20px;
}
 section.main-data .services-promo .bottom .rate-descriptions .item ul {
	 list-style: inside;
}
 section.main-data .services-promo .bottom .rate-descriptions .item.active {
	/* display: block;
	 */
	 position: static;
	 visibility: visible;
	 opacity: 1;
	 width: 100%;
}
 section.main-data .services-promo .bottom .services-def {
	 width: 50%;
	 display: flex;
	 flex-direction: column;
}
 section.main-data .services-promo .bottom .services-def .item {
	 background: var(--light-gradient);
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 display: flex;
	 gap: 20px;
	 margin-bottom: 20px;
	 height: fit-content;
}
 section.main-data .services-promo .bottom .services-def .item img {
	 height: 100%;
	 max-width: 110px;
	 width: 100%;
	 aspect-ratio: 1;
	 border-radius: 20px;
	 object-fit: cover;
}
 section.main-data .services-promo .bottom .services-def .item > div {
	 padding: 10px;
	 display: flex;
	 flex-direction: column;
	 justify-content: center;
	 gap: 5px;
}
 section.main-data .services-promo .bottom .services-def .item > div h3 {
	 font-weight: 700;
	 font-size: 20px;
}
 section.main-data .services-promo .bottom .services-def .item > div p {
	 font-size: 14px;
	 color: var(--main);
}
 section.main-data .services-promo .bottom .services-def .item:last-child {
	 margin-bottom: 0;
}
 section.cta-sec {
	 margin-top: 20px;
	 background: #f4f5fc;
	 border-radius: 20px;
	 border: 1px solid var(--light);
	 display: flex;
	 padding: 20px 20px 10px;
}
 section.cta-sec .text {
	 width: 50%;
	 display: flex;
	 flex-direction: column;
	 margin-right: 10px;
}
 section.cta-sec .text h2 {
	 font-size: 36px;
	 font-weight: 700;
	 margin-bottom: 40px;
	 line-height: 50px;
}
 section.cta-sec .text p {
	 line-height: 20px;
	 text-align: justify;
}
 section.cta-sec .text blockquote {
	 align-self: end;
	 max-width: 310px;
	 width: 100%;
	 margin-top: 20px;
}
 section.cta-sec .text blockquote p {
	 color: var(--main);
	 text-align: right;
}
 section.cta-sec .text .btn {
	 margin: 40px 0;
	 height: 40px;
	 width: 160px;
}
 section.cta-sec img {
	 width: 50%;
	 object-fit: contain;
}
 @media screen and (max-width: 1279px) {
	 section.main-data {
		 display: flex;
		 flex-direction: column;
	}
	 section.main-data .rates {
		 width: 100%;
	}
	 section.main-data .services-promo {
		 width: 100%;
		 display: flex;
		 flex-direction: column-reverse;
		 gap: 20px;
	}
	 section.main-data .services-promo .bottom {
		 gap: 20px;
		 margin-top: 0;
	}
	 section.main-data .services-promo .bottom .rate-descriptions {
		 margin-right: 0;
	}
	 section.main-data .services-promo .top .trucks img {
		bottom: 0;
	 }
	 section.cta-sec .text {
		 width: 100%;
	}
	 section.cta-sec .text .btn {
		 margin: 20px 0;
	}
	 section.cta-sec img {
		 display: none;
	}
}
 @media screen and (max-width: 767px) {
	 section.main-data .services-promo .top {
		 height: 100%;
		 display: flex;
		 flex-direction: column;
		 gap: 10px;
	}
	 section.main-data .services-promo .top .trucks {
		 height: 120px;
	}
	 section.main-data .services-promo .top .trucks img {
		 width: 80%;
		 height: 120px;
		 object-position: bottom;
	}
	 section.main-data .services-promo .bottom {
		 flex-direction: column;
	}
	 section.main-data .services-promo .bottom .rate-descriptions {
		 width: 100%;
	}
	 section.main-data .services-promo .bottom .services-def {
		 width: 100%;
	}
	 section.main-data .services-promo .bottom .services-def .item {
		 gap: 10px;
	}
	section.main-data .services-promo .bottom .services-def .item img {
		height: auto;
	}
	 section.main-data .rates {
		 padding: 0;
		 background: none;
		 border: none;
		 border-radius: 0;
	}
	 section.main-data .rates .switcher {
		 gap: 3px;
		 height: auto;
	}
	 section.main-data .rates .switcher .item {
		 border: none;
		 height: auto;
		 margin-right: 0;
	}
	 section.main-data .rates .switcher .item > div {
		 padding: 3px;
	}
	 section.main-data .rates .switcher .item > div .name {
		 font-weight: 700;
		 font-size: 14px;
	}
	 section.main-data .rates .switcher .item > div h3 {
		 font-size: 28px;
		 line-height: 1;
	}
	 section.main-data .rates .switcher .item > div .price-note {
		 text-align: center;
	}
	 section.main-data .rates .switcher .item > div .capacity {
		 text-align: center;
	}
	 section.main-data .rates .switcher .item > div .arrows {
		 gap: 5px;
	}
	 section.main-data .rates .switcher .item > div .arrows span {
		 margin: 0;
	}
	 section.main-data .rates .rates-items .item {
		 gap: 10px;
	}
	 section.main-data .rates .rates-items .item .top {
		 position: relative;
		 justify-content: end;
	}
	 section.main-data .rates .rates-items .item .top > img {
		 width: 80%;
		 height: 200px;
	}
	 section.main-data .rates .rates-items .item .top .left {
		 position: absolute;
		 left: 0;
		 width: 100%;
		 height: 220px;
		 margin-right: 0;
	}
	 section.main-data .rates .rates-items .item .top .left .price {
		 width: 100px;
		 height: 100px;
		 min-width: 100px;
		 position: absolute;
		 left: -10px;
		 top: -10px;
		 gap: 3px;
	}
	 section.main-data .rates .rates-items .item .top .left .price .name {
		 font-size: 16px;
	}
	 section.main-data .rates .rates-items .item .top .left .price h3 {
		 font-size: 28px;
	}
	 section.main-data .rates .rates-items .item .top .left .price h3 span {
		 line-height: 1;
		 font-size: 16px;
		 margin-bottom: 4px;
		 margin-right: 3px;
	}
	 section.main-data .rates .rates-items .item .top .left .btn {
		 position: absolute;
		 bottom: 0;
		 height: 34px;
		 width: calc(50% - 5px);
	}
	 section.main-data .rates .rates-items .item .top .left .btn.main {
		 left: calc(50% + 5px);
	}
	 section.main-data .rates .rates-items .item .params {
		 margin-top: 20px;
		 display: grid;
		 grid-template-columns: repeat(3, 1fr);
		 gap: 5px;
	}
	 section.main-data .rates .rates-items .item .params .item {
		 width: 100%;
	}
	 section.main-data .rates .rates-items .item .data {
		 grid-template-columns: 1fr;
		 gap: 20px;
	}
	 section.main-data .rates .rates-items .item .data h3 {
		 margin-bottom: 10px;
	}
	 section.main-data .rates .rates-items .item .data .popular {
		 grid-row: 1;
	}
	 section.main-data .rates .rates-items .item .data .characteristics {
		 grid-column: 1;
	}
	 section.cta-sec {
		 padding: 15px;
	}
	 section.cta-sec .text h2 {
		 font-size: 20px;
		 line-height: normal;
		 margin-bottom: 20px;
	}
	 section.cta-sec .text p {
		 font-size: 14px;
	}
}