.button-default {
  display: inline-block;
  padding: 15px 20px 15px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: ease 0.2s;
}
.button-default:focus {
  outline: none;
}
.button-default.yellow {
  background-color: #E8AA20;
  color: white;
}
.button-default.yellow:hover {
  background-color: rgb(236.7682926829, 187.6219512195, 78.2317073171);
  transition: ease 0.2s;
}
.button-default.green {
  background-color: #1ABC9C;
  color: white;
}
.button-default.green:hover {
  background-color: rgb(39.7663551402, 225.2336448598, 188.5981308411);
  transition: ease 0.2s;
}
.button-default.white {
  background-color: white;
  color: #34495E;
}
.button-default.white:hover {
  background-color: rgb(229.5, 229.5, 229.5);
  transition: ease 0.2s;
}

.error {
  display: flex;
  margin: 5px 0 0 0;
  align-items: center;
}
.error .error-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 3px 0 0;
  background-image: url(../images/icons/icon_error.svg);
  background-repeat: no-repeat;
}
.error .error-text {
  color: #E74C3C;
  font-size: 14px;
}

.frame {
  display: block;
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

.get-offer {
  background-color: #F2F2F6;
}
.get-offer.colorful {
  background-image: linear-gradient(to right, #1ABC9C, #0075D3);
}
.get-offer.colorful .frame .main-title {
  color: white;
}
.get-offer.colorful .frame .sub-title {
  color: white;
}
.get-offer.colorful .frame .get-offer-photo-container .circle {
  border: 1px solid white;
}
.get-offer.colorful .frame .get-offer-photo-container .get-offer-text {
  color: white;
}
.get-offer.colorful .frame .get-offer-form .title-n-input .title {
  color: white;
}
.get-offer .frame {
  text-align: center;
}
.get-offer .frame .main-title {
  padding: 75px 0 25px 0;
}
.get-offer .frame .get-offer-photo-container .circle {
  display: flex;
  width: 130px;
  height: 130px;
  margin: 25px auto 15px auto;
  border-radius: 100px;
  border: 1px solid #1ABC9C;
  align-items: center;
  justify-content: center;
}
.get-offer .frame .get-offer-photo-container .circle .get-offer-photo {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 100px;
  background-image: url(../images/iza.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.get-offer .frame .get-offer-photo-container .get-offer-text .get-offer-name, .get-offer .frame .get-offer-photo-container .get-offer-text .get-offer-post {
  display: block;
  font-size: 14px;
  text-align: center;
}
.get-offer .frame .get-offer-form {
  display: inline-flex;
  margin: 25px 0 0 0;
  padding: 0 0 75px 0;
  flex-direction: column;
  align-items: center;
}
.get-offer .frame .get-offer-form .title-n-input {
  margin: 0 0 25px 0;
}
.get-offer .frame .get-offer-form .button-default {
  width: 100%;
}

.main-title {
  display: block;
  padding: 0 0 50px 0;
  color: #1ABC9C;
  font-weight: 900;
  font-size: 40px;
  text-align: center;
}

.no-scroll {
  box-sizing: content-box;
  overflow: hidden;
}

.placeholder {
  height: 80px;
}

.sub-title {
  display: block;
  color: #34495E;
  font-size: 18px;
  text-align: center;
}
.sub-title .bold {
  font-weight: 900;
}
.sub-title .bold.green {
  color: #1ABC9C;
}
.sub-title .bold.yellow {
  color: #E8AA20;
}

.title-n-input .title {
  display: block;
  margin: 0 0 3px 0;
  font-size: 14px;
  text-align: left;
}
.title-n-input .input-default {
  display: block;
  padding: 10px 10px 10px 10px;
  width: 400px;
  color: #34495E;
  font-family: "Montserrat", sans-serif;
  border: 2px solid transparent;
  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  transition: ease 0.2s;
}
.title-n-input .input-default:focus {
  outline: none;
  border: 2px solid #1ABC9C;
  transition: ease 0.2s;
}

.sn-input {
  display: none;
}

.video-pop-up {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.video-pop-up .video-container {
  position: relative;
  display: block;
}
.video-pop-up .video-container .icon-close {
  position: absolute;
  display: block;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background-image: url(../images/icons/icon_close.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

body {
  margin: 0;
  padding: 0;
  font-size: 0;
  color: #34495E;
  font-family: "Montserrat", sans-serif;
}
body .header {
  position: fixed;
  width: 100%;
  z-index: 100;
  transition: ease 0.2s;
}
body .header.scrolled, body .header.bg-for-mobile-menu, body .header.bg-for-sub-page {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transition: ease 0.2s;
}
body .header.scrolled .frame .logo-container .logo, body .header.bg-for-mobile-menu .frame .logo-container .logo, body .header.bg-for-sub-page .frame .logo-container .logo {
  background-image: url(../images/logos/logo.svg);
}
body .header.scrolled .frame .navigation-container .navigation, body .header.bg-for-mobile-menu .frame .navigation-container .navigation, body .header.bg-for-sub-page .frame .navigation-container .navigation {
  color: #34495E;
}
body .header.scrolled .frame .navigation-container .navigation.w-border, body .header.bg-for-mobile-menu .frame .navigation-container .navigation.w-border, body .header.bg-for-sub-page .frame .navigation-container .navigation.w-border {
  border: 1px solid #34495E;
}
body .header.scrolled .frame .navigation-container .navigation.w-border:hover, body .header.bg-for-mobile-menu .frame .navigation-container .navigation.w-border:hover, body .header.bg-for-sub-page .frame .navigation-container .navigation.w-border:hover {
  background-color: #34495E;
  color: white;
}
body .header.scrolled .frame .navigation-container .navigation:before, body .header.bg-for-mobile-menu .frame .navigation-container .navigation:before, body .header.bg-for-sub-page .frame .navigation-container .navigation:before {
  background-color: #34495E;
}
body .header.scrolled .frame .mobile-menu span, body .header.bg-for-mobile-menu .frame .mobile-menu span, body .header.bg-for-sub-page .frame .mobile-menu span {
  background-color: #1ABC9C;
}
body .header .frame {
  display: flex;
  height: 80px;
  align-items: center;
}
body .header .frame .logo-container .logo {
  display: block;
  width: 159px;
  height: 45px;
  background-image: url(../images/logos/logo_white.svg);
  background-repeat: no-repeat;
}
body .header .frame .navigation-container {
  display: flex;
  margin: 0 0 0 auto;
  align-items: center;
}
body .header .frame .navigation-container .navigation {
  position: relative;
  display: inline-block;
  margin: 0 25px 0 0;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}
body .header .frame .navigation-container .navigation.w-border {
  margin: 0 0 0 0;
  padding: 15px 30px;
  border: 1px solid white;
  border-radius: 5px;
  transition: ease 0.2s;
}
body .header .frame .navigation-container .navigation.w-border:hover {
  background-color: white;
  color: #34495E;
  transition: ease 0.2s;
}
body .header .frame .navigation-container .navigation.w-border:hover:hover:before {
  transform: scaleX(0);
}
body .header .frame .navigation-container .navigation:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: white;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.2s ease-in-out 0s;
}
body .header .frame .navigation-container .navigation:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
body .header .frame .mobile-menu {
  position: relative;
  display: none;
  width: 35px;
  height: 25px;
  margin: 0 0 0 auto;
  cursor: pointer;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
body .header .frame .mobile-menu span {
  position: absolute;
  display: block;
  left: 0;
  width: 35px;
  height: 5px;
  background-color: white;
  border-radius: 5px;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
}
body .header .frame .mobile-menu span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
body .header .frame .mobile-menu span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
body .header .frame .mobile-menu span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
body .header .frame .mobile-menu.animate span:nth-child(1) {
  top: -3px;
  left: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
body .header .frame .mobile-menu.animate span:nth-child(2) {
  width: 0;
  opacity: 0;
}
body .header .frame .mobile-menu.animate span:nth-child(3) {
  top: 22px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body .main-page .main-block {
  background-image: linear-gradient(to right, #1ABC9C, #0075D3);
}
body .main-page .main-block .main-block-content-container {
  display: flex;
  padding: 75px 0 75px 0;
  align-items: center;
}
body .main-page .main-block .main-block-content-container .main-block-text-container {
  margin: 0 50px 0 0;
  flex: 1;
}
body .main-page .main-block .main-block-content-container .main-block-text-container .main-block-main-title {
  display: block;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
}
body .main-page .main-block .main-block-content-container .main-block-text-container .main-block-main-title .bold {
  font-weight: 900;
}
body .main-page .main-block .main-block-content-container .main-block-text-container .main-block-sub-title {
  display: block;
  margin: 25px 0 25px 0;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}
body .main-page .main-block .main-block-content-container .main-block-text-container .main-block-sub-title .changing-text {
  font-weight: 700;
}
body .main-page .main-block .main-block-content-container .main-block-text-container .buttons-container .button-default {
  margin: 0 15px 0 0;
}
body .main-page .main-block .main-block-content-container .main-block-picture-container {
  display: inline-block;
  flex: 1;
}
body .main-page .main-block .main-block-content-container .main-block-picture-container .main-block-picture {
  width: 100%;
  height: 315px;
  background-image: url(../images/main_block_image.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
body .main-page .advantages .frame {
  padding: 75px 0 75px 0;
  text-align: center;
}
body .main-page .advantages .frame .advantages-container {
  margin: 0 0 50px 0;
}
body .main-page .advantages .frame .advantages-container .all-advantages {
  display: inline-block;
}
body .main-page .advantages .frame .advantages-container .all-advantages .advantage {
  display: flex;
  margin: 0 0 15px 0;
  align-items: center;
}
body .main-page .advantages .frame .advantages-container .all-advantages .advantage .icon-check {
  display: inline-block;
  width: 15px;
  height: 12px;
  margin: 0 5px 0 0;
  background-image: url(../images/icons/icon_check.svg);
  background-repeat: no-repeat;
  flex: none;
}
body .main-page .advantages .frame .advantages-container .all-advantages .advantage .advantage-text {
  display: inline-block;
  color: #34495E;
  font-size: 20px;
}
body .main-page .advantages .frame .advantages-container .all-advantages .advantage .advantage-block-text {
  display: block;
  color: #34495E;
  font-size: 20px;
  padding: 15px;
}
body .main-page .advantages .frame .advantages-container .all-advantages .advantage .advantage-block-text a {
  color: #34495E;
  text-decoration: none;
}
body .main-page .advantages .frame .advantages-container .all-advantages .advantage .advantage-block-text a:hover {
  text-decoration: underline;
}
body .main-page .video-block {
  display: block;
  width: 100%;
  background-image: url(../images/video_bg.png);
  background-size: cover;
}
body .main-page .video-block .frame {
  padding: 196px 0 196px 0;
  text-align: center;
}
body .main-page .video-block .frame .video-container {
  display: inline-block;
  cursor: pointer;
}
body .main-page .video-block .frame .video-container .video-icon {
  display: block;
  width: 71px;
  height: 50px;
  margin: 0 auto 25px auto;
  background-image: url(../images/icons/icon_video.svg);
  background-repeat: no-repeat;
}
body .main-page .video-block .frame .video-container .video-text {
  display: block;
  color: white;
  font-size: 25px;
}
body .main-page .main-tasks .frame {
  padding: 75px 0 75px 0;
}
body .main-page .main-tasks .frame .main-title {
  padding: 0 0 25px 0;
}
body .main-page .main-tasks .frame .main-tasks-container {
  margin: 50px 0 0 0;
  text-align: center;
}
body .main-page .main-tasks .frame .main-tasks-container .all-tasks {
  display: inline-block;
}
body .main-page .main-tasks .frame .main-tasks-container .all-tasks .main-task {
  display: flex;
  margin: 0 0 25px 0;
  align-items: center;
}
body .main-page .main-tasks .frame .main-tasks-container .all-tasks .main-task .task-icon {
  display: inline-block;
  width: 60px;
  height: 50px;
  margin: 0 10px 0 0;
  background-repeat: no-repeat;
  background-position: center center;
  flex: none;
}
body .main-page .main-tasks .frame .main-tasks-container .all-tasks .main-task .task-icon.bill {
  background-image: url(../images/icons/icon_bill.svg);
}
body .main-page .main-tasks .frame .main-tasks-container .all-tasks .main-task .task-icon.excel {
  background-image: url(../images/icons/icon_excel.svg);
}
body .main-page .main-tasks .frame .main-tasks-container .all-tasks .main-task .task-icon.piggy-bank {
  background-image: url(../images/icons/icon_piggy_bank.svg);
}
body .main-page .main-tasks .frame .main-tasks-container .all-tasks .main-task .task-icon.skip-container {
  background-image: url(../images/icons/icon_skip_contianer.svg);
}
body .main-page .main-tasks .frame .main-tasks-container .all-tasks .main-task .task-icon.clock {
  background-image: url(../images/icons/icon_clock.svg);
}
body .main-page .main-tasks .frame .main-tasks-container .all-tasks .main-task .task-icon.calendar {
  background-image: url(../images/icons/icon_calendar.svg);
}
body .main-page .main-tasks .frame .main-tasks-container .all-tasks .main-task .task-text {
  color: #34495E;
  font-size: 20px;
}
body .main-page .review .frame .main-title {
  padding: 75px 0 75px 0;
}
body .main-page .review .frame .reviews-container {
  display: block;
}
body .main-page .review .frame .reviews-container .review-line {
  display: flex;
  margin: 0 0 75px 0;
  align-items: center;
}
body .main-page .review .frame .reviews-container .review-line:nth-child(even) {
  flex-direction: row-reverse;
}
body .main-page .review .frame .reviews-container .review-line:nth-child(even) .review-picture {
  margin: 0 0 0 50px;
}
body .main-page .review .frame .reviews-container .review-line.organization-support .review-picture {
  background-image: url(../images/organization_support.png);
}
body .main-page .review .frame .reviews-container .review-line.online-communication .review-picture {
  background-image: url(../images/online_communication.png);
}
body .main-page .review .frame .reviews-container .review-line.interactive-map .review-picture {
  background-image: url(../images/interactive_map.png);
}
body .main-page .review .frame .reviews-container .review-line.transparent-task .review-picture {
  background-image: url(../images/organization_support.png);
}
body .main-page .review .frame .reviews-container .review-line.mobile-delivery-note .review-picture {
  background-image: url(../images/mobile_delivery_note.png);
}
body .main-page .review .frame .reviews-container .review-line.account-management .review-picture {
  background-image: url(../images/account_management.png);
}
body .main-page .review .frame .reviews-container .review-line.receivables-management-support .review-picture {
  background-image: url(../images/receivables_management_support.png);
}
body .main-page .review .frame .reviews-container .review-line.statistics .review-picture {
  background-image: url(../images/statistics.png);
}
body .main-page .review .frame .reviews-container .review-line.inventory .review-picture {
  background-image: url(../images/inventory.png);
}
body .main-page .review .frame .reviews-container .review-line.work-tracking .review-picture {
  background-image: url(../images/work_tracking.png);
}
body .main-page .review .frame .reviews-container .review-line.individual-permissions .review-picture {
  background-image: url(../images/individual_permissions.png);
}
body .main-page .review .frame .reviews-container .review-line.calculation .review-picture {
  background-image: url(../images/calculation.png);
}
body .main-page .review .frame .reviews-container .review-line.search .review-picture {
  background-image: url(../images/search.png);
}
body .main-page .review .frame .reviews-container .review-line.new-order .review-picture {
  background-image: url(../images/new_order.png);
}
body .main-page .review .frame .reviews-container .review-line.billing .review-picture {
  background-image: url(../images/billing.png);
}
body .main-page .review .frame .reviews-container .review-line.driver-accountability .review-picture {
  background-image: url(../images/driver_accountability.png);
}
body .main-page .review .frame .reviews-container .review-line.price-editor .review-picture {
  background-image: url(../images/price_editor.png);
}
body .main-page .review .frame .reviews-container .review-line .review-picture {
  display: inline-block;
  height: 300px;
  margin: 0 50px 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.25);
  flex: 1;
}
body .main-page .review .frame .reviews-container .review-line .review-text {
  display: inline-block;
  flex: 1;
}
body .main-page .review .frame .reviews-container .review-line .review-text .review-title {
  display: block;
  margin: 0 0 25px 0;
  font-weight: 900;
  font-size: 30px;
}
body .main-page .review .frame .reviews-container .review-line .review-text .review-description {
  display: block;
  font-size: 14px;
  text-align: justify;
}
body .main-page .partners {
  background-color: #F2F2F6;
}
body .main-page .partners .frame .main-title {
  padding: 75px 0 75px 0;
}
body .main-page .partners .frame .partners-container {
  display: flex;
  padding: 0 0 75px 0;
  align-items: flex-start;
}
body .main-page .partners .frame .partners-container .partner {
  display: flex;
  margin: 0 25px 0 0;
  flex: 1;
  align-items: center;
  flex-direction: column;
}
body .main-page .partners .frame .partners-container .partner:last-child {
  margin: 0 0 0 0;
}
body .main-page .partners .frame .partners-container .partner.bau .partner-logo {
  width: 167px;
  background-image: url(../images/logos/bau.png);
}
body .main-page .partners .frame .partners-container .partner.dunanett .partner-logo {
  width: 250px;
  background-image: url(../images/logos/dunanett.png);
}
body .main-page .partners .frame .partners-container .partner.katai .partner-logo {
  width: 167px;
  background-image: url(../images/logos/katai.png);
}
body .main-page .partners .frame .partners-container .partner.nakor .partner-logo {
  width: 185px;
  background-image: url(../images/logos/nakor.png);
}
body .main-page .partners .frame .partners-container .partner .partner-logo {
  display: block;
  height: 120px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
body .main-page .partners .frame .partners-container .partner .quote-icon {
  display: block;
  width: 25px;
  height: 19px;
  margin: 25px 0 15px 0;
  background-image: url(../images/icons/icon_quote.svg);
  background-repeat: no-repeat;
}
body .main-page .partners .frame .partners-container .partner .partner-quote {
  display: block;
  font-size: 14px;
  text-align: center;
}
body .main-page .partners .frame .partners-container .partner .partner-name {
  display: block;
  margin: 25px 0 5px 0;
  font-weight: 900;
  font-size: 20px;
}
body .main-page .partners .frame .partners-container .partner .partner-post {
  display: block;
  font-size: 14px;
  text-align: center;
}
body .blog-page {
  background-color: #F2F2F6;
}
body .blog-page .blog-posts {
  background-color: #F2F2F6;
}
body .blog-page .blog-posts .frame {
  padding: 50px 0 50px 0;
}
body .blog-page .blog-posts .frame .blog-posts-container {
  display: block;
  max-width: 800px;
  margin: 0 auto 0 auto;
  padding: 25px 25px 25px 25px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
body .blog-page .blog-posts .frame .blog-posts-container .blog-post {
  padding: 50px 0 50px 0;
  border-bottom: 1px solid #D1D1D1;
}
body .blog-page .blog-posts .frame .blog-posts-container .blog-post:first-child {
  padding: 0 0 50px 0;
}
body .blog-page .blog-posts .frame .blog-posts-container .blog-post:last-child {
  padding: 50px 0 0 0;
  border-bottom: none;
}
body .blog-page .blog-posts .frame .blog-posts-container .blog-post .blog-post-title {
  display: block;
  margin: 0 0 25px 0;
  font-size: 20px;
  font-weight: 600;
}
body .blog-page .blog-posts .frame .blog-posts-container .blog-post .blog-post-content {
  display: flex;
  align-items: flex-start;
}
body .blog-page .blog-posts .frame .blog-posts-container .blog-post .blog-post-content .blog-post-picture {
  display: inline-block;
  height: 272px;
  margin: 0 25px 0 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  flex: 1;
}
body .blog-page .blog-posts .frame .blog-posts-container .blog-post .blog-post-content .blog-post-text {
  display: inline-block;
  text-align: justify;
  flex: 1;
}
body .blog-page .blog-posts .frame .blog-posts-container .blog-post .blog-post-content .blog-post-text .blog-post-description {
  display: block;
  margin: 0 0 25px 0;
  font-size: 14px;
}
body .blog-page .blog-posts .frame .blog-posts-container .blog-post .blog-post-content .blog-post-text .blog-post-description .bold {
  font-weight: bold;
}
body .article-page .article-post {
  background-color: #F2F2F6;
}
body .article-page .article-post .frame {
  padding: 50px 0 50px 0;
}
body .article-page .article-post .frame .article-container {
  display: block;
  max-width: 800px;
  margin: 0 auto 0 auto;
  padding: 25px 25px 25px 25px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
body .article-page .article-post .frame .article-container .article-title {
  display: block;
  margin: 0 0 25px 0;
  color: #1ABC9C;
  font-size: 30px;
  font-weight: 600;
}
body .article-page .article-post .frame .article-container .article-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
body .article-page .article-post .frame .article-container .article-content .article-description {
  display: block;
  margin: 0 0 25px 0;
  font-size: 14px;
  text-align: justify;
}
body .article-page .article-post .frame .article-container .article-content .article-picture {
  display: inline-block;
  width: 100%;
  height: 400px;
  margin: 0 0 25px 0;
  background-image: url(../images/blog_picture.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
body .article-page .article-post .frame .get-offer.colorful {
  max-width: 800px;
  margin: 50px auto 0 auto;
  border-radius: 5px;
}
body .article-page .article-post .frame .get-offer.colorful .frame {
  padding: 25px 25px 25px 25px;
  box-sizing: border-box;
}
body .article-page .article-post .frame .get-offer.colorful .frame .main-title {
  padding: 0 0 25px 0;
  font-size: 28px;
}
body .article-page .article-post .frame .get-offer.colorful .frame .get-offer-form {
  padding: 0 0 0 0;
}
body .availability-page {
  background-color: #F2F2F6;
}
body .availability-success-page {
  background-color: #F2F2F6;
}
body .availability-success-page .availability-success-post .frame {
  padding: 50px 0 50px 0;
}
body .availability-success-page .availability-success-post .frame .success-icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 25px auto;
  background-image: url(../images/icons/icon_succes.svg);
  background-repeat: no-repeat;
}
body .footer {
  display: block;
  width: 100%;
  background-color: #142C38;
  color: white;
}
body .footer .footer-content-container {
  display: flex;
  height: 80px;
  font-size: 14px;
  align-items: center;
}
body .footer .footer-content-container .footer-left {
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  flex: 1;
}
body .footer .footer-content-container .footer-right {
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  flex: none;
}
body .footer .footer-content-container .footer-right .logo {
  display: inline-block;
  width: 95px;
  height: 25px;
  margin: 0 0 0 10px;
  background-image: url(../images/logos/logo_peaksoft_footer.svg);
  background-repeat: no-repeat;
}
@media only screen and (max-width: 870px) {
  body .header.bg-for-mobile-menu .frame .navigation-container .navigation.w-border {
    border: none;
  }
  body .header.bg-for-mobile-menu .frame .navigation-container .navigation.w-border:hover {
    background-color: #1ABC9C;
    transition: ease 0.2s;
  }
  body .header .frame .navigation-container {
    position: absolute;
    display: none;
    top: 80px;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
  }
  body .header .frame .navigation-container .navigation {
    display: block;
    margin: 0 0 0 0;
    padding: 25px 0 25px 0;
    color: #34495E;
    text-align: center;
    transition: ease 0.2s;
  }
  body .header .frame .navigation-container .navigation:hover {
    background-color: #1ABC9C;
    color: white;
    transition: ease 0.2s;
  }
  body .header .frame .navigation-container .navigation:hover:before {
    transform: scaleX(0);
  }
  body .header .frame .navigation-container .navigation.w-border {
    padding: 25px 0 25px 0;
    transition: ease 0.2s;
  }
  body .header .frame .navigation-container .navigation.w-border:hover {
    background-color: #1ABC9C;
    color: white;
    transition: ease 0.2s;
  }
  body .header .frame .mobile-menu {
    display: block;
  }
  body .main-page .main-block .main-block-content-container {
    flex-direction: column;
  }
  body .main-page .main-block .main-block-content-container .main-block-text-container {
    margin: 0 0 50px 0;
    text-align: center;
  }
  body .main-page .main-block .main-block-content-container .main-block-picture-container {
    width: 100%;
  }
  body .main-page .advantages .frame .advantages-container .all-advantages {
    text-align: left;
  }
  body .main-page .main-tasks .frame .main-tasks-container .all-tasks {
    text-align: left;
  }
  body .main-page .get-offer .frame .get-offer-form {
    display: flex;
  }
  body .main-page .get-offer .frame .get-offer-form .title-n-input {
    width: 100%;
  }
  body .main-page .get-offer .frame .get-offer-form .title-n-input .input-default {
    width: 100%;
  }
  body .main-page .review .frame .reviews-container .review-line {
    flex-direction: column;
  }
  body .main-page .review .frame .reviews-container .review-line:nth-child(even) {
    flex-direction: column;
  }
  body .main-page .review .frame .reviews-container .review-line:nth-child(even) .review-picture {
    width: 100%;
    margin: 0 0 25px 0;
    flex: none;
  }
  body .main-page .review .frame .reviews-container .review-line .review-picture {
    width: 100%;
    margin: 0 0 25px 0;
    flex: none;
  }
  body .main-page .review .frame .reviews-container .review-line .review-text .review-title {
    text-align: center;
  }
  body .main-page .partners .frame .partners-container {
    flex-direction: column;
  }
  body .main-page .partners .frame .partners-container .partner {
    margin: 0 0 50px 0;
  }
  body .main-page .partners .frame .partners-container .partner .partner-logo {
    background-position: bottom center;
  }
  body .main-page .partners .frame .partners-container .partner .quote-icon {
    margin: 15px 0 15px 0;
  }
  body .main-page .partners .frame .partners-container .partner .partner-name {
    margin: 15px 0 5px 0;
  }
  body .blog-page .blog-posts .frame .blog-posts-container .blog-post .blog-post-content {
    flex-direction: column;
  }
  body .blog-page .blog-posts .frame .blog-posts-container .blog-post .blog-post-content .blog-post-picture {
    width: 100%;
    margin: 0 0 25px 0;
    flex: none;
  }
  body .blog-page .blog-posts .frame .blog-posts-container .blog-post .blog-post-content .blog-post-text .button-default {
    display: block;
    text-align: center;
  }
  body .footer .footer-content-container {
    flex-direction: column;
    justify-content: center;
  }
  body .footer .footer-content-container .footer-left, body .footer .footer-content-container .footer-right {
    flex: none;
  }
}

@media only screen and (max-width: 870px) {
  .main-title {
    font-size: 30px;
  }
}
.language-selector {
  display: flex;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}
.language-selector .lang {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.language-selector .lang.hu {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/hu.svg);
}
.language-selector .lang.en {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/en.svg);
}
.language-selector .lang.de {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/de.svg);
}
.language-selector .lang.sk {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/sk.svg);
}
.language-selector .lang.cz {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/cz.svg);
}
.language-selector .lang.pl {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/pl.svg);
}
.language-selector .lang.fr {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/fr.svg);
}
.language-selector .lang.it {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/it.svg);
}
.language-selector .lang.es {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/es.svg);
}
.language-selector .lang.pt {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/pt.svg);
}
.language-selector .lang.hr {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/hr.svg);
}
.language-selector .lang.nl {
  width: 30px;
  height: 20px;
  background-image: url(/assets/images/flags/nl.svg);
}
.language-selector .lang-text {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
}
.language-selector .lang-text a {
  color: #34495E;
  text-decoration: none;
}
.language-selector .lang-text a:hover {
  text-decoration: underline;
}
.language-selector .language-menu-cont {
  display: none;
  position: absolute;
  top: 20px;
  padding-top: 10px;
  z-index: 10;
}
.language-selector .language-menu-cont .language-menu {
  background-color: white;
  border-radius: 4px;
  padding: 20px 10px;
  padding-right: 15px;
  color: black;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.language-selector .language-menu-cont .language-menu .language-menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.language-selector:hover .language-menu-cont {
  display: block;
}

/*# sourceMappingURL=style.css.map */
