/* Первый блок */
	.intro{
		display:flex;
		flex-direction:column;
		justify-content:center;
		
		width:100%;
		height:100vh;
		background: url("../images/blue_bgrnd.jpg") center 
		no-repeat;
		-webkit-background-size:cover;
		background-size:cover;
		
	}

	.intro_inner{
		width:100%;
		max-width:880px;
		margin: 0 auto;
	}
	
	.robot{
		position:absolute;
		width:200px;
		bottom:40px;
		left:40px;
	}

	.intro_title{
		font-size:60px;
		font-weight:700;
		color:#fff;
		text-align:center;
		
	}

	.intro_suptitle{
		font-family:'Font Aushan', cursive;
		text-align:center;
		font-size:40px;
		color: #fff;
	}
	
		
	.utp{
		position:absolute;
		width:250px;
		bottom:70px;
		right:70px;
		transform:rotate(-25deg);
	}

	/* Первый блок конец */


	/* Второй блок */
	.section{
		padding: 80px 0;
		
	}


	.section_header{
		width:100%;
		max-width:1200px;
		margin: 0 auto 40px;
		
		text-align:center;
	}

	.section_suptitle{
		font-family:'Font Aushan',cursive;
		font-size:24px;
		color:#333;
	}

	.section_title{
		font-family:'Font Aushan',cursive;
		font-size:36px;
		font-weight:700;
		color:#333;
		text-transform:uppercase;
	}

	.boxes{
		width:100%;
		margin-top:40px;
	}

	/* Стили для Swiper контейнера */
	.card-wrapper {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 10px 0 40px;
		position: relative;
	}


	.line_of_boxes {
		display: flex;
		width: 100%;
	}

	/* Стили для слайдов Swiper */
	.swiper-slide {
		height: auto;
		display: flex;
	}
	/* карточки второй блок */	
	/* .box_card{
		background:#fff;
		
		width:250px;
		height:450px;
		
		flex: 0 0 auto; 
		
		border-radius:10px;
		box-shadow:0 0 5px;
		transition: box-shadow .2s linear;
		
		overflow:hidden;
		opacity:0;
		transform:translateY(35%);
	} */

	/* Карточки - обновленные стили */
	.box_card {
		background: #fff;
		width: 100%;
		height: 450px;
		border-radius: 10px;
		box-shadow: 0 0 5px rgba(0,0,0,0.1);
		transition: box-shadow 0.2s linear;
		overflow: hidden;
		opacity: 0;
		transform: translateY(35%);
		display: flex;
		flex-direction: column;
	}

	/* .box_card:hover{
		box-shadow:0 15px 20px rgba(0,0,0,0.5);
	}
	
	.box_card_init{
		opacity:1;
		transform: translateY(0%);
		transition: all 0.5s;
		
	} */

	.box_card_init {
		opacity: 1;
		transform: translateY(0%);
		transition: all 0.5s ease;
	}

	.box_card:hover {
		box-shadow: 0 15px 20px rgba(0,0,0,0.15);
	}


	/* Кнопки навигации Swiper */
	.swiper-button-prev,
	.swiper-button-next {
		width: 50px;
		height: 50px;
		background: rgba(0, 0, 0, 0.7);
		color: white;
		border-radius: 50%;
		transition: all 0.3s ease;
		margin-top: -25px;
	}

	.swiper-button-prev:hover,
	.swiper-button-next:hover {
		background: rgba(0, 0, 0, 0.9);
	}

	.swiper-button-prev:after,
	.swiper-button-next:after {
		font-size: 20px;
		font-weight: bold;
	}

	/* Пагинация */
	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
		background: #ccc;
		opacity: 0.7;
	}

	.swiper-pagination-bullet-active {
		background: #333;
		opacity: 1;
	}


	.card_image{
		width:100%;
		height:42%;
		/* background: url("../images/children_1.jpg"); */
		/* background-size:cover; */
		object-fit:cover;
		border-radius:10px 10px 0px 0px;
	}

	.card_video{
		width:100%;
		height:40%;
		margin-bottom:12%;
		border-radius:10px 10px 0px 0px;
		/* height:50%; */
		
		/* overflow:hidden; */
	}

	.my_video{
		width:100%;
		border-radius:10px 10px 0px 0px;
	}


	.card_text{
		width:90%;
		height:40%;
		margin:8% 5% 0 5%;
		
	}

	.card_text_title{
		font-family:'Font Montserat Bold';
		font-size:20px;
		font-style:bold;
		font-weight:700;
		color:#333;
		
		margin-bottom:10px;
	}

	.card_text_subtitle{
		font-family:'Font Aushan',cursive;
		height:40px;
		font-size:16px;
		font-weight:700;
		color:#333;
	}

	.card_section_learn{
		width:100%;
		height:10%;
		font-size:20px;
		margin-top:20px;
		font-family:'Font Aushan',cursive;
		color:#333;
		text-align:center;
		vertical-align:middle;
		text-decoration:none;
	}
	/* карточки второй блок конец */

	/* Второй блок конец */

	/* Третий блок */
	.section2{
		padding: 80px 0;
		width:100%;
		height:100%;
		/* background: none; */
		background: url("../images/blue_bgrnd.jpg") center 
		no-repeat;
		background-size:cover;
	}

	.section_title2{
		font-size:42px;
		font-weight:700;
		color:#fff;
		text-transform:uppercase;
	}

	.section_suptitle2{
		font-family:'Font Aushan',cursive;
		font-size:30px;
		color:#fff;
	}

	.call_form{
		width:100%;
		display:flex;
		flex-wrap:wrap;
		justify-content:center;
		align-items:center;

	}

	.name_input{
		width:250px;
		height:55px;
		background-color:#fff;
		border:none;
		outline:none;
		border-radius:12px;
		color:#1b2547;
		padding:15px 32px;
		/* text-align:left; */
		font-weight:bold;
		text-decoration:none;
		display:inline-block;
		font-size:20px;
		
		margin:20px;
	}

	.phone_input{
		width:250px;
		height:55px;
		background-color:#fff;
		border:none;
		outline:none;
		border-radius:12px;
		color:#1b2547;
		padding:15px 32px;
		font-weight:bold;
		/* text-align:center; */
		text-decoration:none;
		display:inline-block;
		font-size:20px;
		
		margin:20px;
	}

	.send_data_button{
		background-color:#1b2547;
		border:none;
		border-radius:12px;
		color:white;
		padding:15px 32px;
		text-align:center;
		text-decoration:none;
		display:inline-block;
		font-size:20px;
		
		margin:20px;
		
	}

	.section_text{
		width:100%;
		display:flex;
		flex-wrap:wrap;
		justify-content:center;
		align-items:center;
		
		color:#fff;
	}
	
	.section2_answer{
		display:none;
		padding: 80px 0;
		width:100%;
		height:100%;
		background: url("../images/blue_bgrnd.jpg") center 
		no-repeat;
		background-size:cover;
		text-align:center;
	}

	.section_title2_answer{
		font-size:42px;
		font-weight:700;
		color:#fff;
		text-transform:uppercase;
	}

	.section_suptitle2_answer{
		font-family:'Font Aushan',cursive;
		font-size:30px;
		color:#fff;
	}
	
	.section2_answer2{
		display:none;
		padding: 80px 0;
		width:100%;
		height:100%;
		background: url("../images/blue_bgrnd.jpg") center 
		no-repeat;
		background-size:cover;
		text-align:center;
	}

	.section_title2_answer2{
		font-size:42px;
		font-weight:700;
		color:#fff;
		text-transform:uppercase;
	}

	.section_suptitle2_answer2{
		font-family:'Font Aushan',cursive;
		font-size:30px;
		color:#fff;
	}

	/* Третий блок конец */

@media (max-width: 1300px){
	
	.robot{
		position:absolute;
		width:110px;
		bottom:30px;
		left:30px;
	}
	
	.utp{
		position:absolute;
		width:150px;
		bottom:70px;
		right:70px;
		transform:rotate(-25deg);
	}
	
	/* карточки второй блок */
	.box_card{
		width:200px;
		height:380px;
	}
	
	.card_video{
		height:40%;
		margin-bottom:0%;
	}
	
	
	.card_image{
		height:40%;
	}
	
	.card_text_title{
		font-size:17px;
	}
	
	.card_text_subtitle{
		font-size:14px;
	}
	
	.card_section_learn{
		font-size:14px;
		margin-top:20px;
	}
	
	/* карточки второй блок конец */
	
	
}

@media (max-width: 1100px){
	
	.robot{
		position:absolute;
		width:100px;
		bottom:15px;
		left:15px;
	}
	
	.utp{
		position:absolute;
		width:100px;
		bottom:70px;
		right:70px;
		transform:rotate(-25deg);
	}
	
	
	
	/* карточки второй блок */
	.box_card{
		width:300px;
		height:450px;
		margin-top:60px;
		margin-bottom:60px;
	}
	
	.card_video{
		height:50%;
		margin-bottom:0%;
	}
	
	.card_image{
		height:50%;
	}
	
	.card_text{
		height:36%;
	}
	
	.card_text_title{
		font-size:22px;
	}
	
	.card_text_subtitle{
		height:0px;
		font-size:16px;
	}
	
	.card_section_learn{
		font-size:16px;
		margin-top:0px;
	}
	
	/* карточки второй блок конец */
	
	.section2{
		height:100%;
		
	}
	
	.name_input{
		width:40%;
		height:60px;

	}

	.phone_input{
		width:40%;
		height:60px;

	}

	.send_data_button{
		width:40%;
		height:60px;
	}
}


@media (max-width: 800px){
	.section2{
		height:100%;
	}
	
	.call_form{
		flex-direction:column;
	}
}

@media screen and (orientation:landscape) and (max-device-width: 1000px){

	.robot{
		width:200px;
	}
	
	.intro_title{
		margin-top:-50px;
	}

	.intro_suptitle{
		font-size:30px;
		margin-top:-10px
	}
	
	.utp{
		width:200px;
		right:20px;
	}
	
	
}


@media screen and (orientation:portrait) and (max-device-width: 1000px){
	
	/* первый блок */
	.robot{
		width:300px;
		bottom:65px;
		left:45px;
	}
	
	.utp{
		width:350px;
		bottom:95px;
		right:70px;
	}
	
	.intro_title{
		font-size:80px;
		margin-bottom:20px;
	}

	.intro_suptitle{
		font-size:40px;
	}
	/* первый блок конец */
	
	/* второй блок */
	.section_suptitle{
		font-size:44px;
	}

	.section_title{
		font-size:66px;
	}
	
	/* карточки второй блок */
	.box_card{
		width:700px;
		height:1000px;
	}
	
	.card_video{
		height:50%;
		margin-bottom:0%;
	}
	
	.card_image{
		height:50%;
	}
	
	.card_text{
		height:30%;
		margin:10% 5% 8% 5%;
	}
	
	.card_text_title{
		font-size:50px;
	}
	
	.card_text_subtitle{
		font-size:35px;
	}
	
	.card_section_learn{
		font-size:40px;
	}
	
	/* карточки второй блок конец */
	/* второй блок конец */
	
	/* третий блок */
	.section2{
		height:100%;
	}
	
	.section_title2{
		font-size:62px;
		margin-bottom:50px
	}

	.section_suptitle2{
		font-size:40px;
		padding: 20px 20px;
	}
	

	.name_input{
		width:90%;
		height:130px;
		border-radius:20px;
		padding:15px 32px;
		font-size:30px;
		margin:30px;
	}

	.phone_input{
		width:90%;
		height:130px;
		border-radius:20px;
		font-size:30px;
		margin:30px;
	}

	.send_data_button{
		width:90%;
		height:130px;
		border-radius:20px;
		padding:15px 42px;
		font-size:40px;
		margin:30px;
		
	}
	
	.section2_answer{
		padding: 80px 0;
		width:100%;
		height:100%;
	}
	
	.section_title2_answer2{
		font-size:62px;
		margin-bottom:50px
	}
	
	.section2_phone_txt{
		font-size:62px;
		color:#fff;
	}
	/* третий блок конец */
	
}

