/* ADAPTIVE + MAIN STYLES */
main {
  padding: 30px 0;
  min-height: 500px; }

.container {
  max-width: 1200px !important;}

.menu .container{
  min-width: 1300px !important;
}

.main-links {
  font-size: 20px;
  color: #000;
  font-family: 'Lato', sans-serif;
  font-weight: 300; }

.main-links:hover {
  color: #000; }

.main-links.noactive:hover {
  color: #0288d1; }

.main__section1 {
  margin: 30px 0; }

.main__section1__block1 img {
  height: auto; }

.main__section1__block2 {
  margin-left: 30px; }

.main__section1__block2 h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  font-size: 22px; }

.bold-lato {
  font-size: 17px;
  color: #575757;
  font-family: 'Lato', sans-serif;
  font-weight: 700 !important;
  margin-bottom: 0 !important; }

.main__section1__block2 p {
  padding: 15px 0 !important;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #575757;
  font-size: 17px; }

.block__black {
  min-height: 165px !important;
  background-color: #1c1c1c;
  min-width: 440px; }

.block__blue {
  min-height: 165px !important;
  background-color: #2d7fc2;
  width: 100%; }

.block__black__row {
  padding: 28px 40px; }

.block__black__row ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  line-height: 2.2rem; }

.block__blue__row {
  padding: 40px 50px; }

.block__blue__row ul {
  margin-bottom: 0;
  padding-left: 0;
  line-height: 2.2rem; }

.block__blue-list {
  list-style: none; }

.block__blue-list span {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff; }

.span-bold {
  font-weight: 700 !important; }

.ul-border {
  border-right: 1px solid white;
  border-left: 1px solid white;
  padding-left: 50px !important;
  padding-right: 50px !important;
  margin: 0 50px; }

.block__blue-list a {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff; }

.main__section2-block2 h3 {
  font-size: 17px;
  font-family: 'Lora', sans-serif;
  font-weight: 700;
  color: #000;
  text-transform: uppercase; }

.main__section2-block2 p {
  margin-top: 22px;
  font-size: 17px;
  font-family: 'Lora', sans-serif;
  font-weight: 400;
  color: #575757; }

.main__section3 {
  margin: 30px 0; }

.main__section3-block1 {
  margin-right: 30px;
  padding: 30px 50px;
  background-color: #e9e9e9; }

.main__section3-block1 h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: #000; }

.main__section3-block1 ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important; }

.main__section3-block1 ul li {
  list-style: none; }

.img-block {
  margin: 0 !important;
  padding: 0 !important; }

.main__section3-block1 ul li p {
  color: #000;
  margin-bottom: 5px !important;
  margin-left: 13px;
  font-size: 16px;
  font-family: 'Lora', sans-serif;
  font-weight: 300; }

.main__section3-block2 img {
  height: 100%;
  margin-right: 30px; }

.main__section3-block2 {
  margin-right: 30px; }
 
.search_conteiner { position: relative; height: 24px; } 
.search_conteiner .search {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 30px; 
    border-radius: 50%;
    transition: all 1s;
    z-index: 4;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
    // box-shadow: 0 0 25px 0 crimson;
	background: #000;
	border: none;
}
.search_conteiner .search:hover { cursor: pointer; }
.search_conteiner .search::before {
      content: "";
      position: absolute;
      margin: auto;
    top: 12px;
    right: 0;
    bottom: 0;
    left: 8px;
    width: 8px;
      height: 2px;
      background: white;
      transform: rotate(45deg);
      transition: all .5s;
}
.search_conteiner .search::after {
      content: "";
      position: absolute;
      margin: auto;
      top: -5px;
      right: 0;
      bottom: 0;
      left: -5px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      border: 2px solid white;
      transition: all .5s;
}
.search_conteiner input { 
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 30px;
    outline: none;
    border: none;
    // border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: #fff;
    color: #000; 
    padding: 0 0 0 20px;
    border-radius: 30px;
    box-shadow: 0 0 25px 0 #fff,
                0 20px 25px 0 rgba(0, 0, 0, 0.2);
    // box-shadow: inset 0 0 25px 0 rgba(0, 0, 0, 0.5);
    transition: all 1s;
    opacity: 0;
    z-index: 5;
    font-weight: bolder;
    letter-spacing: 0.1em;
}
.search_conteiner input:hover { cursor: pointer; }
.search_conteiner input:focus {
      width: 300px;
	  left:-270px;
      opacity: 1;
      cursor: text;
    }
.search_conteiner input:focus ~ .search {
      right: -0px;
      background: #151515;
      z-index: 6;
}
.search_conteiner  input::before {
        top: 0;
        left: 0;
        width: 25px;
      }
.search_conteiner input::after {
        top: 0;
        left: 0;
        width: 25px;
        height: 2px;
        border: none;
        background: white;
        border-radius: 0%;
        transform: rotate(-45deg);
      }
.search_conteiner input::placeholder {
      color: white;
      opacity: 0.5;
      font-weight: bolder;
}
.main__section3-list .img-block img {
	max-width: 20px !important;
}
   
@media (max-width: 1200px) {
  .main__section1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .main__section1__block1{
	  min-width: 100% !important;
	  max-width: 100% !important;
   }		
  .main__section1__block1 img {
    width: 100%; }
  .main__section1__block2 {
    margin-left: 0;
    margin-top: 30px; }
  .main__section3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .main__section3-block2 {
    margin-top: 30px; } 
  .main__section3-block1{
    margin-right: 0; }
  .main__section3-block2 img {
	margin-right: 0; }
  }

@media (max-width: 1050px) {
  .black-blue-blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .block__black__row {
    padding: 40px 40px;
    width: 400px;
    margin: 0 auto; }
  .block__blue__row {
    width: 700px;
    margin: 0 auto; } }

@media (max-width: 712px) {
.feedback2 p { display:none; height: 0px!important; }
.feedback2 h2 { 
font-size: 20px; }
  .block__blue__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 15px;
    width: 100%; }
  .block__blue__row ul {
    text-align: center; }
  .ul-border {
    text-align: center;
    border-right: 0;
    border-left: 0;
    padding: 30px 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 30px !important;
    margin-top: 30px !important; } }

@media (max-width: 470px) {
  .block__black {
    min-width: 100%; }
  .block__black__row {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .block__black__row ul {
    margin-left: 0 !important;
    text-align: center; } }

