/* =RESET
-------------------------------------------------------------- */
/***********************************************************

Project Name: ArtProm 
Project Description: A business landing pagrs for ArtProm
File Name: styles.css
Version: 1.0.0
Text Domain: artprom

************************************************************/
/* =RESET
-------------------------------------------------------------- *//* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
:root{
    --font-global: 'Inter', sans-serif;
    --font-alt: 'Inter', sans-serif;
    --gradient-primary-1: linear-gradient( 90deg, var(--color-primary-4) 0%, var(--color-primary-3) 33%, var(--color-primary-2) 67%, var(--color-primary-1) 100%);
    --gradient-primary-1-a: linear-gradient( 90deg, var(--color-primary-4) 25%, var(--color-primary-3) 40%, var(--color-primary-2) 60%, var(--color-primary-1) 75%);
    --gradient-primary-1-b: linear-gradient( 45deg, var(--color-primary-4) 0%, var(--color-primary-3) 33%, var(--color-primary-2) 67%, var(--color-primary-1) 100%);
    --gradient-primary-1-c: linear-gradient( 0deg, var(--color-primary-4) 0%, var(--color-primary-3) 33%, var(--color-primary-2) 67%, var(--color-primary-1) 100%);
    --gradient-gray-light-1: linear-gradient(0deg, #f5f5f5 0%, #fff 100%);
    --gradient-gray-light-2: linear-gradient(0deg, #fff 0%, #f5f5f5 100%);
    --gradient-dark-alpha-1: linear-gradient( 90deg, #010101 40%, transparent 87%);
    --gradient-dark-alpha-2: linear-gradient( 90deg, transparent 13%, #010101 60%);
    --gradient-primary-alpha-1: linear-gradient( 90deg, var(--color-primary-1) 40%, transparent 87%);
    --gradient-primary-alpha-2: linear-gradient( 90deg, transparent 13%, var(--color-primary-1) 60%);
    --border-radius-default: 10px;
    --border-radius-large: 30px;
    --box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05),0px 1px 1px 0px rgba(0, 0, 0, 0.03),0px 3px 5px 0px rgba(0, 0, 0, 0.03);
    --box-shadow-strong: 0px 5px 10px 0px rgba(0, 0, 0, 0.08),0px 1px 1px 0px rgba(0, 0, 0, 0.06),0px 3px 5px 0px rgba(0, 0, 0, 0.06);
    --box-shadow-block: 0px 3px 50px 0px rgba(0, 0, 0, 0.05);
    --box-shadow-block-strong: 0px 3px 50px 0px rgba(0, 0, 0, 0.15);  
    --transition-default: all 0.27s cubic-bezier(0, 0, 0.58, 1);
    --ease-default: cubic-bezier(0, 0, 0.58, 1);
    --ease-out-long: cubic-bezier(0,.5,0,1);
    --ease-out-medium: cubic-bezier(0,.57,.55,1);
    --ease-out-short: cubic-bezier(.15,.7,.78,1);
    --ease-elastic-1: cubic-bezier(0.68,-0.55,0.27,1.55);
    --ease-elastic-2: cubic-bezier(0.68,-3,0.27,5);
    
}




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,
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/* =LESS Variables
-------------------------------------------------------------- */
/* =LESS Mixing
-------------------------------------------------------------- */
/* =1. General Styles
-------------------------------------------------------------- */
#rt-sp {
    left: -5000px;
    position: absolute;
    top: 0;
}









body {
  font: 14px/23px "Inter", Helvetica, Arial, sans-serif;
  color: #444444;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
p {
  margin-bottom: 21px;
}
h1 {
  font: 36px/1.5em "Inter", Helvetica, Arial, sans-serif;
}
h2,
h3 {
  font: 21px/1.5em "Inter", Helvetica, Arial, sans-serif;
}
h3 {
  margin-bottom: 21px;
}
h4 {
  font: 16px/1.5em "Inter", Helvetica, Arial, sans-serif;
}
h5 {
  font: 14px/1.5em "Inter", Helvetica, Arial, sans-serif;
}
h6 {
  font: 12px/1.5em "Inter", Helvetica, Arial, sans-serif;
}

a {
  text-decoration: none;
  color: #010101;
  outline: none;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

small {
  font-size: 85%;
}


a:hover {
  
}
.link-go-top {
  font: italic 14px "Gentium Basic", Georgia, serif;
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
  height: auto;
  width: 100%;
}
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}
.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}
a:active,
a:focus,
img {
  outline: medium none;
}
img {
  border: 0 none;
}
em {
  font-style: italic;
}
sup {
  vertical-align: super;
  font-size: 0.6em;
}

.entry-content img {
	max-width:100%;
}














/* Використовується -> */

.logo-color {
  color: #D81715;
}

.wp-caption {
  position: relative;
  width: 100%!important;
}
.wp-caption img{
  width: 100%;
  height: 100%;
}
.wp-caption-text {
  font-size: 11px;
  font-style: italic;
  text-align: center;
  color: black;
  line-height: 1.5;
  padding-right: 1em;
}
strong {
  font-weight: bold;
}

.is-type-video {margin-bottom:20px;}
.yt-lazy-wrapper {margin:auto;}

.btn-large {
  font-size: 15px;
  padding: 9px 14px;
}
.section-page article .entry-content {
  padding: 1em 0em;
}

.section-page article .entry-content .intro-text {
  overflow: hidden;
}
.section-page article .entry-content ul.intro-list {
  background: none repeat scroll 0 center transparent;
  border: medium none;
  float: left;
  margin: 0 15px 37px 0px;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
}
.section-page article .entry-content .intro-list li {
  padding-bottom: 2px;
  cursor: pointer;
  list-style-image: none;
  list-style: none;
}
.section-page article .entry-content .intro-list li:before {
  content: ' ';
  display: inline-block;
  width: 3px;
  height: 21px;
  background: #00a9ec;
  margin: 0px 18px 0 0;
  opacity: 0.4;
  position: relative;
  top: 5px;
  transition: opacity 0.6s ease ;
}
.section-page article .entry-content .intro-list li:hover:before {
  opacity: 1;
}
.section-page article .entry-content .intro-list li:nth-child(2):before {
  background: #43b51f;
}
.section-page article .entry-content .intro-list li:nth-child(3):before {
  background: #ff7800;
}
.section-page article .entry-content .intro-list li:nth-child(4):before {
  background: #df0024;
}
.section-page article .entry-content .intro-list li:nth-child(5):before {
  background: #d68a3a;
}
.section-page article .entry-content .intro-list li:nth-child(6):before {
  background: #202020;
}
/* <- Використовується */

.section-page article h2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 1em;
  color: #D2232A;
}
.section-page article h3 {
  font-size: 18px;
}
.section-page article header img {
  border-radius: 6px 6px 0 0;
  border-bottom: 5px solid #a20b0f;
  margin-bottom: 2em;
}
.section-page article p {
  font-family: 'Inter', 'Arial', 'sans-serif';
  font-weight: 400;
  font-size: 16px;
  color: #757575;
}

.section-page article a:hover {
  text-decoration: underline;
}
.section-page article ul, .post-listing ul {
    background-attachment: fixed;
    border-bottom: 1px solid #D3D3D3;
    border-top: 1px solid #D3D3D3;
    margin: 25px 0px;
    padding: 1em 1em 1em 0;
    line-height: 24px;
    border-right: 5px solid #efbc5e;
    border-left: 5px solid #efbc5e;
    font-size: 16px!important;
    padding: 15px;
    line-height: 1.718;
}
.section-page article ul li, .post-listing ul li {
	margin: 0 0 0 1.5rem;
	list-style: square;
}
.section-page aside {
  margin-top: 3em;
}
.section-page aside img {
  margin-bottom: 2em;
}

/****************************************************************/
/*=FOOTER */
/****************************************************************/
.footer-top-container {
  background-color: #000;
}

.footer-top-container a {
  color: #d4d4d4;
}

.footer-top-container a:hover {
  color: #b4b4b4;

}
.address-footer-container {
  margin-top: 12px;
  text-shadow: 0 -1px 0 #000000;
}
.address-footer-container a {
  font-style: italic;
}
.footer-quote blockquote {
  text-shadow: 0 -1px 0 #000000;
  position: relative;
}
.footer-quote blockquote:before {
  content: '';
  background: url('img/r-footer-quote.png') no-repeat;
  width: 20px;
  height: 14px;
  display: block;
  position: absolute;
  left: -45px;
  top: -5px;
}
.footer-quote blockquote:after {
  content: '';
  background: url('img/l-footer-quote.png') no-repeat;
  width: 20px;
  height: 14px;
  display: block;
  position: absolute;
  right: -2px;
  bottom: -5px;
}
.footer-quote blockquote p {
  color: #70CB00;
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 15px;
  margin-bottom: 12px;
}
.footer-quote blockquote small {
  color: #4F4F4F;
  font-size: 14px;
}
.footer-sep {
  margin: 1em 0;
  border: none;
  border-top: 1px solid #141414;
  border-bottom: 1px solid #333333;
}
.footer-menu {
	padding-bottom: 25px;
	display:flex;
	flex-wrap: wrap;
}
.footer-menu ul {
  text-shadow: 0 -1px 0 #000000;
}
.footer-menu li {
  margin-bottom: 3px;
  font-size: 14px;
}
.footer-menu li a {
  color: #7F7F7F;
}
.footer-menu li a:hover {
  text-decoration: underline;
}
.footer-menu li:first-child {
  margin-bottom: 1rem;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: bold;
}
.footer-menu li:first-child a {
  color: #cccccc;
}
.footer-menu li:first-child a:hover {
  color: white;
  text-decoration: none;
}
.footer-copyright-container {
  background: #151515;
  border-top: 1px solid #333;
}
.footer-copyright-container a {
  color: #7F7F7F;
}
.footer-copyright-container a:hover {
  color: #b4b4b4;
  text-decoration: underline;
}

.footer-copyright-container .footer-copyright {
	line-height: 55px;
	margin: 25px;
}
.footer-copyright-container .footer-copyright p {
  margin: 0;
  font-size: 14px;
}
.footer-copyright-container ul {
  float: right;
}
.footer-copyright-container ul .menu-item {
  display: inline;
  font-size: 13px;
  line-height: 63px;
}
.clear {
  clear: both;
  line-height: 1px;
}

.post-nav-link .nav-previous {
  float: left;
}
.post-nav-link .nav-next {
  float: right;
}
.icon-chevron-right {
    background-image: url("img/glyphicons-halflings.png");
    background-position: 14px 14px;
    background-repeat: no-repeat;
    display: inline-block;
    height: 14px;
    line-height: 14px;
    margin-top: 1px;
    vertical-align: text-top;
    width: 14px;
}
ul.address-list li svg {
	vertical-align:middle;
}

/****************************************************************/
/*=MENU NAV SIDEBAR */
/****************************************************************/

.nav:first-child {
  margin: 0px;
}

.nav {
  list-style: none outside none;
  margin-top: 21px;
  font-size: 12px;
  background-color: #FFFFFF;
  border-radius: 6px 6px 6px 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.067);    
  padding: 0;
}
.nav li { 
  line-height: 20px;
  width:100%;
}
.nav li:first-child a {
  border-radius: 6px 6px 0 0;
}
.nav li a {
  font-style: normal;
  padding: 6px 15px;
   border: 1px solid #E5E5E5;
   display: block;
   margin: 0 0 -1px;
}
.nav li a:hover {
  background: #f5f5f5;
  text-decoration: none;
}
.nav li a.transport {
  background: #D2232A;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 15px;
}
.nav li a.transport:hover {
  opacity: 0.8;
}
.nav li a.vizRek {
  color: white;
  background: #008141;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 15px;
}
.nav li a.vizRek:hover {
  opacity: 0.8;
}
.nav li a.kons {
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 15px;
  background: #FAA732;
}
.nav li a.kons:hover {
  opacity: 0.8;  
}
.nav li a.pos {
  background: #974A16;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 15px;
}
.nav li a.pos:hover {
  background: #974A16;
  opacity: 0.9;
}
.nav li a.shchyty {
  background: #F15922;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 15px;
}
.nav li a.shchyty:hover {
  background: #F15922;
  opacity: 0.9;
}
.nav li a.print {
  background: #008784;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 15px;
}

.nav li a.print:hover {
  background: #008784;
  opacity: 0.9;
}

.nav a i {
  float: right;
    margin-right: -6px;
    margin-left: 14px;
    margin-top: 2px;
    opacity: 0.25;
    background-position: -456px -72px;
}

.nav a:hover i {
  opacity: 0.5;
}



/****************************************************************/
/*=MAIN INTRO */
/****************************************************************/
.intro-figure {
  font-style: italic;
  margin: 2em 0 0 0;
}
.intro-figure p {
  padding-top: 0px;
  margin-bottom: 10px;
}
.intro-figure img {
  float: left;
  margin-right: 21px;
  display: block;  
  height: auto;
}
.figure-cycle img {
  width: 90px;
}
.entry-content td, .entry-content th {
	border: 2px solid #999;
	padding: 5px;
}
.entry-content table { 
  height: 100%!important;
  display: block;
  width: 100%;
  overflow-x: auto;
  margin-bottom: 15px;
}
.wp-block-image img{
  width: 100%;
  height: 100%;
}

.iconregions {
    float: left;
    padding: 0px 5px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
	line-height: 18px;
	width:auto;
}

















@media (max-width: 767px) {
	.footer-top-container {
		padding: 15px;
	}
	.footer-quote blockquote:before {
		position: inherit;
		left: 0px;
		top: 0px;
	}

	.footer-copyright-container .footer-copyright {
		line-height: 32px;
	}
	.section-page article .entry-content .intro-list li {
		margin-left:15px;
	}
}

@media ( max-width: 500px ) {
	body{
		padding-right: 15px!important;
		padding-left: 15px!important;
	}
	.section-page article .entry-content {
		padding: 0px;
	}
	.wp-block-image .size-full{
		width: 100%;
	}
	.section-page article ul li{
		padding: 1px;
		margin: 0 0 0 1.3rem;
	}
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
@-ms-viewport {
  width: device-width;
}
.hidden {
  display: none;
  visibility: hidden;
}
@media (max-width: 1200px) {
  .row {
    margin: 0px;
    *zoom: 1;
  }
  .row:before,
  .row:after {
    display: table;
    line-height: 0;
    content: "";
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin: 0px;
  }
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 1170px;
  }
  input,
  textarea,
  .uneditable-input {
    margin-left: 0;
  }
  .thumbnails {
    margin-left: -30px;
  }
  .thumbnails > li {
    margin-left: 30px;
  }
    .iconregions {
        font-size: 12px!important;
    	line-height: 12px!important;
    }
}

@media (min-width: 768px) and (max-width: 979px) {
  .row {
    margin: 0px;
    *zoom: 1;
  }
  .row:before,
  .row:after {
    display: table;
    line-height: 0;
    content: "";
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin: 0px;
  }

  .flex-wrap .toamo{
    display: flex;
  }

  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 724px;
  }
	.hidden-phonemap{
		display:none!important;
	}
  input,
  textarea,
  .uneditable-input {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  body {
    padding-right: 20px;
    padding-left: 20px;
  }
  .navbar-fixed-top,
  .navbar-fixed-bottom,
  .navbar-static-top {
    margin-right: -20px;
    margin-left: -20px;
  }
  .flex-wrap .toamo{
    display: flex;
  }


	.footer-copyright {
    margin: 15px 0px;
}
	
	button#button_submit {
		font-size: 14px!important;
		padding: 0px 15px!important;
	}

	
  .container-fluid {
    padding: 0;
  }
  .dl-horizontal dt {
    float: none;
    width: auto;
    clear: none;
    text-align: left;
  }
  .dl-horizontal dd {
    margin-left: 0;
  }
  .container {
    width: auto;
  }
  .row,
  .thumbnails {
    margin-left: 0;
  }
  .thumbnails > li {
    float: none;
    margin-left: 0;
  }
  [class*="span"],
  .uneditable-input[class*="span"] {
    display: block;
    float: none;
    width: 100%;
    margin-left: 0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
  .input-large,
  .input-xlarge,
  .input-xxlarge,
  input[class*="span"],
  select[class*="span"],
  textarea[class*="span"],
  .uneditable-input {
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
  .input-prepend input,
  .input-append input,
  .input-prepend input[class*="span"],
  .input-append input[class*="span"] {
    display: inline-block;
    width: auto;
  }

  .modal {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    margin: 0;
  }
  .modal.fade {
    top: -100px;
  }
  .modal.fade.in {
    top: 20px;
  }

}

@media (max-width: 480px) {
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0);
  }
  .page-header h1 small {
    display: block;
    line-height: 20px;
  }
  input[type="checkbox"],
  input[type="radio"] {
    border: 1px solid #ccc;
  }
  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  .form-horizontal .controls {
    margin-left: 0;
  }
  .form-horizontal .control-list {
    padding-top: 0;
  }
  .form-horizontal .form-actions {
    padding-right: 10px;
    padding-left: 10px;
  }
  .media .pull-left,
  .media .pull-right {
    display: block;
    float: none;
    margin-bottom: 10px;
  }
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }
  .modal {
    top: 10px;
    right: 10px;
    left: 10px;
  }
  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }
  .carousel-caption {
    position: static;
  }
}

@media (max-width: 979px) {
  body {
    padding-top: 0;
  }
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    position: static;
  }
  .navbar-fixed-top {
    margin-bottom: 20px;
  }
  .navbar-fixed-bottom {
    margin-top: 20px;
  }
  .navbar-fixed-top .navbar-inner,
  .navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }
  .navbar .container {
    width: auto;
    padding: 0;
  }
  .navbar .brand {
    padding-right: 10px;
    padding-left: 10px;
    margin: 0 0 0 -5px;
  }
  .nav-collapse {
    clear: both;
  }
  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px;
  }
  .nav-collapse .nav > li {
    float: none;
  }
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  .nav-collapse .nav .nav-header {
    color: #777777;
    text-shadow: none;
  }
  .nav-collapse .nav > li > a,
  .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #777777;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
  }
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
  }
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > li > a:hover,
  .nav-collapse .nav > li > a:focus,
  .nav-collapse .dropdown-menu a:hover,
  .nav-collapse .dropdown-menu a:focus {
    background-color: #f2f2f2;
  }
  .navbar-inverse .nav-collapse .nav > li > a,
  .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999999;
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover,
  .navbar-inverse .nav-collapse .nav > li > a:focus,
  .navbar-inverse .nav-collapse .dropdown-menu a:hover,
  .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111111;
  }
  .nav-collapse.in .btn-group {
    padding: 0;
    margin-top: 5px;
  }
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    display: none;
    float: none;
    max-width: none;
    padding: 0;
    margin: 0 15px;
    background-color: transparent;
    border: none;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
  }
  .nav-collapse .open > .dropdown-menu {
    display: block;
  }
  .nav-collapse .dropdown-menu:before,
  .nav-collapse .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  .nav-collapse .nav > li > .dropdown-menu:before,
  .nav-collapse .nav > li > .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .navbar-form,
  .nav-collapse .navbar-search {
    float: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
       -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-inverse .nav-collapse .navbar-form,
  .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111111;
    border-bottom-color: #111111;
  }
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }
  .nav-collapse,
  .nav-collapse.collapse {
    height: 0;
    overflow: hidden;
  }
  .navbar .btn-navbar {
    display: block;
  }
  .navbar-static .navbar-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
  #toamo{
    position: relative;
  }
}

@media (min-width: 980px) {
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}
.btn-uCalc {
	
  font-size: 20px;
  margin: 15px auto;
  text-align: center;
  padding: 9px 30px;
  display: table;
}

.aligncenter {
	text-align:center;
}


.pagination {
  display: flex;
  justify-content: center;
  list-style: none; /* remove list bullets */
  padding: 0px;
}

.pagination .nav-links a, .pagination .nav-links span {
  display: block; /* let links fill the list item */
  padding: 8px 12px;
  text-decoration: none;
  border: 1px solid gray;
  color: black;
  margin: 0 4px;
  border-radius: 5px; /* add rounded borders */
}
.pagination .nav-links {
	display: flex;
}
.current {
    background: skyblue;
}


iframe {max-width:100%;}
iframe.amoforms_iframe {width: 530px!important;}
#toamo{
  margin: 0 5px;
  height: auto;
  position: sticky;
  top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
margin-top: 40px;
}

.toamo {
  width: 100%;
  height: 40px;
  text-align: center;
  margin: 30px 0px;
  display: none;
  justify-content: center;
  align-items: center; 
}
.toamo a {
  padding: 10px 15px;
  color: rgb(250, 22, 0)!important;
  border-color: rgb(248, 3, 3) ;
  border: 2px solid rgb(248, 3, 3);
  background-color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
.toamo a:hover{
  color: #fff !important;
  background-color: rgb(255, 0, 0) ;
  text-decoration: none!important;
}
.flex-wrap{
  flex-wrap: wrap;
  display: flex
}

.video_center-fullwidth{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.amo_block{
	margin-top: 2rem;
	padding: 5px;
}
.video_center-fullwidth iframe{
  width: 100%!important;
}
