* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	background-color: #000;
	color: #fff;
	font-family: 'Roboto', sans-serif;
}
a {
	text-decoration: none;
	color: #fff;
}
.container {
	max-width: 1200px;
	margin: auto;
}
#header {
	display: flex;
	padding: 50px 60px;
	align-items: center;
	width: 100%;
}
#header .logo {
	height: 50px;
	border-radius: 10px;
}
#header .nav {
	margin-left: 50px;
}
#header .nav a {
	padding: 0 20px;
	font-size: 20px;
}
#sect-1 {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row-reverse;
	padding: 50px 60px;
	width: 100%;
}
#sect-1 .text {
	padding-right: 30px;
	width: 50%;
	margin: auto;
}
#sect-1 .main-title {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 30px;
}
#sect-1 .main-subtitle {
	font-size: 23px;
	color: orange;
	margin-bottom: 20px;
}
#sect-1 .main-paragraph p {
	font-size: 23px;
	margin-bottom: 20px;
	color: #A5A6AA;
}
#sect-1 .video {
	width: 50%;
	margin: auto;
}
#sect-1 .video video {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
#devices-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}
#devices-logos .text {
	color: orange;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}
#devices-logos .logos {
	padding: 10px 5px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#devices-logos .logo {
	margin-right: 20px;
	padding: 5px 0;
}
#devices-logos .logo img {
	height: 20px;
}
#sect-2 {
	padding: 50px 60px;
}
#sect-2 .main-title {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 30px;
}
#sect-2 .channel {
	padding: 20px 0;
}
#sect-2 .channel a {
	display: flex;
}
#sect-2 .channel .channel-img {
	width: 200px;
	height: 200px;
	border-radius: 10px;
	margin-right: 30px;
}
#sect-2 .channel .channel-title {
	font-size: 37px;
	font-weight: 700;
	margin-bottom: 30px;
}
#sect-2 .channel .channel-description {
	color: #A5A6AA;
	font-size: 23px;
}
#main-buttons {
	display: flex;
	justify-content: center;
	margin: 70px 0;
}
#main-buttons button {
	margin: 0 40px;
	padding: 30px 50px;
	border:  none;
	border-radius: 10px;
	font-size: 20px;
}
#main-buttons .btn1 {
	background-color: orange;
}
#main-buttons .btn2 {
	background-color: #181818;
	color: orange;
}
#sect-4 {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	margin-bottom: 200px;
	padding: 20px;
}
#sect-4 .main-title {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
}
#sect-4 .qa {
	margin-bottom: 30px;
}
#sect-4 .qa .question {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 70px;
	padding: 0 10px;
	font-size: 25px;
	background-color: #181818;
	position: relative;
	border-radius: 10px 10px 0 0;
}
#sect-4 .qa .question .title {
	text-align: center;
}
#sect-4 .qa .toggle {
	position: absolute;
	right: 30px;
	cursor: pointer;
	font-size: 40px;
	display: none;
}
#sect-4 .qa .answer {
	padding: 50px 100px;
	background-color: #1D1D1D;
	overflow: hidden;
	border-radius: 0 0 10px 10px;
}
#sect-4 .qa .answer.hidden {
	height: 0;
}
#sect-4 .qa .answer p {
	font-size: 20px;
	margin-bottom: 10px;
	line-height: 25px;
}
#footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: #1D2227 2px solid;
	padding: 20px 100px;
	width: 100%;
}
#footer .copyright {
	color: #A5A6AA;
}
#footer .links, #footer .links a {
	color: #A5A6AA;
}
#footer .social-icons {
	display: flex;
}
#footer .social-icons a {
	margin-right: 20px;
	padding: 10px;
	border-radius: 50%;
	background-color: #1D1D1D;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 870px) {
	#header {
		padding: 20px 10px;
		justify-content: center;
	}
	#header .logo {
		height: 30px;
	}
	#header .nav {
		margin-left: 10px;
	}
	#header .nav a {
		padding: 10px;
		font-size: 14px;
	}
	#sect-1 {
		display: block;
		padding: 20px 20px 50px 20px;
	}
	#sect-1 .text, #sect-1 .video {
	    padding: 0;
	    width: 100%;
	}
	#sect-1 .main-title, #sect-2 .main-title, #sect-4 .main-title {
		font-size: 30px;
	}
	#sect-2 {
		padding: 50px 10px;
	}
	#sect-2 .channel .channel-img {
		width: 100px;
		height: 100px;
		margin-right: 10px;
	}
	#sect-2 .channel .channel-title {
		font-size: 27px;
		margin-bottom: 10px;
	}
	#sect-2 .channel .channel-description {
		font-size: 14px;
	}
	#sect-4 .qa .answer {
		padding: 20px;
	}
	#sect-4 .qa .question {
		font-size: 20px;
	}
	#sect-4 .qa .answer p {
		font-size: 14px;
	}
	#footer {
		display: block;
		padding-top: 20px;
	}
	#footer .copyright, #footer .links, #footer .social-icons {
		padding-bottom: 20px;
	}
}