@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
body{
	font-family: "Montserrat", sans-serif;
}
a{
	text-decoration: none;
	overflow-wrap: break-word;
}
img{
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	user-drag: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	/* курсор не «видит» img -> Яндекс не показывает панель скачивания */
	pointer-events: none;
}
@property --hero-angle{
	syntax: '<angle>';
	inherits: false;
	initial-value: -45deg;
}
.header-vs-hero-wrapper{
	--hero-angle: 0deg;
	background: linear-gradient(var(--hero-angle), #151517 20%, #003076 100%);
	animation: hero-gradient 4s ease-in-out infinite alternate;
}
@keyframes hero-gradient{
	to{ --hero-angle: 45deg; }
}

.wrapper{
	background-size: 1920px;
	background-repeat: no-repeat;
}
.hero-block, .tabs-block, .news-block, .about-us-block, .footer-wrapper{
	max-width: 1580px;
	margin: 0 auto;
	padding: 0px 30px;
}
.how-it-works{
	max-width: 1580px;
	margin: 0 auto;
	padding: 10px 30px;
}
.hero-block{
	min-height: 745px;
}
.hero-block img{
	width: 100%;
}
.hero-slider{
	display: grid;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
}
.hero-slider img{
	grid-area: 1 / 1;
	width: 100%;
	opacity: 0;
}
/* Кадр, который сейчас на экране */
.hero-slider img.is-current{
	opacity: 1;
	z-index: 1;
}
/* Входящий кадр открывается слева направо (виден слева от линии) */
.hero-slider img.is-entering{
	opacity: 1;
	z-index: 2;
	animation: hero-scan-in 0.9s ease both;
}
/* Уходящий кадр срезается той же линией (виден справа от линии) */
.hero-slider img.is-leaving{
	opacity: 1;
	z-index: 1;
	animation: hero-scan-out 0.9s ease both;
}
@keyframes hero-scan-in{
	from{ clip-path: inset(0 100% 0 0); }
	to{ clip-path: inset(0 0 0 0); }
}
@keyframes hero-scan-out{
	from{ clip-path: inset(0 0 0 0); }
	to{ clip-path: inset(0 0 0 100%); }
}
/* Светящаяся сканирующая линия на ведущем крае */
.hero-slider::after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
	z-index: 3;
	opacity: 0;
	background: rgba(120, 175, 255, 0.95);
	box-shadow: 0 0 18px 4px rgba(23, 112, 236, 0.75);
	pointer-events: none;
}
.hero-slider.is-scanning::after{
	animation: hero-scan-line 0.9s ease forwards;
}
@keyframes hero-scan-line{
	0%{ left: 0; opacity: 0; }
	12%{ opacity: 1; }
	88%{ opacity: 1; }
	100%{ left: 100%; opacity: 0; }
}
.shop-btn{
	transition: 0.3s;
	text-align: center;
	display: block;
	width: 100%;
	max-width: 435px;
	color: white;
	background: rgb(23, 112, 236);
	padding: 15px 0;
	font-family: Unbounded;
	font-size: 20px;
	font-weight: 500;
	line-height: 25px;
}
.shop-btn:hover{
	box-shadow: 15px -15px 0 #2c72e982;
	padding-left: 15px;
}
.hero-block .shop-btn{
	margin-top: 88px;
}
.header-block{
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.main-header{
	font-family: "Unbounded", sans-serif;
	font-size: 72px;
	font-weight: 700;
	line-height: 89px;
	color: #FFF;
}
.main-subheader{
	color: rgb(255, 255, 255);
	font-family: Montserrat;
	font-size: 40px;
	font-weight: 400;
	line-height: 49px;
	text-align: left;
}
header .container-fluid{
	max-width: 1520px;
}
.navbar-toggler{
	border: 2px solid white;
}
.header-item{
	color: #FFFFFF;
	transition: 0.4s;
	margin: 0 15px;
	font-weight: 700;
	font-size: 16px;
	line-height: 25px;
}
.header-item:hover{
	color: #005cff00;
	text-shadow: 5px -3px white;
}
.site-logo{
	width: 20%;
	height: 141px;
	text-align: center;
}
.left-items, .right-items{
	width: 40%;
	display: flex;
	justify-content: space-between;
}
header .navbar{
	padding: 0;
}
.navbar-toggler{
	display: none;
}
.tabs-block{
	margin-top: 64px;
}
h2{
	color: #181818;
	font-family: Unbounded;
	font-size: 52px;
	font-weight: 700;
	line-height: 64px;
}
.tabs-header{
	max-width: 1200px;
}

.tabs-block .nav-item{
	margin-right: 25px;
	transition: 0.2s;
}
.tabs-block .nav-item:hover {
    transform: scale(0.95);
    opacity: 0.5;
}
.tabs-block .nav-item button{
	border-radius: 35px;
	color: black;
	border: 1px solid rgb(24, 24, 24);
	padding: 10px 50px;
	color: rgb(24, 24, 24);
	font-family: Unbounded;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	text-align: left;
	text-transform: uppercase;
}
.tabs-block .nav-item button.active{
	border: 1px solid #0d6efd;
	box-shadow: 0px 0px 40px 0px rgba(23, 112, 236, 0.4);
	transition: 0.2s;
}
.tabs-block .nav{
	margin-top: 50px;
}
.tab-content{
	margin-top: 25px;
	border-radius: 40px;
	padding:20px 40px;
	box-shadow: 5px 5px 40px 0px rgba(94, 117, 239, 0.15);
	background: rgb(255, 255, 255);
}
.modal-img img{
	margin: 19px 0;
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 0 20px #b1b1b1;При
}
.youtube-main-block {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
/* Видео в модалке RvR Smart — крупнее и адаптивно (16:9) */
#staticBackdrop15 .youtube-video-block{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.youtube .play {
    background: url(assets/img/youtube-play-btn.png) no-repeat;
    background-position: 0 -50px;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    position: absolute;
    height: 50px;
    width: 69px;
    transition: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.youtube-main-block > iframe{
	width: 500px;
	height: 281px;
}
.youtube {
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: all 200ms ease-out;
    cursor: pointer;
}
.youtube:hover .play {
    background-position: 0 0;
}
.youtube-video-block, .video-block iframe{
    background-size: cover;
    margin: 0 auto;
    width: 500px;
    height: 281px;
    border-radius: 20px;
    box-shadow: 0 0 20px #b1b1b1;
}
.tab-text{
	color: rgb(24, 24, 24);
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 400;
	line-height: 130%;
	margin-top: 60px;
}
.carousel-control svg{
	fill: black;
	width: 50px;
    height: 50px;
}
.carousel-control{
	width: 13%;
}
.tab-cards{
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;

}
.slider-area{
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 400px;
}
.tab-card{
	background-image: url('assets/img/hand-pointer.png');
	background-repeat: no-repeat;
	background-size: 17px 20px;
	background-position: right 7px top 7px;
	cursor: pointer;
	transition: 0.2s;
	width: 17%;
	margin-top: 10px;
	height: 180px;
	display: flex;
	padding: 5px;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid rgb(172, 194, 225);
	border-radius: 24px;
	box-shadow: 4px 4px 20px 0px rgba(139, 150, 165, 0.2);
	transition: 0.2s;
}
.carousel-item{
	text-align: center;
}
.slider-img{
	width: 80%;
}
.tab-card:hover{
	box-shadow: 4px 4px 10px 0px rgba(139, 150, 165, 0.2);
	opacity: 0.4;
	transform: scale(0.95);
}
.accessories{
	margin-top: 15px;
	line-height: 30px;
	font-size: 16px;
}
.tab-card img{
	width: fit-content;
}
.accessories strong{
	font-size: 18px;
	font-weight: 600;
}
.img-item{
	height: 59px;
	display: flex;
	align-items: center;
}
.news-block h2{
	margin-bottom: 40px;
}
.btn-play-container{
	position: absolute;
	cursor: pointer;
	width: 100%;
	text-align: center;
	z-index: 5;
}
.play-btn{
	width: 110px !important;
	height: 110px;
	transition: 0.2s;
	display: none;
}
.btn-play-container:hover .play-btn{
	opacity: 0.7;
}
.card-text{
	font-family: Unbounded;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
	letter-spacing: 0.5px;
}
.news-block{
	margin-top: 140px;
}
.news-block .accordion-item{
	border: none;
	margin-top: 20px;
	border-radius: 24px;
	padding: 15px;
	background: rgb(239, 245, 255);
}
.news-block .accordion-button{
	border: none;
	outline: none;
	box-shadow: none;
	background: none;
	color: rgb(24, 24, 24);
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	text-align: left;
	text-transform: uppercase;
}
.about-us-block{
	margin-top: 150px;
}
.navbar-toggler{
	border: none;
	outline: none;
}
.navbar-toggler svg{
    fill: white;
    width: 30px;
    height: 30px;
}
.about-us-column{
	padding-top: 233px;
	padding-left: 180px;
}
.our-advantages{
	background-image: url('assets/img/back-about.png');
	max-width: 590px;
	max-height: 442px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 54px 54px 97px 54px;
	border-radius: 25px;
}
.advantages-column{
	display: flex;
	justify-content: end;
	background-image: url('assets/img/chewrolet.png');
	height: 800px;
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: bottom left;
}
.icon-block{
	display: flex;
}
.icon-block:last-child{
	margin-top: 47px;
}
.icon{
	margin-right: 40px;
}
.icon-header{
	margin-bottom: 17px;
	color: rgb(24, 24, 24);
	font-family: Unbounded;
	font-size: 20px;
	font-weight: 700;
	line-height: 25px;
	text-align: left;
}
.icon-text{
	color: rgb(24, 24, 24);
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: 0%;
	text-align: left;
}
.about-us-text{
	margin-top: 34px;
	color: rgb(24, 24, 24);
	font-family: Montserrat;
	font-size: 16px;
	font-weight: 500;
	line-height: 130%;
}
.about-us-column .shop-btn{
	margin-top: 60px;
}
.our-pluses{
	max-width: 1135px !important;
	margin: 0 auto;
	margin-top: 180px;
}
.plus-card-1, .plus-card-2, .plus-card-3{
	width: 100%;
	max-width: 200px;
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
}
.plus-card-1 img, .plus-card-2 img, .plus-card-3 img{
	filter: contrast(0.5);
}
.plus-header{
	margin-top: 20px;
	color: rgb(24, 24, 24);
	font-family: Unbounded;
	font-size: 20px;
	font-weight: 700;
	line-height: 110%;
	text-align: center;
	height: 44px;
}
.accessories li{
	text-align: left;
}
.accordion-body p{
	word-wrap: break-word;
}
.plus-text{
	margin-top: 20px;
	color: rgba(24, 24, 24, 0.7);
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 400;
	line-height: 150%;
	text-align: center;
}
.collapse-block{
	width: 169px;
	display: flex;
    justify-content: end;
}
.news-vs-block-about{
	background-image: url('assets/img/back-about-us.png');
	background-size: 100%;
	background-repeat: no-repeat;
}
.how-it-works-wrapper{
	margin-top: 150px;
	background-color: #eff5ff;
	background-position: center 90px;
	background-repeat: no-repeat;
}
.how-it-works-heading{
	display: flex;
	padding: 40px 80px 40px 80px;
	border-radius: 12px;
	box-shadow: 0px 0px 40px 0px rgba(94, 117, 239, 0.15);
	background: rgb(255, 255, 255);
	align-items: center;
	margin-top: -80px;
}
.how-it-works-heading .heading-text{
	padding-right: 30px;
}
.heading-text{
	width: 40%;
	color: rgb(24, 24, 24);
	font-family: Unbounded;
	font-size: 36px;
	font-weight: 600;
	line-height: 150%;
}
.img-accessories{
	border: 2px solid #ededed;
    border-radius: 25px;
    padding: 5px;
}
.heading-description{
	width: 40%;
	color: rgb(24, 24, 24);
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 400;
	line-height: 150%;
}
.video-block{
	margin-top: 110px;
	display: flex;
	justify-content: end;
	align-items: center;
	padding-bottom: 140px;
}
.video-description{
	width: 35%;
	color: rgb(24, 24, 24);
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 400;
	line-height: 150%;
	text-align: left;
}
.footer-link{
	transition: 0.3s;
	color: white;
	display: block;
}
.footer-link:hover{
	color: #005cff00;
    text-shadow: 5px -3px white;
}
.feedback-header{
	color: rgb(255, 255, 255);
	font-family: Unbounded;
	font-size: 24px;
	font-weight: 700;
	line-height: 25px;
}
.feedback-subheader{
	color: rgb(255, 255, 255);
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	margin: 14px 0 40px 0;
}
.text-logo{
	color: #FFFFFF;
	font-family: Unbounded;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: none;
}
footer{
	background: #181818;
	padding: 36px 0 45px 0;
}
.footer-logo-block{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.feedback-form{
	max-width: 557px;
	width: 100%;
}
.feedback-vs-menu{
	display: flex;
	flex-wrap: wrap;
	margin-top: 80px;
}
.feedback{
	width: 45%;
}
.footer-menu-item{
	width: 18.3333%;
	display: flex;
	justify-content: end;
}
.footer-menu-header{
	color: rgb(255, 255, 255);
	font-family: Unbounded;
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	margin-bottom: 40px;
}
.footer-menu-item .footer-link{
	margin-bottom: 20px;
}
.footer-menu-item .footer-link img{
	margin-right: 10px;
}
.copyright-block{
	display: flex;
	margin-top: 73px;
	flex-wrap: wrap;
	justify-content: center;
}
.copyright-block .copyright-item{
	width: 20%;
	display: flex;
    flex-direction: column;
    justify-content: end;
}
.copyright-link{
	color: rgb(255, 255, 255);
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	margin-bottom: 10px;
}
.offcanvas-marker{
	color: rgb(23, 112, 236);
    letter-spacing: 2px;
}
.copyright-link-2{
	color: rgb(255, 255, 255);
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 400;
	line-height: 25px;
	text-align: center;
}
.center-item a{
	text-align: center;
}
.copyright-item.end-item{
	display: flex;
    justify-content: end;
    flex-direction: row;
}
.go-to-start{
	display: flex;
    align-items: end;
    text-align: right;
    color: rgb(255, 255, 255);
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    transition: 0.3s;
}
.go-to-start:hover{
	transform: scale(1.1);
}
.go-to-start-text{
	margin-right: 20px;
}
header, .hero-img, .animate-btn, .site-logo img{
	display: none;
}
.offcanvas-body .nav-link{
	font-size: 18px;
    margin: 12px 0;
    padding: 0;
    font-weight: 500;
    transition: 0.4s;
}
.offcanvas-header{
	height: 100px;
}
.offcanvas-logo{
    margin:0 auto 100px auto;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #d7d7d7;
    border-radius: 100%;
    box-shadow: 0 0 20px #0000003b;
}
.youtube-modal-block{
	margin-right: 0 !important;
}
@keyframes border_logo{
	50%{border: 2px solid rgb(23 112 236 / 70%);box-shadow: 0 0 20px rgb(23 112 236 / 40%);}
}
.offcanvas-logo img{
	filter: invert(100%);
}
.offcanvas-body {
    display: flex;
    flex-direction: column;
}
.offcanvas-body .nav-link:hover{
    opacity: 0.5;
}
@media(max-width:1400px){
	.tab-text{
		margin-top: 0;
	}
	.slider-img {
	    width: 100%;
	}
}
@media(max-width:1200px){
	.how-it-works-heading{
		padding: 40px;
	}
	.youtube-video-block, .video-block iframe{
		margin-right: 50px;
	}
	.copyright-block .copyright-item{
		width: 33.3333%;
		margin-top: 30px;
	}
	.feedback{
		width: 50%;
		text-align: center;
	}
	.footer-menu-item{
		width: 25%;
	}
	.footer-menu-item:last-child{
		width: 100%;
		margin-top: 45px;
	}
	.footer-menu-item:last-child .footer-menu-block{
		width: 100%;
		display: flex;
    	justify-content: space-between;
	}
	.heading-description{
		width: 100%;
	}
	.heading-text{
		width: auto;
	}
	header{
		padding: 0 30px;
	}
	.our-advantages{
		padding: 50px 30px 30px 30px;
	}
	.tab-cards {
	    margin-top: 20px;
	}
	.about-us-column{
		padding-left: 80px;
	}
	.site-logo{
		width: 167px;
	}
	.right-items{
		width: 50%;
	}
	.site-logo img{
		width: 125px;
	}
	.main-header{
		font-size: 46px;
	    line-height: 60px;
	    margin-top: 45px;
	}
	.main-subheader{
		font-size: 24px;
		line-height: 35px;
	}	
	.main-header, .main-subheader{
		text-align: center;
	}
	.hero-block .shop-btn{
		margin: 0 auto 0 auto;
		margin-top:20px;
	}
	.tabs-block .nav-item button{
		font-size: 12px;
		padding: 10px 30px;
	}
	.navbar-toggler{
	    display: block;
	}
	.left-items{
		display: none;
	}
	.footer-menu-header{

	}
	.tabs-block .nav {
	    justify-content: center;
	}
	.tab-card{
		width: 18.5%;
	}
	.tabs-block .nav-item {
	    margin-right: 15px;
	}
	.slider-area{
		display: none;
	}
}
@media(max-width:991px){
	.feedback{
		width: 100%;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.footer-menu-item, .footer-menu-item:last-child{
		width: 33.3333%;
		justify-content: center;
		margin-top: 45px;
	}
	.youtube-video-block, .video-block iframe{
		width: 50%;
		height: 300px;
	}
	.footer-menu-item:last-child .footer-menu-block{
		width: auto;
		display: block;
	}
	.our-pluses{
		margin-top: 70px;
	}
	.video-description{
		width: 50%;
	}
	.heading-text{
		font-size: 30px;
		line-height: 120%;
	}
	.heading-description{
		font-size: 18px;
	}
	.about-us-block{
		margin-top: 75px;
	}
	.about-us-column{
		padding-left: 0;
		padding-top: 70px;
	}
	h2{
		font-size: 38px;
		line-height: 45px;
	}
	.main-header{
		font-size: 38px;
	    margin-top: 15px;
	}
	.main-subheader{
		font-size: 20px;
	}	
}
@media(max-width:945px){
	.tab-card{
		width: 30.5%;
	}
	.card-text{
		font-size: 14px;
	}
}
@media(max-width:835px){
	.how-it-works-heading{
		display: block;
		text-align: center;
	}
	.heading-text{
		margin-bottom: 15px;
	}
	.video-block{
		flex-direction: column;
		align-items: center;
		margin-top: 25px;
	}
	.youtube-video-block, .video-block iframe{
		max-width: 450px;
		margin:0 auto 25px auto;
	}
	.video-description{
		text-align: center;
	}
	.youtube-video-block, .video-description, .video-block iframe{
		width: 100%;
	}
	.hero-block, .tabs-block, .news-block, .about-us-block, .how-it-works, .footer-wrapper{
		padding: 0 15px;
	}
	.footer-menu-block {
	    text-align: center;
	}
	.footer-menu-item:nth-child(3){
		margin-top: 45px;
	}
	.tabs-block {
	    margin-top: 200px;
	}
	h2 {
	    font-size: 30px;
	    line-height: 35px;
	}
	.tab-remote-wrapper{
		overflow-x: auto;
	}
	.right-items{
		display: none;
	}
	#rvr-tab{
		width: 420px;
	}
	.accordion-body{
		font-size: 14px;
	}
	.news-block .accordion-item{
		padding: 10px;
	}
	.news-block .accordion-button{
		font-size: 18px;
	}
}
@media(max-width:680px){
	.tabs-header{
		display: none;
	}
	.our-advantages .icon img{
		width: 36px;
	}
	.advantages-column{
		background-image: none;
		height: auto;
	}
	.news-block{
		margin-top: 40px;
	}
	.about-us-column {
		padding-top: 40px;
	}
	.our-advantages{
		max-height: none;
		padding: 30px 15px 30px 15px;
	}
	.copyright-block .copyright-item:first-child, .copyright-block .copyright-item:nth-child(2){
		width: 100%;
		text-align: center;
	}
	.icon{
		margin-right: 10px;
	}
	.card-text{
		font-size: 12px;
	}
	.tabs-block .nav{
		margin-top: 30px;
	}
}
@media(max-width:767px){
	.how-it-works-heading{
		margin-top: 0;
	}
	header {
	    padding: 0 15px;
	}
	.wrapper {
		background-size: 1460px;
	}
	.tabs-block {
	    margin-top: 20px;
	}
	.collapse-block{
		width: auto;
	}
	.site-logo {
		width: auto;
		display: flex;
		align-items: center;
		height: 100px;
	}
	.site-logo img{
		display: none !important;
	}
	.text-logo{
		display: block;
	}
	.navbar-toggler{
		padding: 0;
	}
	.shop-btn{
		margin:0 auto;
	}
	.about-us-column{
		text-align: center;
	}
	.plus-card-1, .plus-card-2, .plus-card-3{
		margin: 0 auto;
		max-width: 240px;
		height: 150px;
	}
	.plus-header{
		height: auto;
		font-size: 18px;
	}
	.plus-text{
		font-size: 16px;
		margin-top: 5px;
		margin-bottom: 20px;
	}
	.how-it-works-wrapper{
		margin-top: 60px;
	}
}
@media(max-width:600px){
	.play-btn{
		width: 90px !important;
		height: 90px;
	}
	h2{
		font-size: 18px;
		line-height: 30px;
		text-align: center;
	}
	.tab-card{
		height: 140px;
	}
	.tab-header-text{
		font-size: 14px;
		line-height: 20px;
		padding: 0 15px;
	}
	.tab-text{
		text-align: center;
	}
	.footer-menu-item{
		width: 50%;
	}
	.footer-menu-item:last-child{
		width: 100%;
	}
	.footer-menu-item:last-child .footer-menu-block{
		display: flex;
    	width: 100%;
    	font-size: 12px;
	}
	.footer-menu-item .footer-link img {
	    margin-right: 0px;
	    margin-bottom: 10px;
	}
	.tab-card {
		width: 47%;
	}
	.tab-content {
		padding: 15px 0;
	}
	.card-text {
    	font-size: 14px;
	}
}