
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}



/* Visible hidden */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
}

/* Link */
a{
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #00a29d;
}

a:hover{
  color: #008b87;
  text-decoration: none;
}

/* Site header */
.site-header__top{
  background: #00a29d;
}
.site-header__top-row{
  height: 70px;
}

.site-header__bottom{
  background: #38837c;
}

/* Logo */
.logo{
  width: 120px;
}

/* Site menu */
.site-menu ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.site-menu a{
  height: 60px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  text-transform: uppercase;
  font-size: 16px;
  color: white;
  padding: 0 20px;
}
.site-menu a:hover{
  text-decoration: none;
  background-color: #2e80a6;
}

/* Site main */
.site-content{
  padding: 25px 0;
}

/* breadcrumb */
.breadcrumb{
  margin: 0px 0px 20px;
  padding: 0px;
  list-style: none;
}

.breadcrumb li{
  display: inline-block;
  margin-right: 20px;
}

.breadcrumb a{
  color: #2e80a6;
}

.breadcrumb a:after{
  content: ' > ';
  color: #cacaca;
  width: 15px;
  height: 15px;
  position: absolute;
  margin-left: 10px;
}

.breadcrumb li:last-child a:after{
  display: none;
}

/* Post title */
.post__title{
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
.post__details{
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}
.post__details ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.post__details li{
  margin-left: 5px;
}
.post__details a:after{
  content: ',';
}

.post__date{
  margin-top: 15px;
}

.post__content p{
  font-size: 22px;
  margin-bottom: 20px;
}

.post__content h2{
  font-size: 32px;
  font-weight: 400;
  margin: 25px 0 15px;
}

.post__content img{
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}

/* align */
.align--center{
  text-align: center;
}

/* Social icon */
.social-icon{
  margin: 0px;
  padding: 0px;
  list-style: none;
  margin:25px 0 10px;
}

.social-icon li{
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  font-weight: bold;
  margin-right: 20px;
}

.social-icon img{
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.social-icon li.fb{
  color: #3b5980
}

.social-icon li.tw{
  color: #3b5980
}

.social-icon li.pinterest {
  color: #a92128
}



/* reviews */
.reviews{
 font-family: tahoma;
 margin-top: 25px;
 font-size: 15px;
}


/* Reviews */
.review{
  display: -webkit-box;
  display: flex;
  border-bottom: 1px solid rgb(218, 225, 232);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.review__picture img{
  width: 48px;
  margin-right: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.review__title{
  color: rgb(43, 88, 122);
  font-weight: bold;
  font-size: 12px;
  margin-top: -4px;
}

.review__text{
  font-size: 14px;
}

.review__date{
  color: rgb(153, 153, 153);
}

.reviews__title {
  padding: 3px 3px 2px 5px;
  line-height: 100%;
  color: rgb(69, 104, 142);
  font-weight: bold;
  background: rgb(218, 226, 232) none repeat scroll 0% 0%;
  padding: 4px 4px 4px 6px;
  margin-bottom: 10px;
}

/* Btn */
.btn--red{
  width: 100%;
  height: 58px;
  background: rgb(237, 52, 52);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border-radius: 10px;
  border-bottom: 5px solid rgb(204, 0, 0);
  color: white;
  text-decoration: none;
  position: relative;
  color: white!important;
  text-decoration: none!important;
  margin-top: 25px;
}

.btn--red:active{
  top: 2px;
  border-bottom: none;
}

/* Site aside */
.site-aside{
  border-top: 2px solid #000;
  background: #f9f9f9;
  padding: 0 10px;
}
.site-aside__title{
  font-weight: 400;
  font-size: 22px;
  padding: 10px 0 ;
  border-bottom: 1px solid #ccc;
}


/* post small */
.post-small{
  border-bottom: 1px solid #ccc;
  padding: 17px 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  color: #000;
}
.post-small:hover{
  text-decoration: none;
  color: #000;
}
.post-small:hover .post-small__text{
  opacity: 0.6;
}
.post-small__number{
  display: inline-block;
  color: #2e80a6!important;
  font-size: 30px;
  font-weight: 600;
  margin: 0 10px 0 10px;
}
.post-small__text{
  color: #000;
  font-weight: 600;
  line-height: 1.2;
  padding-left: 20px;
  font-size: 18px;
}


@media (max-width: 767px) {
  .site-menu a {
    padding: 0 10px;
  }
}

.form {
    display: block;
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    border: 3px solid #ff0000;
    box-sizing: border-box;
    margin: 35px auto;
    padding: 30px 15px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
}
.form img {
    max-width: 100%;
}
.input-wrapper {
    margin-bottom: 15px;
}
.prices {
    text-align: center;
    line-height: 1.35;
    padding: 15px 0;
}
.form .al-cost-promo {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 24px;
}
.form .al-cost {
    font-size: 30px;
    font-weight: 700;
    color: green;
}
.input-wrapper input {
    padding: 10px 0 10px 15px;
    width: 100%;
}
.al-form button {
    background: #DE0043;
    color: #fff;
    display: block;
    font-size: 20px;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    box-shadow: 3px 5px 10px 0px rgba(0,0,0,0.43);
    border-radius: 5px;
    margin: 0 auto;
    display: block;
}
.al-form button:hover {
    text-decoration: none;
    color: #fff;
    background: #d20040;
}

