/* MAIN */

html {
	scroll-behavior: smooth;
}

:root {
	--primary-color: #dadada;
	--background-color: #c1c1c3;
	--theme-color: #0f5431;
	--secondary--color: #f39325;
	--text-color: #3c3c3b;
	--white-color: #ffffff;
	--section-color: #e8f3f3;
}

* {
	font-family: system-ui;
	font-style: normal;
	box-sizing: border-box;
	font-weight: 400;
	margin: 0;
	padding: 0;
}

body {
	font-family: system-ui;
	background: var(--white-color);
	color: var(--text-color);
	font-size: 1rem;
	line-height: 1.6;
}

green-item {
	color: var(--theme-color);
	font-weight: 500;
}

orange-item {
	color: var(--secondary--color);
	font-weight: 500;
}

grid-item {
	margin: auto;
  }

/* SCROLL */

body::-webkit-scrollbar {
    width: 0.5rem;
  }
  
  body::-webkit-scrollbar-track {
    background: var(--primary-color);
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: var(--secondary--color);
  }

/* SECTION TOP */

.section {
	position: relative;
	padding: 0 2rem;
}

.section-top {
	background: url('img/main1920.png') no-repeat center center/cover;
	min-height: 100vh;
	height:100%;
}

.section-top h1 {
	color: var(--theme-color);
	font-size: 4rem;
	font-weight: 500;
	line-height: 1.3;
}

.section-top .content {
	position: absolute;
	top: 6rem;
	right: 1rem;
	width: 50%;
}

h1, h2, h3, p {
	margin-bottom: 0.5rem;
}

a {
	text-decoration: none;
	color: var(--text-color);
}

ul {
	list-style: none;
}

.btn {
	display: inline-block;
	text-transform: uppercase;
	color: var(--white-color);
	background: var(--secondary--color);
	font-weight: 700;
	padding: 0.5rem 2rem;
	font-size: 1rem;
	margin-top: 1rem;
	border-radius: 0.8rem;
	border: 0;
}

.btn:hover {
	transform: scale(0.98);
}

.primary-text {
	color: var(--primary-color);
}

.secondary-text {
	color: var(--secondary--color);
}

.secondary-text-fixed {
	color: var(--theme-color);
}

/* FIRST FIXED INFO */

.section-stream {
	background: var(--white-color);
	min-height: 45rem;
}

.section-stream h2 {
	font-size: 2rem;
	font-weight: 500;
}

.section-stream .play {
	position: absolute;
	top: 2rem;
	right: 4rem;
	height: 30%;
}

.section-stream .content {
	position: absolute;
	left: auto;
	top: 2rem;
	width: 50%;
}

.section-stream .content > div {
	background: var(--section-color);
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: 0.8rem;
}

/* FIRST SCROLLING INFO */

.scrolling-text-headline {
	text-align: center;
	color: var(--theme-color);
	margin-top: 2rem;
}

.section-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	color: var(--theme-color);
	grid-gap: 1rem;
}

.section-grid i {
	display: flex;
	justify-content: center;
}

.section-grid h2 {
	text-align: center;
	font-weight: 500;
}

.section-grid > div {
	background: var(--section-color);
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: 0.5rem;
}

.section-grid h3 {
	color: var(--secondary--color);
	font-weight: 500;
}

.section-grid p {
	color: var(--text-color);
}

/* PICTURE AND TEXT */

.section-picturetext {
	display: grid;
	place-items: center;
	background: var(--section-color);
	width: 100%;
}

.section-picturetext h2 {
	text-align: center;
	color: var(--theme-color);
	font-size: 2rem;
	font-weight: 500;
	margin-top: 1.5rem;
}

.row {
	display: grid;
	overflow-x: hidden;
	grid-template-columns: repeat(2, 1fr);
	width: 80%;
	max-width: 1280px;
	grid-gap: 4rem;
	margin-bottom: 3rem;
	margin-top: 1.5rem;
}

.row .imgWrapper {
	overflow: hidden;
}

.row .imgWrapper img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}

.row .imgWrapper:hover img {
	transform: scale(1.01);
}

.row .contentWrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 30px;
	width: 100%;
}

.row .contentWrapper p {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

/* QUESTIONS */

.faqs {
    background: var(--white-color);
}

.faqs__container {
    display: grid;
    grid-template-columns: repeat(2, 3fr);
    gap: 1rem;
}

.faq {
    display: flex;
    align-items: center;
    height: fit-content;
    cursor: pointer;
    background: var(--section-color);
    padding: 0.5rem;
    gap: 1rem;
    margin-left: 10%;
    margin-right: 10%;
	
}

.faqs h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	color: var(--theme-color);
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.faq h4 {
    font-size: 1rem;
	font-weight: 500;
}

.faq__icon {
    align-self: flex-start;
    font-size: 1.8rem;
	color: var(--theme-color);
}

.faq__icon .uil-minus {
	color: var(--secondary--color);
}

.faq p {
    display: none;
    margin-top: 1rem;
}

.faq.open p {
    display: block;
}

/* CONTACT MENU */

.section-contactmenu {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--section-color);
	padding: 0 1rem;
}

.wrapper  {
	background: var(--section-color);
	width: 38rem;
	border-radius: 1rem;
}

.wrapper h3 {
	text-align: center;
	color: var(--theme-color);
	font-size: 2rem;
	padding: 1rem 1rem;
	font-weight: 500;
}

form .dbl-field {
	display: grid;
	align-items: center;
	text-align: center;
	grid-template-columns: repeat(2, 2fr);
	margin-bottom: 2rem;
	grid-gap: 1rem;
	
}

.dbl-field .field {
	position: relative;
	height: 3rem;
}

form .field input, form .message textarea {
	outline: none;
	border: 0.1rem solid var(--text-color);
	background-color: var(--white-color);
	padding: 0 1.5rem 0 4rem;
	border-radius: 0.8rem;
	font-size: 0.75rem;
	height: 100%;
	width: 100%;	
}

form .field input::placeholder, form .message textarea::placeholder {
	color: var(--text-color);
}

.wrapper .field i {
	position: absolute;
	pointer-events: none;
	color: var(--theme-color);
	transform: translateY(-50%);
	top: 50%;
	left: 1rem;
	font-size: 1rem;
}

form .message {
	display: absolute;
}

form .field input:focus, form .message textarea:focus {
	border: 0.15rem solid var(--secondary--color);
}

form .message textarea {
	min-width: 100%;
	max-width: 100%;
	min-height: 8rem;
	max-height: 18rem;
	padding: 1rem 2rem 0 1rem;
}

form .button-area {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.button-area button {
	cursor: pointer;
	display: inline-block;
	text-transform: uppercase;
	color: var(--white-color);
	background: var(--secondary--color);
	font-weight: 700;
	width: 12rem;
	padding: 0.7rem 1rem;
	font-size: 1rem;
	margin-top: 1rem;
	border-radius: 0.8rem;
	border: 0;
}

.button-area span {
	text-align: center;
	display: none;
	color: var(--theme-color);
	margin-top: 1rem;
}

.button-area button:hover {
	transform: scale(0.98);
}

/* FOOTER */

footer {
	background: var(--theme-color);
	background-color: var(--theme-color);
}

.footer-distributed {
    box-sizing: border-box;
	text-align: left;
	background: url('img/footerfor.png') no-repeat center center/cover;
	background-color: var(--theme-color);
	height: 100%;
    width: 100%;
    padding: 1rem 3rem 2rem 4rem;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
    width: 35%;
}

.footer-distributed h3 {
    color: var(--secondary--color);
    font-size: 2.25rem;
    margin: 0;
}

.footer-distributed h3:hover {
	cursor: pointer;
    color: var(--white-color);
}

/* Footer links */

.footer-distributed .footer-links {
	display: grid;
    color: var(--white-color);
	grid-template-columns: repeat(1, 3fr);
	font-size: 1rem;
    margin: 0.5rem 0 0;
}

.footer-distributed .footer-links a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
	line-height: 1.8;
}

.footer-links a:hover {
    color: var(--secondary--color);
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 30%;
	margin-top: 1.5rem;
}

.footer-distributed .footer-center i {
	text-align: center;
    background-color: var(--secondary--color);
    color: var(--theme-color);
    font-size: 0.8rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    line-height: 2rem;
    margin: 0 1rem 1rem 0;
}

.footer-distributed .footer-center p {
	vertical-align: middle;
    display: inline-block;
    color: var(--primary-color);
    margin: 0;
	font-size: 0.9rem;
}

.footer-distributed .footer-center p a {
	text-decoration: none;
    color: var(--primary-color);
}

/* Footer Right */

.footer-distributed .footer-right {
    width: 30%;
	margin-top: 1.25rem;
}

.footer-distributed .footer-company-about {
	color: var(--primary-color);
    font-size: 0.8rem;
}

.footer-distributed .footer-icons a {
    display: inline-block;
	text-align: center;
	cursor: pointer;
	background-color: var(--secondary--color);
	color: var(--theme-color);
    width: 2rem;
    height: 2rem;
    border-radius: 0.1rem;
    font-size: 1.25rem;
    line-height: 2rem;
    margin-right: 0.1rem;
    margin-bottom: 0.2rem;
	border-radius: 50%;
}

.footer-distributed .footer-icons a:hover {
    background-color: var(--primary-color);
}

.footer-distributed .footer-company-name {
	font-weight: normal;
	text-align: left;
    color: var(--primary-color);
    font-size: 0.8rem;
    margin: 0;
}

/* 1538 */
@media (max-width: 1538px) {

	.section-top {
		background: url('img/main1538.png') no-repeat center center/cover;
		min-height: 100vh;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}

/* 1200 */

@media (max-width: 1200px) {
	.section-top .content, .section-stream .play, .section-stream .content {
		position: static;
		width: 100%;
	}

	.section-top {
		min-height: 100vh;
		padding-top: 1rem;
		padding-bottom: 1rem;
		background: url('img/main1000.png') no-repeat center center/cover;
	}

	.section-top .content {
		text-align: center;
	}

	.section-top .content h1 {
		font-size: 2rem;
	}

	.scrolling-text-headline {
		text-align: center;
		color: var(--theme-color);
		margin-top: 2.25rem;
		margin-bottom: 2.25rem;
	}

	.section-stream {
		min-height: 400px;
	}

	.section-stream .play {
		display: block;
		margin: 2rem auto;
		width: 70%;
		margin-bottom: 2rem;
	}

	.section-grid {
		display: block;
		margin-top: 0;
		margin-bottom: 2rem;
	}

	.footer ul {
		display: block;
	}

	.row {
		width: 90%;
	}

	.section-picturetext h2 {
		text-align: center;
		color: var(--theme-color);
		font-size: 2rem;
		font-weight: 500;
	}
	
	.raw .contentWrapper p {
		font-size: 1rem;
	}

	.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: grid;
		justify-content: center;
		grid-template-columns: repeat(1, 3fr);
        width: 100%;
        margin-bottom: 2rem;
    }

	.footer-distributed .footer-center {
		text-align: left;
		justify-content: left;
	}

	.footer-company-about span {
		text-align: center;
	}

	.footer-left h3 {
		text-align: center;
	}

	.footer-distributed .footer-links {
		display: grid;
		text-align: left;
		grid-template-columns: repeat(1, 3fr);
		color: var(--white-color);
		margin: 2rem 0 1rem;
	}

	.faqs__container {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 1rem;
	}
}

/* 960 */

@media (max-width: 961px) {
	.content, .section-stream .play, .section-stream .content {
		position: static;
		width: 100%;
	}

	.section-top {
		position: static;
		background: url('img/main960.png') no-repeat center center/cover;
		width: 100%;
		min-height: 100vh;
	}

	.section-top {
		min-height: 100vh;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.section-top .content {
		text-align: center;
	}

	.section-top .content h1 {
		font-size: 3rem;
	}

	.section-stream {
		min-height: 400px;
		margin-bottom: 3rem;
	}

	.section-stream .play {
		display: block;
		margin: 2rem auto;
		width: 50%;
	}

	.section-grid {
		display: block;
		margin-top: 0;
	}

	.footer ul {
		display: block;
	}

	.row {
		width: 90%;
		grid-template-columns: repeat(1, 1fr);
	}

	.row .contentWrapper {
		padding-left: 0;
	}

	.row .contentWrapper p {
		font-size: 1rem;
	}
}

/* 768 */

@media (max-width: 769px) {
	.content, .section-stream .play, .section-stream .content {
		position: static;
		width: 100%;
	}

	.section-top {
		position: static;
		background: url('img/main960.png') no-repeat center center/cover;
		width: 100%;
	}

	.section-top {
		min-height: 100vh;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.section-top .content {
		text-align: center;
	}

	.section-top .content h1 {
		font-size: 2.5rem;
	}

	.section-stream {
		min-height: 400px;
		margin-bottom: 3rem;
	}

	.section-stream .play {
		display: block;
		margin: 2rem auto;
		width: 50%;
	}

	.section-grid {
		display: block;
		margin-top: 0;
	}

	.footer ul {
		display: block;
	}

	.row {
		width: 90%;
		grid-template-columns: repeat(1, 1fr);
	}

	.row .contentWrapper {
		padding-left: 0;
	}

	.row .contentWrapper p {
		font-size: 1rem;
	}
}

/* 575 */

@media (max-width: 576px) {
	.content, .section-stream .play, .section-stream .content {
		position: static;
		width: 100%;
	}

	.section-top {
		position: static;
		background: url('img/main575.png') no-repeat center center/cover;
		width: 100%;
	}

	.section-top {
		min-height: 100vh;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.section-top .content {
		text-align: center;
	}

	.section-top .content h1 {
		font-size: 2rem;
	}

	.section-stream {
		min-height: 420px;
		margin-bottom: 3rem;
	}

	.section-stream .play {
		display: block;
		margin: 2rem auto;
		width: 50%;
	}

	.section-grid {
		display: block;
		margin-top: 0;
	}

	.footer ul {
		display: block;
	}

	.row {
		width: 90%;
		grid-template-columns: repeat(1, 1fr);
	}

	.row .contentWrapper {
		padding-left: 0;
	}

	.row .contentWrapper p {
		font-size: 1rem;
	}

	.footer-distributed .footer-links {
		display: grid;
		text-align: center;
		grid-template-columns: repeat(3, 1fr);
	}
}

/* 480 */

@media (max-width: 481px) {
	.content, .section-stream .play, .section-stream .content {
		position: static;
		width: 100%;
	}

	.section-top {
		position: static;
		background: url('img/main480.png') no-repeat center center/cover;
		width: 100%;
	}

	.section-top {
		min-height: 100vh;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.section-top .content {
		text-align: center;
	}

	.section-top .content h1 {
		font-size: 2rem;
	}

	.section-stream {
		min-height: 400px;
		margin-bottom: 3rem;
	}

	.section-stream .play {
		display: block;
		margin: 2rem auto;
		width: 80%;
		margin-bottom: 1rem;
	}

	.section-grid {
		display: block;
		margin-top: 0;
	}

	.footer ul {
		display: block;
	}

	.row {
		width: 90%;
		grid-template-columns: repeat(1, 1fr);
	}

	.row .contentWrapper {
		padding-left: 0;
	}

	.row .contentWrapper p {
		font-size: 1rem;
	}

	.section-contactmenu {
		padding: 0 2rem;
	}

	.dbl-field .field {
		position: relative;
		height: 2.25rem;
	}

	form .field input, form .message textarea {
		padding: 0 1.5rem 0 2.5rem;
		border-radius: 0.8rem;
	}

	form .message textarea {
		padding: 1rem 2rem 0 1rem;
	}

	.footer-distributed .footer-links {
		display: grid;
		text-align: left;
		grid-template-columns: repeat(3, 1fr);
	}
}