/*Build*/


/*Table of content
---------
font
general
loader
button
navbar
home intro
about us
services
counter
our project
features
testimonial
contact
footer
responsive
---------*/


/*font*/

/* latin */
@font-face {
  font-display: swap;  
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: local('Ubuntu Regular'), local('Ubuntu-Regular'), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKfw72.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: local('Ubuntu Regular'), local('Ubuntu-Regular'), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKew72j00.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@import url('https://fonts.googleapis.com/css?family=Oswald&display=swap');


@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');


/*general*/

body {
    font-family: 'Ubuntu', sans-serif;
    color: #777;
    font-size: 14px;
    background: #fff;
    scroll-behavior: smooth;
}

h1,
h2,
h4,
h5,
h6 {
    line-height: 110%;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    color: #333;
}
h3{line-height: 110%;
    margin: 30px 0px 0px 0px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    color: #333;}

p {
    margin: 8px 0;
    line-height: 24px;
    font-size: medium;
   font-family: 'Montserrat', sans-serif;
}

a {
    color: #111;
}

a:hover {
    color: #111;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

ul,ol{
    font-size:medium;
}

.segments {
    padding: 100px 0 75px;
}


.segments-title {
    text-align: center;
    margin-bottom: 50px;
}

.segments-title h2 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 7px;
    font-size: 38px;
}

.segments-title h2 span {
    color: #F0A30A;
}
.segments-title h2 span.rose {
    color: #fff;
}


.segments-title h1 span {
    color: #F0A30A;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    margin: 0 25%;
}

.section-title .line {
    background: #333;
    height: 3px;
    width: 50px;
    margin: 0 auto;
    margin-top: 10px;
}
.pages-title{
    margin-top:40px;
    margin-bottom:20px;
}

.bg-second {
    background-color: #f8f8f8;
}

.bg-light {
    background-color: #fff;
}

@keyframes vertimove {
    0% {
        -webkit-transform: translateY(0);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateY(0);
        /* IE 9 */
        transform: translateY(0);
        /* Firefox 16+, IE 10+, Opera */
    }
    50% {
        -webkit-transform: translateY(20px);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateY(20px);
        /* IE 9 */
        transform: translateY(20px);
        /* Firefox 16+, IE 10+, Opera */
    }
}


/*loader*/

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background:#f0a30a;
}

#loader {
    display: block;
    position: relative;
    left: 0%;
    top: 0%;
    width: 100vw;
    height: 100vh;
    border-radius: 50%;
    background: url(/shared/logo-white.svg) no-repeat center center;
    background-size:contain;
    -webkit-animation: mymove 2s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: mymove 2s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

@keyframes mymove {
    0% {
        -webkit-transform: scale(0);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: scale(0);
        /* IE 9 */
        transform: scale(0);
        /* Firefox 16+, IE 10+, Opera */
    }
    50% {
        -webkit-transform: scale(1, 1);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: scale(1, 1);
        /* IE 9 */
        transform: scale(1, 1);
        /* Firefox 16+, IE 10+, Opera */
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1, 1);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: scale(1, 1);
        /* IE 9 */
        transform: scale(1, 1);
        /* Firefox 16+, IE 10+, Opera */
        opacity: 0;
    }
}


/*button default*/

.button {
    background-color: #F0A30A;
    color: #fff;
    position: relative;
    padding: 8px 20px;
    border: 0;
    margin-top: 25px;
    font-size: 14px;
    z-index: 0;
    border-radius: 15px;
    transition: all .4s ease;
}

.button:hover {
    background-color: #fff;
    color: #333;
    border: 1px solid  #F0A30A;
}

.button-out{
    padding-top:40px;
}
/*navbar


.navbar-ng {
    background: #333333;
    border-color: transparent;
}

.navbar .navbar-brand {
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: .5s ease;
    color: #fff;
    bottom: 14px;
    position: relative;
}
.navbar .navbar-brand.light-page {
    color:#333;
}
.navbar .navbar-brand i {
    font-size: 40px;
    color: #F0A30A;
}
.navbar-brand span{margin-top: -50px;
 display: block;
 margin-left: 90px;
}
.fa-home:before {
  content: "";
background:url(/shared/logo.svg) no-repeat #fff;
background-size:contain;
border: 1px solid #fff;
border-radius: 50%;
display:block;
width:80px;
height:80px;
}

.navbar .navbar-brand:hover {
    color: #fff;
}

.navbar .navbar-nav li {
    margin: 0 10px;
}

.navbar .navbar-nav li a {
    color: #fafafa;
    font-size: 14px;
}

.navbar .navbar-nav li a:hover {
    color: #fff;
    transition: .5s ease;
}

.navbar-default .navbar-toggle {
    border: 0;
}

.navbar-default .navbar-toggle:hover {
    background-color: transparent;
}

.navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-default .navbar-toggle i {
    color: #fff;
    font-size: 18px;
}

.navbar-default .navbar-collapse {
    border-color: #fff;
}
*/
.btn-phone{
    display: block;
    position:absolute; 
    right:0px; 
    top:0px;
    background:#f0a30a; 
    border:none; 
    width:101px; 
    height: 101px;
}
#bs-phone{
    position:fixed; 
    right:30px; 
    top:131px; 
    background:#fff; 
    width:524px; 
    max-width:50%;
    height:auto; 
    z-index: 10000; 
    box-shadow: rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, 
    rgba(0, 0, 0, 0.12) 0px 1px 5px 0px, 
    rgba(0, 0, 0, 0.2) 0px 3px 1px -2px;
}
#bs-phone:before{
    content: "";
    width:30px;
     border: 30px solid transparent;
    border-bottom:solid 30px #E8E8E8;
    position:fixed;
    top:71px;
    right:40px;
    background:transparent;
 }

/*home intro*/





/*project
.project #tabs li img {
    width: 100%;
}

.project ul {
    padding: 0;
    margin-bottom: 30px;
    margin-top: 30px;
}

.project ul li {
    list-style: none;
    text-decoration: none;
}

.project .text-center li {
    display: inline-block;
}

.project ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.project .content img {
    width: 100%;
}

.project .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    rgba(255,255,255,0),
    rgba(255,255,255,0.81)
    );
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.project .overlay i {
    color: #fff;
    top: 50%;
    left: 50%;
    font-size: 22px;
    position: absolute;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    box-shadow: 0 5px 17px rgba(0, 0, 0, 0.52);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff4081;
    padding: 10px 11px;
}

.project .content-image:hover .overlay {
  height: 100%;
}

.project .content .content-text h4 {
    margin-bottom: 10px;
}

.project .content .content-text h6 {
    margin-bottom: 15px;
    color: #444;
    font-family: 'Roboto', sans-serif;
}

.project .content .content-text h6 span {
    color: #333;
    font-size: 19px;
    font-weight: bold;
}

.project .content .content-text p {
    line-height: 25px;
}

.project .content-text ul li {
    padding: 7px 0;
}
*/
/*features*/
.features {
    background:#ea5952;
}   
.features h3 {
    margin-top: 16px;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
}

.features .content {
    padding: 20px 0;
    text-align: center;
}
.features .content p{
     color:#fff;
}
img.ik-features{
    width:60%;
    height: auto;
    border-radius:50%;
    background:#fff;
}  

.list{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
 
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.list-item{
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
}

/*about us*/
.about-us{
    background: url(/shared/backgr-tiles.svg)no-repeat bottom left;
    background-size:30%;
}
.about-us h2 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-size: 38px;
    margin-top:50px;
}
.about-us h2:first-child{margin-top:0px;}
.about-us h2 span {
    color: #F0A30A;
}

.about-us h5 {
    margin-bottom: 18px;
}

.about-us .content-image {
    padding: 12px;
    margin-top:15px;
    background: #F8F8F8;
    border-radius:20px;
}

.about-us .content-image img {
    width: 100%;
    transition: all 0.5s;
    border-radius:20px;
}
.on-read{
    background: #f0a30a; 
    margin-top:40px; 
    border:none; 
    color:white; 
    margin-bottom: 50px;
}
div#about-us.about-us.segments div.container div.col-md-7 div.content{
    margin-right: 15px;
}

/*services*/
.services .content {
    text-align: center;
    overflow:hidden;
    display: block;
}

.services .content span {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    display:block;
    height: 233px;
    text-align: center;
}
.services .content span img {
    width: 100%;
    margin:0 auto;
    transition: all 0.5s;
}

.services .content div {
    margin-top: 20px;
    display:block;
    color: #333;
    font-size: x-large;
    font-family: 'Oswald', sans-serif;
}
.services .content p {
   text-align: left;
}

.services .content:hover {
    text-align: center;
}

.services .content:hover span{
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    text-align: center;

}

.services .content:hover span img {
    width: 110%;
    transition: all 0.5s;
    margin:0 auto;
    -webkit-filter: contrast(140%);  

}

.services .content:hover div {
    margin-top: 20px;
    display:block;
    color: #333;
    font-size: x-large;
    font-family: 'Oswald', sans-serif;
}

.services .content.active-item:hover span img {
    width: 100%;
    transition: all 0.5s;
    margin:0 auto;
    -webkit-filter: contrast(100%);  
}

.services .content.active-item {
    text-align: center;
}

.services .content.active-item img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    opacity: 0.5;
}

.services .content.active-item div {
    margin-top: 20px;
    display:block;
    color: #999;
    font-size: x-large;
    font-family: 'Oswald', sans-serif;
}
.services .content.active-item div:before {
    content: "Вы на этой странице";
    position: absolute;
    top:100px;
    color:#333;
    -o-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}
.services .content.active-item p {
    color: #999;
}





/*work*/

.work .row .col-md-4 {
    padding: 10px;
}

.work .work-menu {
    text-align: center;
    margin-bottom: 30px;
}

.work .work-menu ul {
    padding: 0;
    margin: 0;
}

.work .work-menu ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
    padding: 6px 22px;
    border: 2px solid #F0A30A;
    border-radius: 20px;
    transition: .5s ease;
}

.work .work-menu ul li:hover {
    background-color: #F0A30A;
    color: #fff;
}

.work .work-menu ul .active {
    background-color: #F0A30A;
    color: #fff;
    transition: all .4s ease;
}

.work .content {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    border-radius: 0 0 8px 8px;
}

.work .content-image {
    position: relative;
    overflow: hidden;
}

.work .content-image img {
    width: 100%;
}

.work .content-image .work-caption {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all .3s ease;
    padding: 28%;
    text-align: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.work .content:hover .work-caption {
    opacity: 1;
    transform: translate(0, 0);
    border-radius: 0;
}

.work .content-image .work-caption a i {
    color: #fff;
    font-size: 23px;
    background: #F0A30A;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    line-height: 45px;
    transform: scale(0, 0);
}

.work .content:hover .work-caption a i {
    transform: scale(1, 1);
    transition-duration: .2s;
    transition-delay: .3s;
}

.work .content .work-caption a i:hover {
    background-color: #fff;
    color: #333;
    transition: all .5s ease;
}

.work .content-text {
    background-color: #fafafa;
    border-radius: 0 0 8px 8px;
    padding: 20px;
}

img.img-full{width:100%;}
img.img-ful:before { content: attr(alt) }

/*pricing*/

.pricing .content {
    padding: 30px;
    text-align: center;
    background: #fff;
    margin: 0 7%;
    position: relative;
    transition: all .3s ease;
}

.pricing .content:hover {
    box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.05);
    transform: translateY(-15px);
}

.pricing .content-two:hover {
    box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.17);
    transform: translateY(-15px);
}

.pricing .content .lines {
    margin: 0 auto;
    background-color: #F0A30A;
    width: 0;
    height: 2px;
}

.pricing .content:hover .lines {
    -webkit-transition: width 1s;
    transition: width 1s;
    width: 100%;
}

.pricing .content .title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.pricing .content .title .lined {
    position: absolute;
    bottom: 0;
    background: #F0A30A;
    width: 40px;
    height: 2px;
    margin: 0 auto;
    text-align: center;
    left: 42%;
}

.pricing .content .title h4 {
    font-size: 22px;
    z-index: 1;
}

.pricing .content .price {
    background: #F0A30A;
    border-radius: 50%;
    height: 130px;
    width: 130px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    padding-top: 30px;
    margin-bottom: 24px;
}

.pricing .content .price p {
    font-size: 42px;
}

.pricing .content .price p span {
    font-size: 23px;
    position: relative;
    top: -11px;
    margin-right: 5px;
}

.pricing .content ul {
    padding: 0;
    margin: 0;
}

.pricing .content ul li {
    list-style-type: none;
    margin: 15px;
}

.pricing .content ul li:last-child {
    margin-bottom: 0;
}

.pricing .content-two {
    background-color: #333;
}

.pricing .content-two .title h4 {
    color: #fafafa;
}

.pricing .content-two ul li {
    color: #fafafa;
}

.pricing .content .button:hover {
    background: transparent;
    box-shadow: 0 0px 18px rgba(0, 0, 0, 0.2);
}

.pricing .content-two .button:hover {
    background: #fff;
    box-shadow: none;
}



/*contact*/
div#about-us.about-us.segments div.container div.col-md-5.contact{
    background: #fff;
    padding:10px 15px 30px 15px;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.2);
}

.contact {
    background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(/shared/parallax2.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.contact.fans{
        background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

.contact .content-map .map {
    width: 100%;
    height: 420px;
}

.contact .wrapper-form {
    text-align: center;
}

.contact .content input,
.contact .content textarea {
    width: 100%;
    color: #333;
    border: 1px solid #eee;
    transition: all .4s ease;
}

.contact .content input {
    padding: 11px 15px;
    margin-bottom: 20px;
}

.contact .content textarea {
    padding: 10px 15px;
    border-radius: 0;
    box-shadow: none;
}

::-webkit-placeholder {
    /* Chrome/Opera/Safari */
    color: #555;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #555;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #555;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #555;
}
.img-full{background-size:cover !important; height:400px; text-align: center;}
.img-full:after{
    top: 350px;
    color: #fff;
    content: attr(title);
    display: block;
    font-size: 12px;
    overflow: hidden;
    padding: 2px 10px;
    position: relative;
    text-align: center;
    white-space: nowrap;
}
.button-img{top:300px;}
 div.phones{
    font-size: x-large;
    color:#fff;
    padding:50px;
    font-family: 'Oswald', sans-serif;

}
div.phones a{
    color:#fff;
    margin:5px 0px;
}
div.phones a span{
    color:#fff;
    font-size:xx-large;
}
 



/*footer*/


footer {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

footer ul {
    padding: 0;
    margin: 0;
}

footer ul li {
    list-style-type: none;
    display: inline-block;
}

footer .wrap-terms {
    margin-bottom: 20px;
}

footer .wrap-terms ul li {
    padding: 0 10px;
}

footer .wrap-terms .border-r {
    border-right: 2px solid #888;
}

footer .wrap-terms .border-l {
    border-left: 2px solid #888;
}

footer .wrap-social {
    margin-bottom: 20px;
}

footer .wrap-social li {
    margin: 0 10px;
    font-size: 15px;
}

footer .wrap-social li a {
    color: #666;
}

footer .wrap-social li a i {
    font-size: 20px;
}

footer .wrap-copyright p {
    margin: 0;
    color: #888;
}
.button-test-ob .button-shar{
    background-color: #ea5952;
    color: #fff;
    position: relative;
    padding-top: 90px;
    border: 0;
    margin: 0 auto;
    font-size: large;
    z-index: 0;
    border-radius: 50%;
    transition: all .4s ease;
    width: 200px;
    height: 200px;
    display: block;
}



/*compuhter*/

@media (min-width: 991px) {
   .button-test-ob{padding-top:11%;}
}

/*responsive*/
@media (max-width: 990px) {
    .navbar-header {
        float: none;
    }
    .navbar-left,
    .navbar-right {
        float: none !important;
        margin-right: 50px !important;
    }
    .navbar-toggle {
        display: block;
        margin-right: 0;
    }
    .navbar-toggle i {
        color: #fff;
        font-size: 22px !important;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border: 0;
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
   
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
        text-align: right;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in {
        display: block !important;
    }
    .quote h2 {
        font-size: 22px;
    }
    .project h3 {
        margin-top: 25px;
    }
    .button-test-ob{padding-top:11%;}
    .btn-phone{display: none;}

}










@media (max-width: 768px) {
    .section-title p {
        margin: 0 16%;
    }
    .navbar-header {
        float: none;
    }
    .navbar-left,
    .navbar-right {
        float: none !important;
        margin-right: 50px !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-toggle i {
        color: #fff;
        font-size: 22px !important;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border: 0;
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
 
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
        text-align: right;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in {
        display: block !important;
    }
    .home-intro .intro-caption p {
        margin: 0 17%;
    }
    .quote h2 {
        font-size: 22px;
    }
    .quote .button {
       
    }
    
    .services .content .text p {
        margin-right: 0;
    }
    .services .content .service-icon .line {
        position: absolute;
        top: 7px;
        left: 26%;
        background: #F0A30A;
        width: 2px;
        height: 27px;
    }
    .counter .content {
        margin-bottom: 30px;
    }
    .pricing .content {
        margin: 0;
    }
    .pricing .content .title .lined {
        position: absolute;
        bottom: 0;
        background: #F0A30A;
        width: 40px;
        height: 2px;
        margin: 0 auto;
        text-align: center;
        left: 37%;
    }
    .testimonial .content {
    margin: 25px 5%;
    }
    #breadcrumbs-three{display: none;}
    .btn-phone{display: none;}

     div.phones-mobile{
        display:block;
        font-size: x-large;
        color:#fff;
        padding:0px;
        font-family: 'Oswald', sans-serif;
    }
     div.phones-mobile a{
        color:#fff;
        margin:20px 20px;
    }
    div.phones-mobile a span{
        font-size:xx-large;
    }
}

@media (max-width: 640px) {
    .section-title p {
        margin: 0 11%;
    }
     .navbar-toggle {
        display: block;
        margin-right: 15px;
    }
    .home-intro .intro-caption p {
        margin: 0 15%;
    }
    .services .content {
        margin-bottom: 30px;
    }
    .services .content.no-mb {
        margin-bottom: 0;
    }
    .services .content .text p {
        margin-right: 48%;
    }
    .services .content .service-icon .line {
        position: absolute;
        top: 7px;
        left: 10%;
        background: #F0A30A;
        width: 2px;
        height: 27px;
    }
    .counter .content.no-mb {
        margin-bottom: 0;
    }
    .pricing .content {
        margin-bottom: 30px;
    }
    .pricing .content.no-mb {
        margin-bottom: 0;
    }
    .pricing .content .title .lined {
        position: absolute;
        bottom: 0;
        background: #F0A30A;
        width: 40px;
        height: 2px;
        margin: 0 auto;
        text-align: center;
        left: 46%;
    }
    .testimonial .content {
    margin: 25px 5%;
    }
  
    .contact .content-map {
        margin-bottom: 30px;
    }
    .testim-rab{
        margin-left:0%;
    }
   .button-test-ob{padding-top:400px;}
    #breadcrumbs-three{display: none;}
    .btn-phone{display: none;}
     div.phones-mobile{
        display:block;
        font-size: x-large;
        color:#fff;
        padding:0px;
        font-family: 'Oswald', sans-serif;
    }
     div.phones-mobile a{
        color:#fff;
        margin:20px 20px;
    }
    div.phones-mobile a span{
        font-size:xx-large;
    }  

}

@media (max-width: 480px) {
    .section-title p {
        margin: 0 9%;
    }
    .home-intro .intro-caption p {
        margin: 0 4%;
    }
    .services .content .service-icon .line {
        position: absolute;
        top: 7px;
        left: 14%;
        background: #F0A30A;
        width: 2px;
        height: 27px;
    }
    .services .content .text p {
        margin-right: 27%;
    }
    .work .work-menu ul li {
        list-style-type: none;
        display: inline-block;
        margin: 0 8px;
        cursor: pointer;
        padding: 6px 20px;
        border: 2px solid #F0A30A;
        border-radius: 20px;
        transition: .5s ease;
        margin-bottom: 15px;
        font-size: 12px;
    }
    .pricing .content .title .lined {
        position: absolute;
        bottom: 0;
        background: #F0A30A;
        width: 40px;
        height: 2px;
        margin: 0 auto;
        text-align: center;
        left: 45%;
    }
    
    .quote .button {
        float: none;
        position: relative;
        display: inline-block;
        margin-top: 14px;
        top: 0;
    }
    .quote h2 {
        float: none;
        line-height: 30px;
    }
    .testimonial .content div .testim-rab{
        margin-left:0%;
    }
    div.phones{ 
        padding:50px 5%; }
    div.phones a span{
    color:#fff;
    font-size:x-large;
    }
    .button-test-ob{padding-top:400px;}
    #breadcrumbs-three{display: none;}
    
    .button-test-ob{padding-top:400px;}
    #breadcrumbs-three{display: none;}
    .btn-phone{display: none;}
     div.phones-mobile{
        display:block;
        font-size: x-large;
        color:#fff;
        padding:0px;
        font-family: 'Oswald', sans-serif;
    }
     div.phones-mobile a{
        color:#fff;
        margin:20px 20px;
    }
    div.phones-mobile a span{
        font-size:xx-large;
    } 

}








/*Mobile-Hrenobile*/

@media screen and (orientation: portrait), all and (max-width: 479px) {

 .home-intro .intro-caption {
    position: absolute;
    top: 20%;
    left: 5%;
    color: #fff;
    text-align: center;
    width: 90%;
    max-width:100%;
    margin-left:0%;
    }
    .intro-img{
    width:60%;
    }


  .thumbs a{
      width:30vw;
      height:30vw;
      display:inline-block;
      border-radius:0px;
      margin: 0px;
      padding:0px;
      position:relative;
      text-decoration:none;
      background-position:center center;
      background-repeat: no-repeat;
      background-size:cover;
      -moz-background-size:cover;
     -webkit-background-size:cover;
      box-shadow: none;
   }
   .thumbs a:after{
    border-radius: 7px;
    bottom: -25vw;
    color: #fff;
    content: attr(title);
    display: none;
    font-size: 10px;
    max-width: 90px;
    overflow: hidden;
    padding: 2px 10px;
    position: relative;
    text-align: center;
    white-space: nowrap;
   }
   .about-us{
    background: url(/shared/backgr-tiles.svg)no-repeat bottom left;
    background-size:100%;
    }
    .btn-phone{display: none;}
      div.phones-mobile{
        display:block;
        font-size: x-large;
        color:#fff;
        padding:0px;
        font-family: 'Oswald', sans-serif;
    }
     div.phones-mobile a{
        color:#fff;
        margin:20px 20px;
    }
    div.phones-mobile a span{
        font-size:xx-large;
    }
    .fancybox-content{min-width: 90vw;}/*Костыль под фансибокс*/
}

@media (max-width: 360px) {
    .section-title p {
        margin: 0 0;
    }
    .home-intro .intro-caption {
        position: absolute;
        top: 36%;
        left: 0;
        color: #fff;
        text-align: center;
    }
    .home-intro .intro-caption h2 {
        font-size: 30px;
    }
    .services .content .service-icon .line {
        position: absolute;
        top: 7px;
        left: 18%;
        background: #F0A30A;
        width: 2px;
        height: 27px;
    }
    .services .content .text p {
        margin-right: 0;
    }
    .pricing .content .title .lined {
        position: absolute;
        bottom: 0;
        background: #F0A30A;
        width: 40px;
        height: 2px;
        margin: 0 auto;
        text-align: center;
        left: 43%;
    }
    .testimonial .content {
        margin: 0;
    }
    #breadcrumbs-three{display: none;}
    .btn-phone{display: none;}
    .fancybox-content{min-width: 90vw;}/*Костыль под фансибокс*/
}


/*Galery moi raboti*/
.thumbs{
    width:100%;
    margin:60px auto 35px;
    text-align:center;
}

.thumbs a{
    width:200px;
    height:200px;
    display:inline-block;
    box-shadow:0 1px 3px rgba(0,0,0,0.5);
    border-radius:0px;
    margin: 6px 6px 6px;
    position:relative;
    text-decoration:none;
    background-position:center center;
    background-repeat: no-repeat;
    max-width: 46%; 
    background-size:cover;
    -moz-background-size:cover;
    -webkit-background-size:cover;
}

.thumbs a:after{
    border-radius: 7px;
    bottom: -200px;
    color: #303030;
    content: attr(title);
    display: none;
    font-size: 10px;
    max-width: 190px;
    overflow: hidden;
    padding: 2px 10px;
    position: relative;
    text-align: center;
    white-space: nowrap;
}



div.col-md-5.contact div.content-form{
    margin:15px;
}

#hidden-content{display:none;}
form#contact-form-phone.contact-form.form-horizontal div.content{
    margin-bottom:20px;
}
.content-form-phone .content input {
    font-size: 2em;
}
.content-form-phone-2 .content input {
    font-size: 2em;
}


/*  breadcrumbs */
#breadcrumbs-three{
 overflow: hidden;
 width: 100%;
 margin: 0;
 padding: 0;
 list-style: none;
}

#breadcrumbs-three li{
 float: left;
 margin: 0 2em 0 0;
}

#breadcrumbs-three a{
 padding: .7em 1em .7em 2em;
 float: left;
 text-decoration: none;
 color: #444;
 background: #ddd; 
 position: relative;
 z-index: 1;
 text-shadow: 0 1px 0 rgba(255,255,255,.5);
 border-radius: .4em 0 0 .4em; 
}

#breadcrumbs-three a:hover{
 background: #efc9ab;
}

#breadcrumbs-three a::after{
 background: #ddd;
 content: "";
 height: 2.5em;
 margin-top: -1.25em;
 position: absolute;
 right: -1em;
 top: 50%;
 width: 2.5em;
 z-index: -1; 
 transform: rotate(45deg);
 border-radius: .4em;
}

#breadcrumbs-three a:hover::after{
 background: #efc9ab;
}

#breadcrumbs-three .current,
#breadcrumbs-three .current:hover{
 font-weight: bold;
 background: none;
}

#breadcrumbs-three .current::after{
 content: normal;
}
.itogo{
    color:#333;
    font-size: x-large;
    font-weight: 700;
}

.segments-title h2 span.rose-col{color:#e95952;}

.quote .content.rose-bg{
    background-color:#ea5952;
}
.content.hides{max-height:300px; overflow:hidden;}