*
{
  box-sizing: border-box;
  min-width:1px;
}

h1,h2,h3,h4
{
  font-size: 41px;
}

.header-text
{
  position:relative;
  display: inline-block;
}

.header-text:after
{
  content:"";
  width:100%;
  display: block;
  height:5px;
  margin-top:15px;
  background:#fb511b;
}

body
{
  font-family: Tahoma;
  font-size: 16px;
  margin:0;
  padding:0;
}

.logo
{
  display:flex;
  /* background: #2195f3; */
}

.menu-logo
{
  display:flex;
  align-items: center;
}

.logo img
{
  /* width: 50px; */
  /* height: 50px; */
  margin-right:15px;
  position: relative;
  top: 2px;
}
.logo .logo-text p
{
  margin-top:0px;
  margin-bottom:0;
}

.logo .logo-text p:first-child
{
  font-size:21px;
  font-weight:600;
  text-shadow: 0px 1px 0px #000;
  text-transform: uppercase;
}
.logo a
{
  color:#fff;
  text-decoration:none;
}
.logo .logo-text p:last-child
{
  font-size: 15px;
  margin-top: 12px;
  color: #fff;
}

.wrapper
{
  max-width:1100px;
  margin:0 auto;
}

header
{
  padding-top: 15px;
  padding-bottom: 15px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 9;
  /* box-shadow: -1px 3px 6px #000; */
}

header .menu ul
{
  list-style:none;
}

header .menu ul li
{
  display:inline-block;
}
header .menu ul li+li
{
  margin-left:15px;
}

button.open-menu 
{
    position: absolute;
    top: 13px;
    right: 18px;
    background: none;
    border: 0;
    padding: 4px 9px;
    cursor: pointer;
    display: none;
}

.email a 
{
  color:#35a5e6;
  text-decoration:none;
}

button.open-menu .line {
    display: block;
    height: 4px;
    background: #ffffff;
    margin-top: 5px;
    margin-bottom: 7px;
    width: 31px;
    border-radius: 5px;
}

header .menu ul li a 
{
  color: #000;
  text-decoration:none;
  text-transform:uppercase;
  /* text-shadow: 0px 1px 0px #000; */
}

header .menu ul li a.active
{
  font-weight:600;
}

header .menu ul li a:hover
{
  color: #2195f3;
  /* text-decoration: underline; */
}

header .wrapper
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section#home
{
  background: url('../images/bg1.jpg') no-repeat;
  background-position: top left;
}

section#home .wrapper
{
  height: 100vh;
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

section#home .wrapper .text,
section#home .wrapper .image{
}

section#home .wrapper .text
{
  border:10px solid #fb511b;
  padding:25px;
}

section#home h1
{
  font-size:42px;
  color: rgb(251, 81, 27);
  text-shadow: 0px 1px 0px #fff;
  text-transform: uppercase;
  text-align: center;
}

section#home p
{
  font-size:25px;
  /* color:#fff; */
  text-align: center;
  text-shadow: 0px 1px 0px #fff;
}

section#home .more
{
  padding:5px 25px;
  border:0;
  border-radius:25px;
  background: -o-linear-gradient(90deg,#fb251f 0,#fc5719 50%,#fe981c 100%);
  background: -webkit-gradient(linear,left top,right top,from(#fb251f),color-stop(50%,#fc5719),to(#fe981c));
  background: -webkit-linear-gradient(left,#fb251f 0,#fc5719 50%,#fe981c 100%);
  background: -o-linear-gradient(left,#fb251f 0,#fc5719 50%,#fe981c 100%);
  background: linear-gradient(90deg,#fb251f 0,#fc5719 50%,#fe981c 100%);
  background: -webkit-linear-gradient(90deg,#fb251f 0,#fc5719 50%,#fe981c 100%);
  -webkit-box-shadow: 0 10px 30px 0 rgba(251,50,29,.5);
  box-shadow: 0 10px 30px 0 rgba(251,50,29,.5);
  
  -webkit-transition: -webkit-box-shadow .1s linear;
  
  transition: -webkit-box-shadow .1s linear;
  -o-transition: box-shadow .1s linear;
  transition: box-shadow .1s linear;
  transition: box-shadow .1s linear,-webkit-box-shadow .1s linear;
  font-size: 35px;
  text-transform:uppercase;
  cursor:pointer;
  color: #fff;
  text-decoration:none;
  display: table;
  margin: 0 auto;
}

.t-cover__arrow-wrapper_animated {
  animation: t-arrow-bottom 1.7s infinite ease;
}
@-webkit-keyframes t-arrow-bottom {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -webkit-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  55% {
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -webkit-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes t-arrow-bottom {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -webkit-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  55% {
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -webkit-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
section#services 
{
  box-shadow: inset 0px 4px 5px rgba(0, 0, 0, 0.52);
}
section#services .wrapper
{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 800px;
}
section#services .col50
{
  display:flex;
  justify-content: space-between;
}

section#services .col50 .text
{
  width: 50%;
  padding: 15px;
  /* border:1px solid #000; */
  margin: 10px;
  /* background: #fff; */
  /* border-radius: 10px; */
  /* box-shadow: 0 15px 30px 0 rgba(34,37,98,.15); */
}

section#services .col50 .text:first-child
{
  /* background:#20bcb3; */
}

section#services .col50+.col50 .text:last-child
{
  /* background:#fdd206; */
}

section#services .col50+.col50 .text:first-child
{
  /* background:#ef4f99; */
}

section#services .col50 .text:last-child
{
  /* background:#2196F3; */
}

section#services .col50 .text .icon
{/* padding: 25px; *//* background: #ffeeed; *//* border-radius: 15px; */display: flex;/* justify-content: space-between; */align-items: center;}

section#services .col50 .text
{
  /* display:flex; */
  /* align-items:center; */
  line-height:25px;
  font-size: 16px;
}

section#services .col50 .text .icon i 
{
  font-size: 50px;
  /* margin-right:25px; */
  color: #fb511b;
  /* text-shadow:0px 1px 0px #000; */
  display: block;
  /* width: 90px; */
  /* height: 50px; */
  flex-basis: 20%;
}

section#services .col50 strong
{
  font-size: 18px;
  color: #35a5e6;
  /* position: relative; */
  /* top: 6px; */
  display: block;
  flex-basis: 60%;
}

#service-list
{
  background:url('../images/services-item-1.jpg') no-repeat right;
  background-size:cover;
  position:relative;  
}

#service-list:before
{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
background-image: -moz-linear-gradient(top, rgba(0,0,0,0.80), rgba(0,0,0,0.40));
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.80), rgba(0,0,0,0.40));
    background-image: -o-linear-gradient(top, rgba(0,0,0,0.80), rgba(0,0,0,0.40));
    background-image: -ms-linear-gradient(top, rgba(0,0,0,0.80), rgba(0,0,0,0.40));
    background-image: linear-gradient(top, rgba(0,0,0,0.80), rgba(0,0,0,0.40));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#33000000', endColorstr='#99000000');  
}

section#service-list .wrapper{
  display:flex;
  height: 800px;
  justify-content:space-between;
  align-items:center;
  position: relative;
  color: #fff;
  text-shadow: 0px 1px 0px #000;
}

section#service-list .wrapper>div{
  width:100%;
}

section#service-list .list ul
{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

section#service-list .list-content
{
  display:none;
  border-top: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  -webkit-box-shadow: 0 15px 30px 0 rgba(34,37,98,.15);
  box-shadow: 0 15px 30px 0 rgba(34,37,98,.15);
  background-color: #fff;
  padding:15px;
  background: url(../images/services-item-1.jpg) no-repeat right;
  color: #20224a;
}

section#service-list ul
{
  list-style:none;
  padding:0;
  margin: 0;
}

section#service-list .list>ul li{
  /* padding: 10px 30px; */
  /* background-color: #fff; */
  height: 104px;
  cursor:pointer;
  text-transform:unset;
  font-weight:600;
  width:20%;
}

section#service-list .list>ul li>div:first-child
{
  font-size:45px;
  color: #f3f3f2;
  margin-bottom:25px;
  padding-bottom:25px;
  border-bottom: 2px solid #35a5e6;
  text-align:center;
}

section#service-list .list>ul li>div:last-child
{
  text-align:center;
  font-weight:normal;
  font-size:21px;
}

section#service-list .list>ul li.active i
{
 
}
section#service-list .list>ul li i 
{
  font-size:35px;
  margin-right:15px;
}

section#service-list .inner
{
  /* display:flex; */
  /* justify-content:space-between; */
  padding-top:15px;
  padding-bottom:15px;
  width: 100%;
}

section#review
{
  background: #f6f5f3;
}

section#review>.wrapper
{
  display:flex;
  align-items:center;
  height: 600px;
}

section#review>.wrapper .review
{
  width:100%;
}

section#review>.wrapper .slides>li
{
  position:relative;
  /* background: #fff; */
}

section#review .review-content {
  font-size: 36px;
  position:relative;
  padding-top: 40px;
  width:100%;
  display: block;
  color: #fff;
  /* text-shadow: 0px 1px 0px #000; */
}

section#review .review-content
{
  display:flex;
}
section#review .review-content .ava
{
  
margin-right:15px;
  
width: 20%;
  
border-radius: 50%;
  
overflow: hidden;
  
width: 200px;
  
height: 200px;
}

section#review .review-content .ava img
{
  width:200px;
  height:230px;
}

section#review .review-content .text
{
  width: 70%;
  color: #000;
}

section#review .slides>li:before,
section#review .slides>li:after
{
  content:"\f10d";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display:block;
  font-size: 36px;
  position:absolute;
  top: 0;
  left: 2px;
  color: #1c1e64;
}

section#review .slides>li:after{
  bottom: 20px;
  right:0;
  transform:rotate(-180deg);
}

section#review li .autor{
  font-size:18px;
  text-align:center;
  color: #000;
}

section#review h3
{
  text-align:center;
  /* color: #fff; */
  text-shadow: 0px 1px 0px #000;
}

.flexslider .flex-control-nav li
{
  display:inline-block;
  margin-left:25px;
}

.flex-control-paging li a 
{
    width: 11px;
    height: 11px;
    display: block;
    background: #666;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.flex-nav-prev, .flex-nav-next
{
  display:none;
}

section#about .wrapper
{
  display:flex;
  align-items: center;
  justify-content: center;
  height: 800px;
}

section#about img
{
  width: 500px;
  height: 333px;
  margin-right:25px;
}

section#about .wrapper .container
{
  /* display:flex; */
  /* justify-content:space-between; */
}

section#about
{   
   box-shadow: inset 0px 4px 5px rgba(0, 0, 0, 0.52);
   position:relative;
}

section#about .wrapper
{
  position:relative;
  z-index:1;
}

section#about:before
{
  content:"";
  display:block;
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:50%;  
  background: url('../images/about-bg.jpg') no-repeat right;
  background-size:cover;
}

section#about:after
{
  content:"";
  display:block;
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:50%;  
  background: url('../images/bg1.jpg') no-repeat left;
  background-size:cover;
}

section#about .wrapper .container .img,
section#about .wrapper .container .text
{
   /* width:45%; */
   background: rgba(255, 255, 255, 0.71);
   padding: 15px;
   border-radius: 5px;
}
section#about .wrapper .container .img, section#about .wrapper .container .text p
{
  line-height: 40px;
  font-size: 21px;
  /* background: #ccc; */
}
section#about .wrapper .container .text h3
{
  margin-top:0;
  line-height: 44px;
  margin-bottom: 20px;
  font-size: 32px;
  /* background: #ccc; */
}

section#contacts h3
{
  text-align:center;
  /* color: #fff; */
  /* text-shadow: 0px 1px 0px #000; */
  width: 100%;
}

section#contacts ul
{
  list-style:none;
  padding:0;
}
section#contacts .contact-container
{
  display:flex;
  align-items: flex-start;
  justify-content: space-between;
}
section#contacts .wrapper
{
  display:flex;
  flex-direction:column;
  justify-content:center;
  height: 800px;
}
section#contacts .wrapper .form
{
  width: 50%;
  margin: 0 auto;
  height:100%;
  padding: 15px;
  background: #fff;
  box-shadow: 0px 7px 30px 0 rgba(34, 37, 98, 0.59);
  border-radius: 5px;
}

section#contacts .wrapper .text
{
  width: 50%;
  height:100%;
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  justify-content: center;
  background: #ffeeec;
  padding: 15px;
  color: #000;
}

section#contacts .wrapper .text p:first-child
{
  font-size:30px;
  /* text-align:center; */
  /* color: black; */
}

section#contacts .wrapper .text p:last-child,
section#contacts .wrapper .text p:last-child a
{

line-height:30px;

color: #fff;
}

section#contacts
{
  /* background:#2294f3; */
  background: url('../images/services-item-3.jpg') no-repeat right;
  background-size: cover;
  box-shadow: inset 0px 4px 5px rgba(0, 0, 0, 0.52);
}
section#contacts textarea,
section#contacts input{
  width:100%;
  margin-bottom:15px;
  padding:10px 15px;
  box-shadow: inset 1px 1px 4px #ccc;
  border: 0;
}

section#contacts button {
  padding: 15px 50px;
  border:0;
  border-radius:25px;
  background: -o-linear-gradient(90deg,#fb251f 0,#fc5719 50%,#fe981c 100%);
  background: -webkit-gradient(linear,left top,right top,from(#fb251f),color-stop(50%,#fc5719),to(#fe981c));
  background: -webkit-linear-gradient(left,#fb251f 0,#fc5719 50%,#fe981c 100%);
  background: -o-linear-gradient(left,#fb251f 0,#fc5719 50%,#fe981c 100%);
  background: linear-gradient(90deg,#fb251f 0,#fc5719 50%,#fe981c 100%);
  background: -webkit-linear-gradient(90deg,#fb251f 0,#fc5719 50%,#fe981c 100%);
  -webkit-box-shadow: 0 10px 30px 0 rgba(251,50,29,.5);
  box-shadow: 0 10px 30px 0 rgba(251,50,29,.5);
  -webkit-transition: -webkit-box-shadow .1s linear;
  transition: -webkit-box-shadow .1s linear;
  -o-transition: box-shadow .1s linear;
  transition: box-shadow .1s linear;
  transition: box-shadow .1s linear,-webkit-box-shadow .1s linear;
  font-size: 21px;
  text-transform:uppercase;
  cursor:pointer;
  color: #fff;
  text-decoration:none;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.4588235294117647);
  display: table;
  margin: 0 auto;
}

footer
{
  background: #ffffff;
  overflow:hidden;
  /* color:#fff; */
  padding-top:15px;
  padding-bottom:15px;
  box-shadow: inset 0px 4px 5px rgba(0, 0, 0, 0.52);
}

footer a 
{
  color: #35a5e6;
}

footer .wrapper
{
  display:flex;
  justify-content:space-between;
  align-items: center;
}

footer .logo-text
{
  font-size:13px;
}

footer ul
{
  padding:0;
  margin:0;
  list-style:none;
}

footer ul li
{

}

.flexslider{
  width:100%;
  background: transparent;
  border: 0;
}

@media(max-width:768px) {
  button.open-menu  
  {
    display: block;
    background: #35a5e6;
  }
  header .wrapper
  {
    display:block;
    padding-right: 100px;
  }
  .menu-logo
  {
    display:block;
    padding-left: 17px;
  }
  header .email{
    display:none;
  }
  header
  {
    background:#fff;
  }
  header .menu ul li
  {
    display:block;
    width:100%;
  }
  header .menu ul li + li 
  {
    margin-left:0;
    margin-top:15px;
  }
  header .menu 
  {
    height:0;
    overflow:hidden;
  }
  header .menu.open 
  {
    height:auto;
  }
  body{
    padding-top: 70px;
  }
  section#home .wrapper,
  section#services .wrapper,
  section#review>.wrapper,
  section#about .wrapper,
  section#contacts .wrapper,
  section#about .wrapper .container,
  section#contacts .contact-container,
  section#contacts .wrapper .form,
  section#contacts .wrapper .text,
  section#service-list .wrapper,
  section#service-list .inner
  {
    display:block;
    height:auto;
    padding:15px;
    margin-bottom: 0;
  }

  section#home .wrapper .text, section#home .wrapper .text,
  section#home .wrapper .text, section#home .wrapper .image
  {
    margin-top: 0;  
  }

  section#home .wrapper .text, section#home .wrapper .text
  {
    width:100%;
  }

  section#home .wrapper
  {
    position:relative;
    padding-bottom:25px;
  }
  
  section#home .wrapper .image
  {
    display:none;
  }
  section#home .wrapper
  {
    /* background:#1c1e64; */
  }

  .logo-text
  {
    display:none;
  }

  section#home h1
  {
    font-size:32px;
  }
  
  section#contacts .wrapper .form,
  section#services .col50 .text,
  section#services .col50,
  section#contacts .wrapper .text
  {
    display:block;
    width:100%;
    /* padding:0; */
    margin: 0;
    margin-bottom: 25px;
  }

  section#about .wrapper .container .img, section#about .wrapper .container .text,
  section#about .wrapper .container img{
    width:100%;
    height:auto;
  }
  section#services .col50 strong,
  section#services .col50 .icon 
  {
    text-align:center;
    width: 100%;
    display: block!important;
  }
  section#services .col50 .text .icon i
  {
    margin-right:0;
  }

  section#service-list .list-content-wrapper,
  section#service-list .list
  {
    width:100%;
  }
  section#service-list .list ul
  {
    display:block;
  }
  section#service-list .list>ul li
  {
    width:100%;
    height: auto;
  }
  section#service-list .inner .list>li
  {
    display:inline-block;
  }
  section#service-list .list-content
  {
    font-weight:600;
    background: none!important;
  }
  section#about
  {
    background:none;
  }
  section#about .wrapper .container
  {
    padding:0;
  }
  section#about .wrapper .container .text h3
  {
    font-size:32px;
  }
  footer .wrapper
  {
    justify-content: flex-start;
    padding-left: 15px;
  }
  section#review .review-content .ava
  {
    display:none;
  }
  section#review .review-content .text
  {
    width:100%;
    font-size:16px;
  }
  h1, h2, h3, h4
  {
    font-size:32px;
  }
  section#about:before
  {
    display:none;
  }
  section#about:after
  {
    width:100%;
  }
}