@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

html, body {
	font-family: 'Open Sans', sans-serif;
	overflow-x: hidden;
}

body {
	background: #FCFCFC;
	overflow-x: hidden;
}

h2 {
	font-weight: bold;
	font-size: 40px;
	text-align: center;
	color: #29333F;
}

.no-events {
	pointer-events: none;
}

section {
	position: relative;
}

.fake-container {
	position: absolute;
	top: 50%;
	height: 100%;
	width: 1920px;
	left: 50%;
	transform: translate(-50%,-50%);
	min-height: 635px;
}

.button {
	display: inline-block;
	font-weight: bold;
	font-size: 15px;
	color: #FFFFFF;
	background: #00A8DC;
	border-radius: 100px;
	height: 50px;
	line-height: 50px;
	padding-left: 60px;
	padding-right: 90px;
	position: relative;
	transition: background .3s;
	cursor: pointer;
	max-width: 100%;
}

.button span {
	position: relative;
	z-index: 1;
}

.button::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	filter: blur(0);
	background: #00A8DC;
	transition: filter .3s;
	z-index: 0;
	left: 0;
	top: 0;
	border-radius: 100px;
}

.button .arrow {
	position: absolute;
	width: 46px;
	height: 46px;
	display: inline-block;
	border-radius: 50%;
	background: #24B7E5;
	right: 4px;
	top: 2px;
	overflow: hidden;
	transition: right .3s;
}

.button:hover .arrow {
	right: 2px;
}

.button .arrow::before,
.button .arrow::after {
	content: '';
	background: url(../img/arrow.svg) no-repeat scroll center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: left .3s, opacity .6s;
	position: absolute;
}

.button .arrow::before {
	left: -46px;
}

.button:hover {
	text-decoration: none;
	color: #fff;
}

.button:hover::before {
	filter: blur(10px);
}

.button:hover .arrow::before {
	left: 0;
}

.button:hover .arrow::after {
	left: 90px;
	opacity: 0;
}

.button:active {
	background: #0099C8;
}

.input {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 1em;
	max-width: 350px;
	width: calc(100% - 2em);
	vertical-align: top;
	overflow: hidden;
	padding-top: 1em;
	padding-left: 1px;
	padding-right: 1px;
	padding-bottom: 5px;
}

.input-field {
	position: relative;
	display: block;
	float: right;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #9da8b2;
	font-weight: 400;
	font-size: 1.25em;
	-webkit-appearance: none;
	padding: 0.5em 0em 0.25em;
	width: 100%;
}

.input-field:focus {
	outline: none;
}

.input-label {
	color: #A1A8B0;
	display: block;
	float: right;
	font-size: 14px;
	left: 0;
	position: absolute;
	padding: 0em;
	width: 100%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	top: 30px;
	text-align: left;
	pointer-events: none;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: -webkit-transform 0.2s 0.15s, color 1s, font-size .3s;
	transition: transform 0.2s 0.15s, color 1s, font-size .3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.input-label.long {
	top: 10px;
}

.input-field:focus + .input-label,
.input-filled .input-label {
	font-size: 12px;
	-webkit-transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
	transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
}


.input-placeholder {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
}

.input-graphic {
	position: absolute;
	top: 0;
	left: 0;
	fill: none;
	stroke: #92989e;
	pointer-events: none;
	-webkit-transition: -webkit-transform 0.7s, stroke 0.7s;
	transition: transform 0.7s, stroke 0.7s;
	-webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
	transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

.input-field:focus ~ .input-graphic,
.input-filled .input-graphic {
	stroke: #333;
	-webkit-transform: translate3d(-66.6%, 0, 0);
	transform: translate3d(-66.6%, 0, 0);
}

.container .links {
	margin-bottom: 40px;
	border: 0;
}

.container .nav-link {
	height: 50px;
	line-height: 50px;
	border: 1px solid #D2D4D6;
	background: #fff;
	box-sizing: border-box;
	border-radius: 34px;
	width: 140px;
	text-align: center;
	margin-left: 8px;
	margin-right: 8px;
	margin-bottom: 28px;
	padding: 0;
	font-size: 15px;
	color: #29333F;
	text-decoration: none;
	transition: background .3s, border-color .3s, color .3s;
}

.container .nav-link:hover,
.container .nav-link.active {
	background: #00A8DC;
	color: #fff;
	font-weight: 600;
	border-color: #00A8DC;
}

.subtitle {
	text-align: center;
	font-size: 15px;
	line-height: 29px;
	letter-spacing: 0.03em;
	color: #29333F;
	margin-bottom: 45px;
}

header {
	padding-top: 35px;
	padding-bottom: 50px;
	position: relative;
	z-index: 1;
}

.navbar .menu-item {
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}

header a {
	font-size: 16px;
	line-height: 20px;
	color: #29333F;
	text-decoration: none;
}

header a:hover {
	text-decoration: none;
}

header a * {
	vertical-align: middle;
}

.s1 {
	margin-bottom: 110px;
}

.s1 .logo-text {
	margin-top: 110px;
	margin-bottom: 50px;
}

.s1 .description {
	font-size: 15px;
	margin-bottom: 60px;
}

.s1 .circle {
	width: 100%;
}

.s1 .circle::before {
	content: "";
	display: block;
	padding-top: 100%;
	background: #DBF2FB;
	border-radius: 100%;
}

.s1 .mockup img {
	top: 107px;
}

.s1 .show-video	{
	font-size: 15px;
	line-height: 30px;
	color: #000;
}

.s1 .show-video:hover {
	text-decoration: none;
}

.s1 .show-video .arrow {
	width: 50px;
	height: 50px;
	background: #24B7E5;
	position: relative;
	display: inline-block;
	border-radius: 100px;
	margin-right: 15px;
}

.s1 .show-video .arrow::before {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	left: 0;
	top: 0;
	background: #DBF2FB;
	z-index: -1;
	border-radius: 100px;
	animation: pulse 2s infinite ease;
}

.s1 .show-video:hover .arrow::before {
	animation-play-state: paused;
}

.s1 .show-video .arrow::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	left: 0;
	top: 0;
	background: url(../img/triangle.svg) no-repeat scroll center;
	z-index: 1;
}

@keyframes pulse {
	from, to {
		opacity: 0;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.8);
	}
}

.s2 {
	position: relative;
	padding-top: 40px;
	margin-bottom: 110px;
}

.s2 .fake-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: -20%;
	display: block;
	width: 635px;
	height: 635px;
	background: #F2F8FB;
	border-radius: 100%;
}

.s2 .text {
	background: #FFFFFF;
	box-shadow: 0px 27px 57px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	font-size: 15px;
	line-height: 29px;
	color: #29333F;
	padding: 77px 113px;
}

.s3 {
	position: relative;
	margin-top: 110px;
	margin-bottom: 110px;
}

.s3 .fake-container::before {
	content: '';
	position: absolute;
	top: 30%;
	right: -20%;
	display: block;
	width: 635px;
	height: 635px;
	background: #F2F8FB;
	border-radius: 100%;
}

.s3 h2 {
	margin-bottom: 65px;
}

.s3 .icon-wrap {
	width: 38px;
	height: 38px;
	display: inline-block;
}

.s3 .title {
	font-weight: 600;
	font-size: 15px;
	line-height: 38px;
	color: #000000;
	text-transform: uppercase;
	margin-bottom: 42px;
}

.s3 .title span {
	margin-left: 25px;
}

.s3 .description {
	font-size: 15px;
	line-height: 29px;
	letter-spacing: 0.03em;
	color: #29333F;
	margin-bottom: 40px;
}

.s3 .left {
	padding-top: 40px;
	padding-bottom: 40px;
}

.s3 .right {
	padding-top: 40px;
}

.s3 .circle {
	position: absolute;
	height: 430px;
	width: 430px;
	border-radius: 100%;
	background: #DBF2FB;
	top: 0;
	z-index: -1;
	left: 50%;
	transform: translateX(-50%);
}

.s4 {
	margin-top: 110px;
	margin-bottom: 110px;
}

.s4 .text {
	font-size: 15px;
	line-height: 29px;
	letter-spacing: 0.03em;
	color: #29333F;
	margin-top: 170px;
	margin-bottom: 90px;
}

.s4 .link:hover {
	text-decoration: none;
}

.s4 .link span {
	font-size: 13px;
	line-height: 18px;
	color: #29333F;
	opacity: 0.75;
}

.s4 .link img {
	margin-bottom: 20px;
}

.s5 {
	position: relative;
	margin-top: 110px;
}

#university-tab,
#materials-tab {
	width: auto;
}

.s5 .fake-container::before {
	content: '';
	position: absolute;
	top: -20%;
	left: -20%;
	display: block;
	width: 635px;
	height: 635px;
	background: #F2F8FB;
	border-radius: 100%;
}

.s5 .item {
	width: 260px;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 110px;
	margin-left: 30px;
	margin-right: 30px;
}

.s5 .title {
	font-weight: bold;
	font-size: 15px;
	line-height: 25px;
	letter-spacing: 0.03em;
	color: #29333F;
	margin-bottom: 10px;
}

.s5 .text {
	font-size: 15px;
	line-height: 20px;
	letter-spacing: 0.03em;
	color: #29333F;
}

.s5 .number {
	position: absolute;
	bottom: 0;
	width: 100%;
}

.s5 .number::before {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	background: #93989E;
	top: 50%;
	margin-top: 1px;
	z-index: -1;
}

.s5 .number span {
	background: #fcfcfc;
	font-size: 13px;
	line-height: 18px;
	letter-spacing: 0.03em;
	color: #29333F;
	padding-right: 15px;
}

.s6 {
	position: relative;
	margin-top: 110px;
}

.s6 .fake-container::before {
	content: '';
	position: absolute;
	top: 30%;
	right: -20%;
	display: block;
	width: 635px;
	height: 635px;
	background: #F2F8FB;
	border-radius: 100%;
}

.s6 .form-title {
	margin-top: 35px;
	margin-bottom: 40px;
	font-size: 30px;
	line-height: 41px;
	text-align: center;
	color: #29333F;
}

.s6 .input {
	margin-bottom: 110px;
}

.s6 .buttons {
	margin-bottom: 110px;
}

.s7 {
	position: relative;
	margin-top: 110px;
}

.s7 .fake-container::before {
	content: '';
	position: absolute;
	top: -40%;
	left: -20%;
	display: block;
	width: 635px;
	height: 635px;
	background: #F2F8FB;
	border-radius: 100%;
}

.s7 h2,
.s10 h2 {
	margin-bottom: 60px;
}

.s7 .subtitle,
.s10 .subtitle {
	margin-bottom: 80px;
}

.s7 .item,
.s10 .item {
	width: 320px;
	margin-left: 70px;
	margin-right: 70px;
	margin-bottom: 110px;
	position: relative;
	padding-bottom: 30px;
}

.s7 .item .title,
.s10 .item .title {
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.03em;
	color: #29333F;
	margin-bottom: 20px;
}

.s7 .item img,
.s10 .item img {
	margin-right: 20px;
}

.s7 .number,
.s10 .number {
	position: absolute;
	bottom: 0;
	width: 100%;
}

.s7 .number::before, 
.s10 .number::before {
	content: '';
	position: absolute;
	height: 2px;
	background: #BDC0C3;
	top: 50%;
	margin-top: 1px;
	z-index: -1;
	left: 40px;
	right: 30%;
}

.s7 .number span,
.s10 .number span {
	font-size: 13px;
	line-height: 19px;
	letter-spacing: 0.03em;
	color: #29333F;
	padding-right: 15px;
}

.s8 {
	position: relative;
	margin-top: 110px;
}

.s8 .fake-container::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	display: block;
	width: 635px;
	height: 635px;
	background: #F2F8FB;
	border-radius: 100%;
}

.s8 h2 {
	margin-bottom: 60px;
}

.s8 .subtitle {
	margin-bottom: 80px;
}

.s8 .buttons {
	margin-bottom: 110px;
}

.s8 .button {
	width: 340px;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
}

.s9 {
	margin-top: 110px;
    background: -webkit-linear-gradient(273deg, #29333F 0%, #202933 100%);
    background: -o-linear-gradient(273deg, #29333F 0%, #202933 100%);
    background: linear-gradient(3deg, #29333F 0%, #202933 100%);
}

.s9 .container {
    margin-bottom: 110px;
}

.s9 .left {
	padding-top: 110px;
	padding-bottom: 120px;
}

.s9 .text-muted {
	font-weight: 600;
	font-size: 18px;
	line-height: 34px;
	letter-spacing: 0.03em;
	color: #80858C;
}

.s9 .title {
	font-weight: 600;
	font-size: 73px;
	line-height: 100px;
	color: #FFFFFF;
}

.s9 .subtitle {
	font-weight: 600;
	font-size: 26px;
	line-height: 36px;
	color: #FFFFFF;
	margin-bottom: 70px;
	text-align: left;
}

.s9 .text {
	font-size: 15px;
	line-height: 29px;
	letter-spacing: 0.03em;
	color: #FFFFFF;
}

.s9 .right {
	padding-top: 30px;
}

.s9 .right a {
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all .3s;
}

.s9 .right a span {
	width: 114px;
	height: 114px;
	border: 3px solid #00B2E9;
	border-radius: 100%;
	background: url(../img/play.svg) no-repeat scroll center center;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	transition: box-shadow .3s;
}

.s9 .right img {
	transition: filter .3s;
}

.s9 .right a:hover img {
	filter: drop-shadow(0 0 15px #00A8DC);
}

.s9 .right a:hover span {
	box-shadow: inset 0 0 25px;
}

.s10 {
	position: relative;
	margin-top: 110px;
}

.s10 .fake-container::before {
	content: '';
	position: absolute;
	top: -10%;
	left: -20%;
	display: block;
	width: 635px;
	height: 635px;
	background: #F2F8FB;
	border-radius: 100%;
}

.s10 .fake-container::after {
	content: '';
	position: absolute;
	bottom: -30%;
	right: -20%;
	display: block;
	width: 635px;
	height: 635px;
	background: #F2F8FB;
	border-radius: 100%;
	z-index: -1;
}


.s11 {
	margin-top: 110px;
	margin-bottom: 110px;
}

.s11 h2 {
	margin-bottom: 60px;
}

.s11 .subtitle {
	margin-bottom: 80px;
}

.s11 .input {
	margin-bottom: 110px;
}

.s11 .form-title {
	font-size: 30px;
	line-height: 41px;
	color: #29333F;
	margin-bottom: 70px;
}

.s12 {
	margin-top: 110px;
	margin-bottom: 110px;
	position: relative;
}

.s12 .fake-container::before {
	content: '';
	position: absolute;
	top: -40%;
	left: -25%;
	display: block;
	width: 635px;
	height: 635px;
	background: #F2F8FB;
	border-radius: 100%;
}

.s12 .fake-container::after {
	content: '';
	position: absolute;
	bottom: -20%;
	right: -18%;
	display: block;
	width: 635px;
	height: 635px;
	background: #F2F8FB;
	border-radius: 100%;
	z-index: -1;
}

.s12 h2 {
	margin-bottom: 75px;
}

#accordion {
	margin-bottom: 110px;
}

.card {
	min-height: 20px;
	margin-bottom: 10px;
	border: none;
	background-color: inherit;
	border-bottom: 2px solid #E7E8E9;
}

.card[id*="collapse"] {
	font-size: 15px;
	line-height: 29px;
	letter-spacing: 0.05em;
	color: #29333F;
}

.card-header {
	border: none;
	padding: 0;
	background: inherit;
	margin: 20px 0;
}

.card-body {
	padding: 0;
	padding-bottom: 40px;
	padding-top: 20px;
}

.card-header .btn-link {
	font-size: 15px;
	line-height: 29px;
	letter-spacing: 0.03em;
	color: #29333F;
	width: 100%;
	text-align: left;
	font-weight: 600;
	padding: 0;
}

.card-header .btn-link:hover,
.card-header .btn-link:focus,
.card-header .btn-link:active {
	text-decoration: none;
}

.card .btn-link > span {
	max-width: calc(100% - 46px);
	overflow-x: auto;
	white-space: normal;
}

.card .button-toggle {
	display: inline-block;
	width: 46px;
	height: 46px;
	background: #24B7E4;
	border-radius: 50%;
	position: relative;
}

.button-toggle .icon-1,
.button-toggle .icon-2 {
	width: 16px;
	height: 2px;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -1px;
	display: inline-block;
	background: #fff;
}

.button-toggle .icon-2 {
	transition: transform .3s;
}

.collapsed .icon-2 {
	transform: rotate(90deg);
}

.s13 {
	padding-top: 170px;
	padding-bottom: 110px;
	position: relative;
	overflow: hidden;
}

.s13 .fake-container::before {
	content: '';
	position: absolute;
	background: #DBF2FB;
	width: 981px;
	height: 981px;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	border-radius: 50%;
}

.s13 h2 {
	margin-bottom: 65px;
}

.s13 .text {
	font-size: 15px;
	line-height: 29px;
	text-align: center;
	letter-spacing: 0.03em;
	color: #29333F;
}

footer {
	padding-top: 70px;
	padding-bottom: 70px;
	background: #29333F;
	color: #fff;
}

footer p {
	font-size: 15px;
	line-height: 29px;
	letter-spacing: 0.03em;
	color: #FFFFFF;
}

footer .contacts img {
	margin-right: 10px;
}

footer .contacts a,
footer .socials a {
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	line-height: 29px;
	letter-spacing: 0.03em;
}

footer .contacts a:hover,
footer .socials a:hover {
	color: #fff;
	text-decoration: none;
}

footer .socials {
	margin-bottom: 30px;
}

footer .socials a {
	display: inline-block;
}

footer .socials a + a {
	margin-left: 15px;
}

.copyright {
	font-weight: 600;
	font-size: 15px;
	line-height: 29px;
	text-align: center;
	letter-spacing: 0.03em;
	color: #FFFFFF;
	opacity: 0.38;
	margin-top: 40px;
}

/* Menu icon styles */

.menu-icon-wrapper {
	position: relative;
	display: inline-block;
    width: 34px;
    height: 34px;
	pointer-events: none;
	transition: 0.1s;
}

.menu-icon-wrapper.scaled {
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
}

.menu-icon-wrapper svg {
	position: absolute;
	top: -33px;
	left: -33px;
	-webkit-transform: scale(0.1);
	-ms-transform: scale(0.1);
	transform: scale(0.1);
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}

.menu-icon-wrapper svg path {
	stroke: #000;
	stroke-width: 60px;
	stroke-linecap: round;
    stroke-linejoin: round;
	fill: transparent;
}

.menu-icon-wrapper .menu-icon-trigger {
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
	pointer-events: auto;
	background: none;
	border: none;
	margin: 0;
	padding: 0;
}

.menu-icon-wrapper .menu-icon-trigger:hover,
.menu-icon-wrapper .menu-icon-trigger:focus {
	outline: none;
}

.fancy-wrap {
	cursor: default;
}

.fancybox-content .content {
	background: #fff;
	border: 1px solid #E5E5E5;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding-top: 40px;
} 

#popup-form .form-title,
#popup-form2 .form-title {
	font-weight: bold;
	font-size: 40px;
	line-height: 76px;
	color: #29333F;
}

#popup-form .button,
#popup-form2 .button {
	margin-bottom: 100px;
	margin-top: 70px;
}

#sorry,
#sorry2 {
	background: #fff;
	padding-top: 25px;
	padding-bottom: 25px;
	text-align: center;
	border-radius: 5px;
}

@media (max-width: 1500px) {
	header {
		padding-bottom: 10px;
	}

	.s1 {
		margin-bottom: 50px;
	}

	.s2 {
		margin-bottom: 50px;
	}

	.s2 .text {
		padding: 27px 63px;
	}

	.container .links {
		margin-bottom: 0;
	}

	.s3 {
		margin-bottom: 50px;
	}

	.s4 {
		margin-top: 70px;
		margin-bottom: 70px;
	}

	.s5 {
		margin-top: 70px;
	}

	.s5 .item {
		margin-bottom: 50px;
	}

	.s6 {
		margin-top: 70px;
	}

	.subtitle {
		margin-bottom: 25px;
	}

	.s6 .form-title {
		margin-top: 0;
		margin-bottom: 0;
	}

	.s6 .input {
		margin-bottom: 50px;
	}

	.s6 .buttons {
		margin-bottom: 50px;
	}

	.s7 {
		margin-top: 50px;
	}

	.s7 h2, .s10 h2 {
		margin-bottom: 30px;
	}

	h2 {
		font-size: 35px;
	}

	.s7 .item, .s10 .item {
		margin-bottom: 50px;
	}

	.s8 {
		margin-top: 60px;
	}

	.s8 h2 {
		margin-bottom: 20px;
	}

	.s8 .buttons {
		margin-bottom: 50px;
	}

	.s9 {
		margin-top: 50px;
	}

	.s9 .container {
		margin-bottom: 60px;
	}

	.s10 {
		position: relative;
		margin-top: 60px;
	}

	.s11 {
		margin-top: 60px;
		margin-bottom: 50px;
	}

	.s11 h2 {
		margin-bottom: 10px;
	}

	.s11 .subtitle {
		margin-bottom: 20px;
	}

	.s11 .form-title {
		margin-bottom: 0px;
	}

	.s11 .input {
		margin-bottom: 30px;
	}

	.s11 .button {
		margin-top: 30px;
	}

	.s12 {
		margin-top: 70px;
		margin-bottom: 50px;
	}

	.s12 h2 {
		margin-bottom: 20px;
	}

	#accordion {
		margin-bottom: 50px;
	}

	.s13 {
		padding-top: 60px;
		margin-top: 80px;
	}

	.s13 .fake-container {
		top: 0;
		left: 50%;
		transform: translate(-50%,0);
		min-height: 635px;
	}

	footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media (max-width: 1199.98px) {
	.fake-container {
		width: 1500px;
	}
}

/* < medium */
@media (max-width: 991.98px) {
	.fake-container {
		width: 1400px;
	}

	#topnav li {
		width: 100%;
		text-align: center;
	}

	#topnav a {
		width: 100%;
		padding-top: 10px;
		padding-bottom: 10px;
		display: inline-block;
	}

	.button {
		padding-left: 30px;
	}

	.s1 .show-video {
		margin-top: 70px;
	}

	section[class^="s"]::before,
	section[class^="s"]::after {
		width: 335px;
		height: 335px;
	}

	.s9 .right a {
		position: relative;
	}

	.s2 .text {
		padding: 15px;
	}
	
	.s9 .left {
		padding-top: 50px;
		padding-bottom: 0px;
	}
}

@media (max-width: 767.98px) {
	.s3 .circle {
		height: 330px;
		width: 330px;
	}

	section h2 {
		font-size: 30px;
	}

	.s4 .text {
		margin-top: 20px;
		margin-bottom: 30px;
	}

}

@media (max-width: 575.98px) {
	.s3 .circle {
		display: none;
	}
}
