/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* 
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/*Theme Name: CheapP
*
*/
@import 'https://fonts.googleapis.com/css?family=Open+Sans:400,700';
@font-face {
    font-family: "fontawesome";
    src: url(fonts/font-awesome/fontawesome-webfont.ttf);
    src: url(fonts/font-awesome/fontawesome-webfont.eot);
    src: url(fonts/font-awesome/fontawesome-webfont.svg);
    src: url(fonts/font-awesome/fontawesome-webfont.woff);
    src: url(fonts/font-awesome/fontawesome-webfont.woff2);
    src: url(fonts/font-awesome/FontAwesome.otf);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dir,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: blue;
}


/* Safari reset style input */

input,
select,
option {
    -webkit-appearance: none;
    -moz-appearance: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

body {
    font: 14px 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    min-width: 320px;
}

.trs,
.trs:before,
.trs:after {
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
}

::-moz-selection {
    background: #3E4651;
    color: #fff;
}

::selection {
    background: #3E4651;
    color: #fff;
}

::-moz-selection {
    background: #3E4651;
    color: #fff;
}

.text-bold {
    font-weight: 700;
}

.button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button a {
    display: block;
    height: 100%;
}

.container {
    max-width: 940px;
    padding: 0 15px;
    margin: auto;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
}


/* owl arrows */

.owl-theme .owl-controls {
    margin: 0;
}

.owl-theme .owl-controls .owl-nav [class*=owl-] {
    margin: 0;
    padding: 0;
}

.owl-controls .owl-nav div {
    position: absolute;
    top: 50%;
    background: transparent !important;
    /*     -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); */
}

.owl-controls .owl-nav .owl-prev {
    left: 3px;
}

.owl-controls .owl-nav .owl-next {
    right: -9px;
}

.owl-controls .owl-nav div:before,
.owl-controls .owl-nav div:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #31a556;
    position: absolute;
    left: 0;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.owl-controls .owl-nav div:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.owl-controls .owl-nav div:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.owl-controls .owl-nav .owl-prev:before,
.owl-controls .owl-nav .owl-next:after {
    top: 31px;
}

.owl-controls .owl-nav .owl-prev:after,
.owl-controls .owl-nav .owl-next:before {
    top: 10px;
}

.owl-controls .owl-nav div:hover {
    /*     -webkit-transform: scale(1.2) translateY(-50%);
    -ms-transform: scale(1.2) translateY(-50%);
    transform: scale(1.2) translateY(-50%); */
}

.owl-controls .owl-nav div:hover:before,
.owl-controls .owl-nav div:hover:after {
    background: #fed45b;
}


/* owl dots */

.owl-dots {
    position: relative;
    top: -45px;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: #cccccc;
    border: 1px solid #fff;
}


/* placeholder animate */

::-webkit-input-placeholder {
    color: #555;
    opacity: 1;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

:focus::-webkit-input-placeholder {
    opacity: 0;
}

::-moz-placeholder {
    color: #555;
    opacity: 1;
}

:-moz-placeholder {
    color: #555;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #555;
    opacity: 1;
}

.menu-overlay {
    position: fixed;
    min-height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 1019;
    background-color: rgba(36, 48, 53, 0.49);
    display: none;
    -webkit-animation: cd-fade-in 0.3s;
    animation: cd-fade-in 0.3s;
}

.menu-overlay.is-visible {
    display: block;
    -webkit-animation: cd-fade-in 0.3s;
    animation: cd-fade-in 0.3s;
}

.top-menu {
    position: fixed;
    top: 0;
    margin: 0;
    right: 0;
    height: 100%;
    width: 260px;
    right: -270px;
    background: #FFF;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1021;
    -webkit-transition: right 0.3s;
    -o-transition: right 0.3s;
    transition: right 0.3s;
}

.top-menu ul li {
    display: block;
    margin-left: 0;
    width: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.top-menu ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    font-size: 16px;
    //line-height: 50px;
    padding: 0 1em;
    border-bottom: 1px solid #2582d6;
    border-radius: 0;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.top-menu ul li a:hover {
    background-color: rgba(254, 212, 91, 0.6);
    box-shadow: inset 4px 0 #fed45b;
    -webkit-box-shadow: inset 4px 0 #2582d6;
    -moz-box-shadow: inset 4px 0 #2582d6;
    color: #2582d6;
}

header {
    position: fixed;
    z-index: 150;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    padding-top: 18px;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
}

header .container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

header.top-fixed {
    background-color: rgba(36, 51, 73, 0.3);
}

header .logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    vertical-align: top;
}

header .logo sup {
    font-size: 15px;
    display: inline-block;
    vertical-align: top;
    color: #fed45b;
    margin-top: 4px;
}

.header-right-menu a {
    color: #fff;
    padding: 15px;
    border-radius: 5px;
}

.header-right-menu a:hover {
    background-color: rgba(254, 212, 91, 0.7);
    color: #2582d6;
}

.header-right-menu a:hover i {
    background-color: #2582d6;
    color: #fed45b;
}

.header-right-menu a.menu {
    margin-left: 10px;
}

.header-right-menu i {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background-color: #fed45b;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    color: #2582d6;
    margin-right: 10px;
}

.bg-top {
    overflow: hidden;
    padding-top: 160px;
    background: #243349 url(images/bg-top.png) no-repeat center top;
    background-size: cover;
    -webkit-background-size: cover;
}

.bg-top .left-block {
    -webkit-flex: none;
    -ms-flex: none;
    -webkit-box-flex: 0;
    flex: none;
    width: 500px;
    margin-right: 20px;
}

.bg-top .left-block p {
    font-size: 22px;
    color: #fed45b;
}

.bg-top main > .container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

section.order-examples {
    padding: 25px 0px 25px 0px;
    background: #2682d7 url(images/bg-bottom.png) repeat-x center bottom;
}

section.order-examples h2 {
    margin-bottom: 60px;
    display: block;
    text-align: center;
    color: #fff;
}

section.order-examples .order-examples-in,
footer .order-examples-in {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

footer .order-examples-in {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding-top: 25px;
}

footer .order-examples-in a {
    color: #fff;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 700;
}

section.order-examples .order-examples-in a {
    margin-bottom: 10px;
    text-decoration: none;
    color: #fed45b;
    font-weight: 700;
}

section.order-examples .order-now {
    display: table;
    margin: 45px auto 0;
}

.oe-first,
.oe-second,
.oe-third {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column nowrap;
}

.wrp-form {
    width: 380px;
    -webkit-flex: none;
    -ms-flex: none;
    -webkit-box-flex: 0;
    flex: none;
    background-color: #fed45b;
    border-radius: 5px;
    padding: 40px;
}

.wrp-form .estimate {
    font-size: 15px;
    color: #2582d6;
    text-align: center;
    vertical-align: middle;
}

.wrp-form .price {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    margin-left: 10px;
}

.wrp-form .wrp-deadline .wrp-inp,
.wrp-form .select.wrp-inp {
    position: relative;
}

.wrp-form .wrp-deadline .wrp-inp:after,
.wrp-form .select.wrp-inp:after {
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    width: 25px;
    height: 18px;
    background: transparent url(images/arrows.png) no-repeat -10px -6px;
}

.wrp-form .wrp-deadline .wrp-inp:after {
    background: url(images/sprite.png);
    background-position: 0 -27px;
}

.wrp-form .two-input {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.wrp-form .two-input > div {
    width: 48%;
}

.wrp-form input,
.wrp-form select,
.wrp-form option {
    border: none;
    height: 100%;
    width: 100%;
    padding: 0 15px;
    font-size: 16px;
    color: #555;
    outline: none;
}

.wrp-form select,
.wrp-form option {
    height: 40px;
    padding: 8px 30px 8px 15px;
}

.wrp-form input[type="submit"] {
    height: 42px;
    width: 100%;
    border-radius: 5px;
    border: 2px solid #2582d6;
    background-color: #2582d6;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0.5px 0.866px 3px 0px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0.5px 0.866px 3px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0.5px 0.866px 3px 0px rgba(0, 0, 0, 0.5);
}

.wrp-form input[type="submit"]:hover {
    background-color: #FFF;
    color: #2582d6;
}

.wrp-form .wrp-inp {
    background-color: #FFF;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0.5px 0.866px 3px 0px #2c2c2c;
    -webkit-box-shadow: 0.5px 0.866px 3px 0px #2c2c2c;
    -moz-box-shadow: 0.5px 0.866px 3px 0px #2c2c2c;
    height: 40px;
    width: 100%;
    position: relative;
}

input[type="number"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    padding-left: 10px;
    padding-right: 30px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    /* / display: none; <- Crashes Chrome on hover /*/
    -webkit-appearance: none;
    margin: 0;
}

.arrow-up,
.arrow-down {
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 0;
    content: "";
    width: 20px;
    height: 20px;
    background: transparent url(images/arrows.png) no-repeat -43px -4px;
}

.arrow-down {
    top: auto;
    bottom: 0;
    background-position: -13px -8px;
}

.arrow-up:hover {
    background-position: -43px -24px;
}

.arrow-up:active {
    top: 1px;
}

.arrow-down:hover {
    background-position: -13px -28px;
}

.arrow-down:active {
    bottom: 1px;
}

.text-form {
    font-size: 12px;
    color: #725e23;
    text-transform: uppercase;
    margin-bottom: 5px;
}

ul.minical li article header {
    background: rgba(254, 212, 91, 0.8);
    border-radius: 5px;
}

ul.minical li article header h1 {
    padding: 0;
    color: #2582d6;
    font-weight: 700;
}

.bg-transparent {
    margin-top: -80px;
    padding-bottom: 55px;
    background-color: rgba(36, 51, 73, 0.3);
}

.section-why {
    margin-left: 76px;
    padding-top: 44px;
    width: 50%;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.section-why .wrp-descr {
    font-size: 14px;
    color: #fed45b;
}

.section-why .title-why {
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.section-why li {
    margin-right: 10px;
    max-width: 122px;
}

.section-why .wrp-img {
    width: 75px;
    height: 65px;
    background: transparent url(images/sprite.png) no-repeat -30px 0;
    margin-bottom: 10px;
}

.section-why li:nth-child(2) .wrp-img {
    background-position: -110px 0;
}

.section-why li:nth-child(3) .wrp-img {
    background-position: -180px 0;
}

h2 {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    color: #2582d6;
}

.section-how-works {
    text-align: center;
    padding: 65px 0 70px;
}

.wrp-works {
    margin-top: 45px;
    margin-bottom: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
}

.item-works {
    -webkit-flex: 1 1 183px;
    -ms-flex: 1 1 183px;
    -webkit-box-flex: 1;
    flex: 1 1 183px;
    padding: 0 20px;
}

.item-works:nth-child(2) .img-step {
    background-position: -135px -75px;
}

.item-works:nth-child(3) .img-step {
    background-position: -253px -75px;
}

.item-works:nth-child(4) .img-step {
    background-position: -5px -166px;
}

.item-works .img-step {
    margin: 0 auto;
    width: 114px;
    height: 98px;
    background: transparent url(images/sprite.png) no-repeat -1px -75px;
}

.item-works h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2582d6;
    margin-bottom: 10px;
}

.item-works .bottom-step {
    font-size: 16px;
    color: #555;
}

.btn {
    cursor: pointer;
    display: inline-block;
    font: 16px 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #fed45b;
    padding: 15px 95px;
    border: 2px solid #fed45b;
    border-radius: 5px;
    box-shadow: 0.5px 0.866px 3px 0px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0.5px 0.866px 3px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0.5px 0.866px 3px 0px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    color: #2582d6;
    padding: 10px 25px;
}

.btn:hover {
    background-color: #2582d6;
    color: #fed45b;
}

.section-quality {
    text-align: center;
    padding: 60px 0 65px;
    background: #243349 url(images/bg-middle.png) no-repeat center;
    background-size: cover;
}

.section-quality .container > p {
    font-size: 16px;
    color: #fed45b;
    margin: 25px 0 40px;
}

.section-quality h2 {
    padding: 0 90px;
    text-transform: uppercase;
    color: #fff;
}

.wrap-quality {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.wrap-quality li {
    margin: 6px 9px;
    border-radius: 5px;
    box-shadow: 0.5px 0.866px 5px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0.5px 0.866px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0.5px 0.866px 5px 0px rgba(0, 0, 0, 0.3);
    width: 164px;
    height: 84px;
    background: #fff url(images/sprite-quality.png) no-repeat -251px -8px;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
}

.wrap-quality li:hover {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

.wrap-quality li:first-child,
.wrap-quality li:nth-child(5) {
    margin-top: 52px;
}

.wrap-quality li:nth-child(6),
.wrap-quality li:nth-child(7),
.wrap-quality li:nth-child(8) {
    margin-top: -35px;
}

.wrap-quality li:nth-child(2) {
    background-position: -254px -81px;
}

.wrap-quality li:nth-child(3) {
    background-position: -254px -147px;
}

.wrap-quality li:nth-child(4) {
    background-position: -256px -210px;
}

.wrap-quality li:nth-child(5) {
    background-position: -251px -282px;
}

.wrap-quality li:nth-child(6) {
    background-position: -255px -372px;
}

.wrap-quality li:nth-child(7) {
    background-position: -254px -442px;
}

.wrap-quality li:nth-child(8) {
    background-position: -12px -312px;
}

.section-testimonials {
    overflow: hidden;
    background-color: #f5fafe;
    text-align: center;
    padding: 60px 0 60px;
}

.section-testimonials h2 {
    text-transform: uppercase;
}

.owl-testimonials {
    margin: 50px 0 65px;
}

.owl-testimonials .reviews {
    position: relative;
    font-size: 16px;
    color: #555;
    padding-top: 20px;
    padding-left: 15px;
    text-align: left;
}

.owl-testimonials .reviews:after {
    z-index: -1;
    position: absolute;
    top: 3px;
    left: -12px;
    content: "";
    width: 105px;
    height: 82px;
    background: transparent url(images/sprite.png) no-repeat -125px -191px;
}

.owl-testimonials .name {
    text-align: left;
    margin-top: 15px;
    font-size: 14px;
    color: #b7b7b7;
    font-weight: 700;
}

.owl-controls .owl-nav div {
    top: 37px;
    z-index: 100;
}

.owl-dots {
    position: relative;
    top: 40px;
}

.owl-theme .owl-controls {
    position: relative;
    margin: 0;
}

.owl-theme .owl-controls .owl-nav [class*="owl-"] {
    width: 24px;
    height: 25px;
    background: transparent url(images/sprite.png) no-repeat -245px -196px !important;
}

.owl-theme .owl-controls .owl-nav .owl-next {
    right: 327px;
    background-position: -279px -196px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #fed45b;
}

.owl-controls .owl-nav .owl-prev::after,
.owl-controls .owl-nav .owl-prev::before,
.owl-controls .owl-nav .owl-next::after,
.owl-controls .owl-nav .owl-next::before {
    display: none;
}

.owl-theme .owl-controls .owl-nav [class*="owl-"]:hover {
    background: #869791;
    color: #fff;
    text-decoration: none;
}

.owl-theme .owl-controls .owl-nav .owl-next:hover {
    background-position: -279px -227px !important;
}

.owl-theme .owl-controls .owl-nav .owl-prev:hover {
    background-position: -245px -227px !important;
}

.owl-controls .owl-nav .owl-prev {
    left: 327px;
}

.essay {
    text-align: center;
    padding: 60px 0 65px;
}

.essay h2 {
    text-transform: uppercase;
}

.essay .text-essay {
    margin-top: 50px;
    font-size: 14px;
    color: #555;
    text-align: left;
    column-count: 1;
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-gap: 30px;
    -moz-column-gap: 30px;
    -webkit-column-gap: 30px;
}

.essay .more {
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    padding: 12px 113px;
    font-weight: 700;
    color: #232f4e;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background-color: transparent;
    margin-top: 30px;
}

.essay .more:hover {
    background-color: #fed45b;
}

.our-stats {
    text-align: center;
    padding: 67px 0 70px;
    background: #2682d7 url(images/bg-bottom.png) repeat-x center bottom;
}

.our-stats .wrp-states {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.our-stats .wrp-states .item-states {
    -webkit-flex: 1 1 116px;
    -ms-flex: 1 1 116px;
    -webkit-box-flex: 1;
    flex: 1 1 116px;
    margin: 10px 0;
}

.our-stats .wrp-states p:last-child {
    font-size: 16px;
    color: #fed45b;
}

.our-stats .wrp-states .top-img {
    width: 75px;
    height: 60px;
    background: transparent url(images/sprite.png) no-repeat -8px -270px;
}

.our-stats .wrp-states .item-states .top-img {
    margin: 0 auto 10px;
}

.our-stats .wrp-states .item-states:nth-child(2) .top-img {
    background-position: -88px -270px;
}

.our-stats .wrp-states .item-states:nth-child(3) .top-img {
    background-position: -164px -270px;
}

.our-stats .wrp-states .item-states:nth-child(4) .top-img {
    background-position: -242px -270px;
}

.our-stats .top-number {
    font-size: 36px;
    color: #fff;
}

.order-now {
    cursor: pointer;
    display: inline-block;
    font: 16px 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #fed45b;
    padding: 15px 95px;
    border: 2px solid #fed45b;
    border-radius: 5px;
    box-shadow: 0.5px 0.866px 3px 0px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0.5px 0.866px 3px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0.5px 0.866px 3px 0px rgba(0, 0, 0, 0.5);
    padding: 6px 28px;
    margin-top: 45px;
    font-weight: 700;
    color: #2582d6;
}

.order-now:hover {
    background-color: #fff;
}

footer {
    text-align: center;
}

footer .top-block {
    background-color: #0e4262;
    padding: 30px 0 25px;
}

footer .top-block .container {
    padding: 0 40px;
}

footer .nav-footer {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-flow: row no-wrap;
    -ms-flex-flow: row no-wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row no-wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

footer .nav-footer a {
    font-size: 16px;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
}

footer .nav-footer a:hover {
    background-color: #fed45b;
    color: #2582d6;
}
a.ssilochki-one-love  {
    color:pink !important;
}
a.ssilochki-one-love:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url(images/heart.jpg) no-repeat;
    background-size: contain;
    position: relative;
    right:20px;
    top:17px;
    border-radius: 50%;
}
footer .nav-footer .dot {
    width: 5px;
    height: 5px;
    background-color: #fed45b;
    border-radius: 50%;
}

.service-usful {
    text-align: left;
    padding-top: 30px;
    font-size: 14px;
    color: #4985a9;
}

.service-usful h4 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.service-usful li {
    margin-bottom: 15px;
}

.bottom-block .container {
    padding: 10px 15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.bottom-block h5 {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
    color: #2582d6;
}

.bottom-block ul {
    display: inline-block;
    vertical-align: middle;
}

.bottom-block ul li {
    display: inline-block;
    vertical-align: middle;
    width: 52px;
    height: 35px;
    background: transparent url(images/pay.png) no-repeat 0 0;
}

.bottom-block ul li:nth-child(2) {
    background-position: -56px 0;
}

.bottom-block ul li:nth-child(3) {
    background-position: 0 -39px;
}

.bottom-block ul li:nth-child(4) {
    background-position: -56px -39px;
}

.bottom-block ul li:nth-child(5) {
    background-position: 0 -78px;
}

.copyright {
    font-size: 14px;
    color: #b7b7b7;
}

.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.link_read_close {
  color: #2582d6;
  font: 600 16px/1.2em "Avenir Next","Arial",sans-serif;
  cursor: pointer;
  display: inline-block;
}

.read_more_text_wrapper .read_more_text_hidden {
  /*height: 0px;*/
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  text-align: justify;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.read_more_text_wrapper.active .js_link_read_more {
  display: none;
}

.text-essay-hidden {
  font-size: 14px;
  color: #555;
  text-align: left;
  column-count: 1;
  -moz-column-count: 1;
  -webkit-column-count: 1;
  column-gap: 30px;
  -moz-column-gap: 30px;
  -webkit-column-gap: 30px;
}

.bg-top-single {
  padding-top: 80px;
}

.container-single h1, .container-page h1 {
  color: #2582d6;
  text-align: center;
  margin-top: 60px;
  padding-bottom: 30px;
}

.container-single .main-single p, .container-page p {
  font-size: 16px;
  color: #555;
  line-height: 26px;
  margin-bottom: 15px;
}
.container-page p:last-child {
  margin-bottom: 70px;
}
.container-single .main-single p:last-child {
  margin-bottom: 0;
}

.container-single .main-single h2, .container-page h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2582d6;
  padding-top: 15px;
  padding-bottom: 25px;
  text-align: center;
  width: 100%;
}
.container-single .main-single img {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.container-single .cheap-form {
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  width: 85%;
}

.container-single .cheap-form .form-block-1, .container-single .cheap-form .form-block-2 {
  display: inline-block;
}
.container-single .cheap-form .form-block-2 {
  float: right;
}
.container-single .cheap-form .single-order-btn {
  margin-top: 0;
}
.text-level {
  margin-top: 27px;
}
.container-single img {
    max-width: 100%;
    height: auto;
}

.container-page ul li, .container-page ol li, .container-single ol li {
  font-size: 16px;
  color: #555;
  line-height: 26px;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}
.container-page ol li:last-child {
  margin-bottom: 70px;
}
.container-page ul li:before {
  content: "";
  height: 7px;
  width: 7px;
  background-color: #2582d6;
  position: absolute;
  border-radius: 50px;
  left: 0;
  top: 10px;
}

.top-menu .sub-menu, .top-menu .sub-menu ul li {
  position: relative;
}
.top-menu .sub-menu:after {
  content: '';
  position: absolute;
  top: 18px;
  right: 15px;
  height: 0;
  width: 0;
  border-bottom: 6px solid transparent;
  border-bottom-width: 6px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-left: 6px solid #d0d0d0;
  border-top: 6px solid transparent;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.top-menu li.actives::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.top-menu .sub-menu ul {
  position: static;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.top-menu .sub-menu ul li {
  font: 16px 'Open Sans', Arial, sans-serif;
  color: #2582d6;
}

.essay p, .essay ul li {
    padding-bottom: 20px;
    text-align: left;
}

.error-page {margin: 70px auto 70px;}
.error-page h1 {font-size: 50px; text-align: center;padding-top: 50px; color: #2582d6;}
.error-page form {max-width: 240px;margin: auto;}
.error-page form input[type="search"]{margin-bottom: 20px;} 
#primary.error-page h2 {text-align: center; padding: 30px 0 50px; line-height: 38px;}

.category-page {padding: 20px 0 80px;}
.category-page h1 {color: #3E4651; padding-top: 30px;}

.main-single ul {
    padding-left: 20px;
}
.main-single ul li {
    font-size: 16px;
    color: #555;
    line-height: 26px;
    margin-bottom: 10px;
    list-style-type: circle;
}

.socials a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    background-color: #fff;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    margin-right: 5px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.socials a:last-child {
    margin-right: 0;
}
.socials a .fa {
    color: #ffc10f;
}
.socials a:hover .fa {
    color: #d8a104;
}

.top-menu .order-now {
    display: block;
    margin: auto;
    margin-top: 20px;
    text-align: center;
    max-width: 200px;
}