/* Theming */

:root{
    --white: #f9f9f9;
    --black: #36383F;
    --grey: #85888C;
}

/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Verdana', 'Arial', sans-serif;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

/* Header */
.header{
    background-color: #1d1d2c;
    position: sticky;
    top: 0;
    width: 100%;
}

/* Logo */
.logo{
    display: inline-block;
    color: #fff;
    font-size: 20px;
    margin: 0px 0 10px 10px;
	padding-top:16px;
	 line-height:0.7;
	 height:50px;

}

/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color:#1d1d2c;
    overflow: hidden;
    
}

.menu a{
    display: block;
    padding: 20px;
    color: #fff;

}

.menu a:hover{
    background-color: #8c90a5;
}

.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon */

.hamb{
    cursor: pointer;
    float: right;
    padding: 30px 20px;
}


.hamb-line {
    background:#222;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
    
}

.hamb-line::before,
.hamb-line::after{
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before{
    top: 5px;
}

.hamb-line::after{
    top: -5px;
}


.side-menu {
    display: none;
}

/* Toggle menu icon */

.side-menu:checked ~ nav{
    max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;

}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}



.h1 {color:#272736; font-size:32px; padding:5px; text-align:center;}
.font1 {font-size:12px; color:#64687d; padding-left:10px;}
.font3 {font-size:12px; color:#64687d;  width:49%; float:left;}
.font4 {font-size:12px; color:#64687d; float:left; padding-top:15px; width:25%; text-align:center;}
.font5 {font-size:12px; color:#64687d;  width:49%; float:left; padding-top:15px; text-align:center;}
.form1 {width:100%; height:45px; font-size:18px; padding:10px; border-radius:5px; border:1px solid #408edd; background-color:#f5f5f5; color:#222; }
.select2 {width:49%; height:45px; font-size:18px; padding:10px; border-radius:5px; border:1px solid #408edd; background-color:#f5f5f5; color:#222;}
.button1 {border:1px solid #408edd; color:#fff; background-color:#408edd; padding:12px; border-radius:3px; font-size:18px; width:95%; margin: 0 10px 0 10px;}
.searchform {margin-top:10px; padding:10px; border-radius:15px; background-color:#fff; border:10px solid #f8f9fc;}
.href1 {font-size:18px; color:#408edd; padding:10px 0 0px 10px; display:block;}
.href2 {font-size:14px; color:#222; padding:0px 0 5px 10px;}
.href2 {font-size:14px; color:#222; padding:0px 0 5px 10px;}
.span1 {color:#222;}
	.div3{width:25%; float:left;  text-align:center;}
	.div4{width:49%; float:left;  text-align:center;}

	.bgmain {  
		background-image: url(/img/noroot.png);
		background-size: cover;
		position: relative;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		height:600px;
	}

.form-user {width:95%; height:45px; font-size:18px; padding:10px; margin:0 10px 0 10px; border-radius:5px; border:1px solid #4d7fb0; background-color:#f5f5f5; color:#222; }
.form-user-text {width:100%; height:245px; font-size:18px; padding:10px; border-radius:5px; border:1px solid #4d7fb0; background-color:#f5f5f5; color:#222; }

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}



.search {
  display: inline-flex;
  border:2px solid #408edd;
  border-radius: 5px;
  padding: 10px;
  margin:20px 10px 0 10px;
  width:95%;
  background-color:#fff;
  height:45px; font-size:18px;
}

.search-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  order: -1;
  
}

.search-field {
  width: 300px;
  border: 0; 
 font-size:18px;
}

.search-field:focus {
  outline: none;
}

.search-field:focus + .search-icon {
  /* стили для иконки при фокусе поля */ 
}
:focus::-webkit-input-placeholder {
  color: transparent
}

:focus::-moz-placeholder {
  color: transparent
}

:focus:-moz-placeholder {
  color: transparent
}

:focus:-ms-input-placeholder {
  color: transparent
}


/* Responsiveness */

@media (min-width: 768px) {
    .nav{max-height: none; top: 0; position: relative; float: right; width: fit-content; background-color: transparent;}
    .menu li{float: left;}
    .menu a:hover{background-color: transparent; color:#8c90a5;}
    .hamb{display: none;}


	.div50{width:50%; float:left;  padding-right:10px;}
	.div3{width:25%; float:left;  text-align:center;}
	.div4{width:49%; float:left;  text-align:center;}
	.div16{width:16.5%; float:left;  padding-right:10px;}
	.div32{width:34%; float:left;  padding-right:10px;}
	
	.h1 {
		width:100%; 
		float:left; 
		display:block; 
		margin-top:200px;
		font-size:46px;
		padding:0px;
		 text-align:left;
		
	}
	.font1 {font-size:12px; color:#64687d; padding-left:0px;}
	.button1 {margin:25px 0 0 0; width:250px; padding:12px; border-radius:3px; font-size:18px;}
	.searchform { border:10px solid #f8f9fc; padding:10px; margin-top:70px; border-radius:15px; background-color:#fff;}
	.bgmain {  
		background-image: url(/img/noroot.png);
		background-size: cover;
		position: relative;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		height:600px;
	}


.form-user {width:100%; height:45px; font-size:18px; padding:10px; border-radius:5px; border:2px solid #408edd; background-color:#f9fafc; color:#222; }
.form-user-text {width:100%; height:245px; font-size:18px; padding:10px; border-radius:5px; border:1px solid #4d7fb0; background-color:#f5f5f5; color:#222; }

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}



.search {
  display: inline-flex;
  border:2px solid #408edd;
  border-radius: 5px;
  padding: 10px;
  margin:20px 0 0 0;
  width:100%;
  background-color:#fff;
  height:45px; font-size:18px;
}

.search-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  order: -1;
  
}

.search-field {
  width: 300px;
  border: 0; 
 font-size:18px;
}

.search-field:focus {
  outline: none;
}

.search-field:focus + .search-icon {
  /* стили для иконки при фокусе поля */ 
}


}