/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap');

:root {
	--color1: rgb(12, 86, 220, 1);
	--color1-1: rgba(12, 86, 220, 0.1);
	--color1-2: rgba(12, 86, 220, 0.2);
	--color1-3: rgba(12, 86, 220, 0.3);
	--color1-5: rgba(12, 86, 220, 0.5);
	--color1-7: rgba(12, 86, 220, 0.7);

	--color2: rgba(40, 73, 133, 1);
	--color2-3: rgba(40, 73, 133, 0.3);
	--color2-5: rgba(40, 73, 133, 0.5);
	--color2-7: rgba(40, 73, 133, 0.7);

	--color3: rgba(44, 44, 44, 1); /* black */
	--color3-3: rgba(44, 44, 44, 0.3);
	
	--color4: rgba(67, 128, 239, 1); /* light */
	--color4-1: rgba(67, 128, 239, 0.1);
	
	--color-gray1: rgba(244, 242, 242, 1);
	--color-gray1-0: rgba(244, 242, 242, 0);
	--color-gray1-5: rgba(244, 242, 242, 0.5);
	--color-gray1-7: rgba(244, 242, 242, 0.7);
	
	--color-gray2: rgba(136, 136, 136, 1.0);
	--color-gray2-5: rgba(136,136,136,0.5);
}


::selection {
	background-color: var(--color1-3);
}

::-moz-selection {
	background-color: var(--color1-3);
}


/*@font-face {
  font-family: "font_light";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/font_roboto_thin.ttf") format("truetype");
}
@font-face {
  font-family: "font_regular";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/font_roboto_light.ttf") format("truetype");
}
@font-face {
  font-family: "font_medium";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/font_roboto_regular.ttf") format("truetype");
}
@font-face {
  font-family: "font_bold";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/font_roboto_medium.ttf") format("truetype");
}
@font-face {
  font-family: "font_header";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/PFDinTextCompPro-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "font_header_light";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/PFDinTextCompPro-Light.ttf") format("truetype");
}
@font-face {
  font-family: "font_header_thin";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/PFDinTextCompPro-Thin.ttf") format("truetype");
}*/


/* анимации */

@keyframes fade_out {
	0% {
		opacity: 1;
		left: 0px;
	}
	99% {
		opacity: 0;
		left: 0px;
	}
	100% {
		opacity: 0;
		left: -999px;
	}
}




/* теги */

html {
	font-size: 16px;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color: #fff;
	color: #000;
	margin: 0px;
	padding: 0px;
	line-height: 1.5;
}

header {
	
}

main {
	min-height: 80vh;
}

main > *:first-child {
	padding-top: calc(4rem + 100px) !important;
}

footer {
	background-color: var(--color3);
	color: #fff;
	padding-top: 2em;
	padding-bottom: 2em;
}

a {
	font-size: inherit;
	color: var(--color1);
	font-family: inherit;
	font-style: normal;
	text-decoration: none;
	transition: 200ms;
}
a:hover {
	text-decoration: none;
	color: var(--color1);
}

a.dashed {
	text-decoration: underline;
	text-decoration-color: var(--color1);
	text-decoration-style: dotted;
}

a.admin {
	background-color: rgba(128,128,128,.2);
	border-radius: 2px;
	color: rgba(0,0,0,.4);
	font-size: 80%;
	padding: 2px;
	position: absolute;
	right: 5px;
	z-index: 1000;
}

img {
	max-width: 100%;
	max-height: 100%;
}

img.inline {
	height: 1em;
	vertical-align: middle;
}

img.inline2 {
	height: 2em;
	vertical-align: middle;
}

h1 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600 !important;
	/*color: var(--color1);*/
}
h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color2);
}
h3 {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color2);
}
h4 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

ul.color {
	list-style: none;
	padding: 0.5em 0 0 0;
}
ul.color li::before {
	content: url(/files/site/li_marker.png);
}
ul.color li {
	margin-bottom: 1em;
}



/* form */

input, select, textarea, button, a.button {
	font-size: inherit;
	border: 1px solid var(--color-gray2);
	background-color: rgba(255,255,255,0.1);
	padding: 1em 2em;
	color: inherit;
	border-radius: 4px;
	box-sizing: border-box;
}

.white_text input, .white_text select, .white_text textarea, .white_text a.button {
	border: 0px;
}

textarea {
	border-top: 1px solid #888;
	border-left: 1px solid #888;
	border-right: 1px solid #888;
}

input[type="number"] {
	width: 100px;
}

input[type="image"] {
	border: 0;
	background: transparent;
}

input[type="submit"], button, a.button {
	font-size: inherit;
	cursor: pointer;	
	color: #fff !important;
	text-align: center;
	border: 0px solid var(--color1);
	border-radius: 4px;
	/*-webkit-appearance: button;*/
	background: linear-gradient(120deg, var(--color1) 38%, var(--color4) 64%, var(--color1) 94%);
	background-color: var(--color1);
	padding: 1em 2em;
	transition: 200ms;
	display: inline-block;
	margin-bottom: 1em;
}
input[type="submit"]:hover, button, a.button:hover {
	color: #fff !important;
	background: linear-gradient(120deg, var(--color1-7) 38%, var(--color4) 64%, var(--color1-7) 94%);
	background-color: var(--color4);
	box-shadow: 0 0 2em 0 var(--color1-5);
}

input[type="submit"]:disabled {
	background-color: #ccc;
	background: linear-gradient(to bottom, #ccc, #bbb);
	/*box-shadow: 0px 0px 0px rgba(255,80,80,.5);*/
}
input:hover, select:hover, textarea:hover {
	/*background-color: var(--color4-1);*/
}
input:not([type="submit"]):focus, select:focus, textarea:focus {
	background-color: rgba(255,255,255,0.2);
	box-shadow: 0px 0px 20px 0px var(--color1-5);
}

input[readonly] {
	filter: grayscale(50%);
	opacity: 0.5;
}

label {
	cursor: pointer;
	padding: 0.5em 1em;
	line-height: 3em;
	margin-bottom: 1em;
}


input[type="radio"] {
	/*display: none;*/
	opacity: 0;
	position: absolute;
}

input[type="radio"] + label {
	width: 100%;
	display: inline-block;
	cursor: pointer;
	position: relative;
    line-height: 1.1em;
	padding: 0em 0em 0em 2em;
}

input[type="radio"] + label::before {
	content: "";
	display: block;
	
	position: absolute;
	left: 0;
	top: 0;

	width: 1.2em;
	height: 1.2em;
	border-radius: 50%;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-align: center;
    line-height: 1em;

	margin-right: 10px;
	background-color: var(--color-gray1);
	box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, .2);
	vertical-align: middle;
}

input[type="radio"]:checked + label::before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	background-color: var(--color1);
}

input[type="radio"]:hover + label::before {
	box-shadow: inset 0 0 16px 0 rgba(0, 0, 0, .3);
}



input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + label {
	width: 100%;
	display: inline-block;
	cursor: pointer;
	position: relative;
    line-height: 1.1em;
	padding: 0em 0em 0em 2em;
}

input[type="checkbox"] + label::before {
	content: "";
	display: block;
	
	position: absolute;
	left: 0;
	top: 0;

	width: 1.2em;
	height: 1.2em;
	border-radius: 4px;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-align: center;
    line-height: 1em;

	margin-right: 10px;
	background-color: var(--color-gray1);
	box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, .2);
	vertical-align: middle;
}

input[type="checkbox"]:checked + label::before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	background-color: var(--color1);
}

input[type="checkbox"]:hover + label::before {
	box-shadow: inset 0 0 16px 0 rgba(0, 0, 0, .3);
}




/* table */

table {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	border-spacing: 0px;
}

table.list {
	padding: 2px 4px;
	margin: auto;
}

table.border td {
	border: 1px solid #888;
}

table.rows td {
	border-bottom: 1px solid #bbb;
}

tr {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
}

td {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	padding: 0px;
}

.list0 td {
	padding: 0px 0px;
}

.list td, .list th {
	padding: 4px 4px;
}

form td {
	padding: 4px 4px;
}

th {
	font-size: smaller;
	font-family: inherit;
	color: inherit;
	border: 0px;
	background-color: var(--color-gray1);
	padding: 4px 2px;
	border-right: 1px solid #fff;
}

table.highlight tr:hover,
tr.highlight:hover {
	background-color:  var(--color-gray1);
}








/*  */

.admin_stat {
	opacity: 0;
	left: -999px;
	position: fixed;
	font-size: 70%;
	top: 200px;
	text-align: left;
	color: #000;
	z-index: 2000;
	padding: 10px;
	background-color: rgba(128,128,128,.2);


	animation-name: fade_out;
	animation-duration: 4s;
	animation-timing-function: ease-in;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
}

.login {
	position: absolute;
	top: 1em;
	right: 1em;
	z-index: 9999;
	
	text-align: right;
	color: #000;
	font-size: 80%;
	padding: 0.5em 0em;
}



.white_text {
	color: #fff;
}
.white_text a,
.white_text h1,
.white_text h2,
.white_text h3 {
	color: #fff;
}
.white_text a:hover {
	color: var(--color-gray2);
}

.gray {
	opacity: 0.5;
}

.color0 {
	color: #000;
}

.color1 {
	color: var(--color1);
}

.color2 {
	color: var(--color2);
}

.color3 {
	color: var(--color3);
}

.color_gray2 {
	color: var(--color-gray2);
}

.light {
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
}

.medium {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

.huge {
	font-size: 150%;
}

.sm {
	font-size: 80%;
}

.img_bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg_color1 {
	background-color: var(--color1);
}

.bg_color2 {
	background-color: var(--color2);
}

.bg_color3 {
	background-color: var(--color3);
}

.bg_color4 {
	background-color: var(--color4);
}

.bg_tint {
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: multiply;
}

.bg_light {
	background-color: var(--color1-2);
}

.bg_gray1 {
	background-color: var(--color-gray1);
}

.border_gray2 {
	border: 1px solid var(--color-gray2);
}

.black {
	background-color: var(--color3);
	color: #fff;
}

.black a {
	color: var(--color4);
}

.mh100 { max-height: 100vh; }
.mh80 { max-height: 80vh; }

.hidden {
	display: none;
}


.button_more {
	display: block;
	width: auto;
	padding: 5px 0;
	background-color: rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 1);
	text-decoration: none;
	text-align: center;
	margin: 1em;
	
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.05);
			box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.button_more:hover {
	color: #000;text-decoration: none;
	background-color: rgba(0, 0, 0, 0.2);
}

.round {
	border-radius: 50%;
}

/*.text_big {
	font-size: 20px;
}*/



/* modal */

.modal {
	display: none;
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	z-index: 9999;
	padding-top: 100px;
}

.modal_bg {
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.7);
	overflow: auto;
}

.modal_card {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
}

.modal_container {
    position: relative;
}

.close_modal {
	position: absolute;
	top: 0.2em;
	right: 0.2em;
	cursor: pointer;
	transition: 200ms;
}
.close_modal:hover {
	transform: scale(1.3);
}
.close_modal img {
	width: 2em;
	height: 2em;
	display: block;
}


/* slider */


.slick-dots {
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 1;
	position: relative;
	padding: 0;
}

.slick-dots li::before {
	content: '';
}


.slick-dots li {
	display: block;
	width: 1em;
	height: 0.3em;
	margin: 0.3em;
	background-color: var(--color1-3);
	border-radius: 2px;
	border: 0px solid var(--color1);
	cursor: pointer;
}

.slick-dots li.slick-active {
	background-color: var(--color1);
}

.slick-dots li:hover {
	background-color: var(--color1-5);
}

.slick-dots button {
	display: none;
}

.slick-slide {
	outline: none;
}

.slick-prev {
	position: absolute;
	left: 0;
	top: -95px;
	padding: 0em;
	cursor: pointer;
	z-index: 100;
}

.slick-next {
	position: absolute;
	right: 0;
	top: -95px;
	padding: 0em;
	cursor: pointer;
	z-index: 100;
}

.slick-prev img,
.slick-next img {
	height: 193px;
}





/* сайт */

.menu_top {
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 2rem 0rem;
	color: #fff;
	z-index: 9998;
    font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}
.menu_top a.menu {
	color: var(--color3);
	padding: 0.5rem 0.5rem;
}
.menu_top a.menu:hover {
	color: var(--color2);
}
.menu_selected {
	color: var(--color2);
}
.menu_top_w a.menu {
	color: #fff;
}
.menu_top_w a.menu:hover {
	color: var(--color-gray2);
}




.menu_mobile {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	padding: 0;
	margin: 0;
	z-index: 100000;
}

.menu_mobile li {
	display: block;
}

.menu_mobile a {
	display: block;
	padding: 1em 1em 1em 1em;
	color: #000;
}

.menu_mobile_links {
	position: absolute;
	top: 2em;
	right: 1em;
	width: auto;
}



.tab {
	padding: 0.1em 0.3em;
	border-radius: 0px;
	border-bottom: 2px solid var(--color1);
}
.tab:hover {
	background-color: var(--color1-5);
	color: #fff !important;
	border-radius: 4px;
}
.tab_selected {
	padding: 0.1em 0.3em;
	border-radius: 4px;
	background-color: var(--color1);

}
.tab_selected:hover {
	background-color: var(--color1);
	color: #fff !important;
}


a .card {
	color: #000;
}
a .card h3 {
	color: var(--color1);
}

.white_text a .card {
	color: #fff;
}

.required {
	color: #f00;
}


.news_img_block {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.news_img_block img {
	max-height: 200px;
	margin-bottom: 1em;
	margin-right: 1em;
}


.anketa .card {
	padding: 1em 1em 1em 1em;
	margin-bottom: 1em;
}

.anketa {
	background-color: var(--color1-3);
}
input.anketa_question {
	font-weight: bold;
}
.anketa input,
.anketa textarea,
.anketa select {
	border-color: var(--color1-3);
}

video {
	max-width: 100%;
}

.video iframe {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

a.auth {
	display: inline-block;
	padding: 0.5em 1em;
	border-bottom: 1px solid var(--color-gray1);
	color: var(--color-gray1);
	font-weight: bold;
}
a.auth_active, a.auth:hover {
	color: var(--color1);
	border-bottom: 4px solid var(--color1);
}

.login_1 {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.login_2 {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}


.main1 {
	background-image: url(/files/site/main1.jpg);
	min-height: 100vh;
	background-color: rgba(44, 44, 44, 0.67);
	background-blend-mode: multiply;
}

.service_item {
	border-radius: 10px;
	background-color: var(--color-gray1);
	background-position: center right;
	background-size: contain;
	background-repeat: no-repeat;
	height: 100%;
	padding: 2rem 1rem;
	transition: 200ms;
}

.service_item * {
	transition: 200ms;
}

.service_item:hover {
	background-color: var(--color2);
	color: #fff;
}

.service_item .service_title {
	display: inline;
	opacity: 1;
}
.service_item:hover .service_title {
	display: none;
	opacity: 0;
}

.service_item .service_price {
	display: none;
	opacity: 0;
}
.service_item:hover .service_price {
	display: inline;
	opacity: 1;
}

.service_bg {
	background-image: url(/files/site/service_bg.jpg);
	background-position: bottom right;
	background-repeat: no-repeat;
}

.about_item {
	background-color: #fff;
	border-radius: 10px;
	padding: 1rem;
	height: 100%;
}

.portfolio_main1_slider .slick-list {
	padding-right: 180px;
}

.portfolio_main2_slider .slick-list {
	padding-right: 100px;
}

.portfolio_main1 {
	width: 100%;
	aspect-ratio: 3 / 4;
	position: relative;
	border-radius: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.portfolio_main1_text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: auto;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background: rgba(255, 255, 255, 0.5);
	padding: 1rem;
}

.portfolio_main2 {
	width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
	border-radius: 10px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

hr.white {
	background-color: #fff;
	opacity: 1;
}

.main_px {
	padding-left: 6rem;
	padding-right: 6rem;
}

.main_l {
	padding-left: 6rem;
}

.portfolio_all_slider {
	position: relative;
}

.portfolio_all_img {
	width: 100%;
	aspect-ratio: 3 / 4;
	position: relative;
	border-radius: 10px;
	object-fit: cover;
}

.portfolio_all_slider .slick-list {
	z-index: 1;
	position: relative;
}

.portfolio_all_slider .slick-slide {
	transform: scale(0.9);
	transition: 500ms;
}

.portfolio_all_slider .slick-current {
	transform: scale(1);
}

.gallery-next {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1rem;
	width: auto;
	display: flex;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}

.gallery-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1rem;
	width: auto;
	display: flex;
	align-items: center;
	z-index: 3;
	cursor: pointer;
}

input[type='range'] {
	-webkit-appearance: none !important;
	background: var(--color-gray2);
	height: 2px;
	border: 0;
	padding: 0;
	box-shadow: none;
}
input[type='range']:focus {
	-webkit-appearance: none !important;
	background: var(--color-gray2);
	height: 2px;
	border: 0;
	padding: 0;
	box-shadow: none;
}

input[type='range']::-webkit-slider-runnable-track {
	-webkit-appearance: none !important;
	background: var(--color-gray2);
	height: 2px;
	border: 0;
	padding: 0;
	box-shadow: none;
}
input[type='range']::-moz-range-track {
	-webkit-appearance: none !important;
	background: var(--color-gray2);
	height: 2px;
	border: 0;
	padding: 0;
	box-shadow: none;
}
input[type='range']::-webkit-slider-thumb {
	-webkit-appearance: none !important;
	background: var(--color1);
	height: 38px;
	width: 38px;
	border: 0;
	border-radius: 50%;
	top: -19px;
	position: relative;
}
input[type='range']::-moz-range-thumb {
	-webkit-appearance: none !important;
	background: var(--color1);
	height: 38px;
	width: 38px;
	border: 0;
	border-radius: 50%;
}

.news_item {
	display: block;
	color: #fff;
	aspect-ratio: 16 / 9;
}

.news_slider .news_item {
	margin-right: 1em;
}

.news_bg {
	color: #fff;
	border-radius: 4px;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 1rem;
	display: flex;
	align-items: flex-end;
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: multiply;
	height: 100%;transition: 500ms;
}

.news_bg:hover {
	background-color: rgba(0, 0, 0, 0.3);
}

.news_slider .slick-list {
	padding-right: 100px;
}

.news_img_slider_photo {
	border-radius: 10px;
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
	object-fit: cover;
}

.news_main_img {
	width: 100%;
	aspect-ratio: 21 / 9;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 20px;
}

.stage_0 {
	height: 6px;
	width: 100%;
	background-color: var(--color-gray1);
}

.stage_1 {
	height: 6px;
	width: 100%;
	background-color: var(--color2);
}

.stage_current {
	height: 25px;
	width: 25px;
	border-radius: 50%;
	background-color: var(--color2);
}

#cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: transparent;
	padding: 2rem 2rem 1rem 2rem;
	text-align: start;
	z-index: 9997;
	justify-content: center;
}

#decline-cookies {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	width: auto;
	padding: 0 0.5rem;
	border-radius: 0.5rem;
}

.cookie-card {
	background-color: rgba(0, 0, 0, 0.8);
	width: 500px;
	max-width: 100%;
	position: relative;
	padding: 1rem 0.5rem 0 0.5rem;
	border-radius: 1rem;
	font-size: 80%;
}

.logo {
    display: block;
    height: 70px;
}







/* xxl */
@media screen {
	.video iframe {
		width:  900px;
		height:  506px;
	}
}

@media screen and (max-width: 1800px) {
	
}

/* xl */
@media screen and (max-width: 1400px) {
	.main_px {
		padding-left: 4rem;
		padding-right: 4rem;
	}

	.main_l {
		padding-left: 4rem;
	}

	.portfolio_main1_slider .slick-list {
		padding-right: 150px;
	}
}

/* lg */
@media screen and (max-width: 1200px) {
	.main_px {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.main_l {
		padding-left: 2rem;
	}

	.portfolio_main1_slider .slick-list {
		padding-right: 100px;
	}
}

/* md */
@media screen and (max-width: 992px) {
	.video iframe {
		width:  750px;
		height:  422px;
	}


	.portfolio_main1_slider .slick-list {
		padding-right: 70px;
	}
}

/* sm */
@media screen and (max-width: 768px) {
	.video iframe {
		width:  550px;
		height:  309px;
	}
	
	.main_px {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	
	.main_l {
		padding-left: 1rem;
	}
}

/* xs */
@media screen and (max-width: 576px) {
	.video iframe {
		width:  100vw;
		height:  56.25vw;
	}

}






