@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Yanone Kaffeesatz', sans-serif;
	letter-spacing: 0.6px;
}

body {
	padding: 60px;
	background-color: #fcfcff;
}

.main-block {
	display: flex;
}

.window-block {
	width: 50%;
}

.window-main {
    max-width: 500pt;
    max-height: 411pt;
}

.accordion-block {
	width: 50%;
	padding: 30px 50px 0;
	max-width: 755px;
}

.heading {
	text-align: center;
	margin-bottom: 30px;
}

h1 {
	width: 100%;
	margin-bottom: 20px;
	font-size: 52px;
}

h2 {
	font-size: 28px;
	margin: 0 0 20px;
}

.heading p {
	font-size: 36px;
}

.intro {
	margin: 0 0 18px;
	width: 80%;
	font-size: 18px;
	color: rgb(104, 104, 104);
	line-height: 1.2;
}

.accordion {
	background-color: #96d1e1;
	color: #fff;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 19px;
	transition: 0.4s;
}


.active,
.accordion:hover {
	background-color: #75aab9;
}

.accordion:after {
	content: '\002B';
	color: #fff;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.active:after {
	content: "\2212";
}

.panel {
	padding: 0 18px;
	background-color: #fcfcff;
	max-height: 0;
	overflow: hidden;
	transition: max-height .8s ease-out;
}

.panel>p {
	margin: 10px;
	font-size: 18px;
	color: rgb(104, 104, 104);
}

.first-type, .second-type, .third-type {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 196px;
	left: 60px;
	transition: 1s ease;
	max-width: calc(50% - 60px);
	max-height: 411pt;
}


.first {
	border-radius: 15px 15px 0 0;
	border-bottom: 1px solid #fff;
}

.second {
	border-bottom: 1px solid #fff;
}

.third {
	border-radius: 0 0 15px 15px;
}

.link {
	color: #235f6e;
	font-size: 19px;
	line-height: 4vh;
}

.image {
	width: 100%;
	height: auto;
	margin: 0 auto 10px;
	display: none;
}

.logo {
	width: 100%;
	height: auto;
	margin: 30px 0;
	display: none;
}

@media (min-width: 1450px) {
    .window-block {
        text-align: right;
    }
    
    .intro {
        max-width: 605px;
    }
    
    .first-type, .second-type, .third-type {
        text-align: right;
        padding-left: calc(50% - 728px);
    } 
}

@media (min-width: 769px) and (max-width: 992px) {
    .main-block {
        flex-direction: column;
    }
    
    .window-block {
        width: 100%;
    }
    
    .window-main {
        max-width: fit-content;
        max-height: max-content;
    }
    
    .first-type, .second-type, .third-type {
        max-width: calc(100% - 120px);
        max-height: max-content;
    }
    
    .accordion-block {
        width: 100%;
        padding: 45px 10px 0;
        display: flex;
        max-width: max-content;
    }
    
    .accordion-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    
    .main-block {
		flex-direction: column;
	}
	
	.window-block {
		display: none;
	}

	.accordion-block {
		width: 100%;
		padding: 0;
	}

	.image {
		display: block;
	}

	h2 {
		text-align: center;
	}

	.intro {
		padding: 0 30px;
	}
	
	.logo {
		display: block;
	}
}

@media (max-width: 576px) {
	body {
		padding: 30px 40px;
	}

	h1 {
		font-size: 28px;
	}

	.heading>p {
		font-size: 20px;
	}

	h2 {
		font-size: 18px;
	}

	.intro {
		width: 100%;
		font-size: 16px;
	}

	.link {
		font-size: 16px;
	}
}