@charset "utf-8";
/* CSS Document */
.sub-page-main-container{ 
	width: 80%; 
	margin: 10% auto; 
}
.sub-page-top{
	margin-top: 1%;
	display: flex; 
	height: 40vh;
}
.sub-page-top-left{
	flex: 3;
	background-color: var(--white);
}
.sub-page-top-left >div{
	flex-direction:row;
}
.sub-page-top-left-inside h1{
	position:relative;
	font-size:5vh;
	color:var(--text);
	font-weight:500;
	margin-top: 0;
}
.sub-page-top-left-inside h2{
	font-size:3vh;
	color:var(--blue);
	font-weight:bold;
}
.sub-page-top-left-inside p{
	font-size:2.5vh;
	color:var(--text);
}
.sub-page-top-right{
	flex: 4;
	background-color: var(--white);
	margin-top: 10px;
	overflow: hidden; 
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.sub-page-bottom{
	margin-top: 3vh;
	display: flex;
	flex-direction:row;
	height: auto;
	margin:10% auto;
}
.sub-page-bottom >div{
	flex:1;
	margin:1vh;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	border-radius:8px;
	padding:8px;
	background-color: var(--white);
	color: var(--text);
}
.wrap{
	max-width:80%;
	margin:0 auto
}
h1{
	color:var(--text);
	margin-top:2%;
	font-weight:500;
	font-size:3vw;
	padding-left:1%;
}
form{
	display:grid;
	gap:14px;
	padding:18px
}
.row{
	display:flex;
	flex-direction:column;
	gap:6px
}
.row a{
	color:var(--blue);
	text-decoration:none;
}
.row a:hover{
	color:var(--orange);
	text-decoration:underline;
}

input,textarea{
	padding:12px 14px;
	border:1px solid var(--grey);
	border-radius:10px;
	font-size:16px
}
.textarea{
	min-height:140px;
	resize:vertical
}
.actions{
	display:flex;
	gap:10px;
	align-items:center;
	flex-wrap:wrap
}
.btn{
	background:var(--orange);
	color:#fff;
	border:none;
	border-radius:10px;
	padding:12px 16px;
	font-weight:700;
	cursor:pointer
}
.err{
	color:var(--red);
}
.hp{
	position:absolute;
	left:-9999px;
	opacity:0;
	height:0;
	width:0;
	overflow:hidden
}
.note{
	font-size:.95em;
	color:var(--white);
}
.about-our-colleagues {
	display:flex;
	flex-wrap:wrap;
}
.about-our-colleagues .col{
	box-sizing:border-box;
	flex:0 0 23%;
	padding:10px;  
	border:solid 1px #cccccc;
	border-radius:8px;
	margin:1%
}
.about-our-colleagues .col img{
	max-width: 90%;
	height: auto;
	margin:0 auto;
}
@media (max-width: 768px) {
  .sub-page-top { 
	  flex-direction: column; 
	  height: auto; }
	.sub-page-bottom { 
	  flex-direction: column; 
	  height: auto; }
}
@media (max-width: 768px){
  .about-our-colleagues .col{ flex:0 0 100%; }
}

