/* Fonts */
@font-face {
  font-family: 'OpenSans-Regular';
  src: url(../fonts/OpenSans-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Bold';
  src: url(../fonts/OpenSans-Bold.ttf);
  font-weight: bold;
  font-style: bold;
}

@font-face {
  font-family: 'OpenSans-SemiBold';
  src: url(../fonts/OpenSans-SemiBold.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-ExtraBold';
  src: url(../fonts/OpenSans-ExtraBold.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway-ExtraBold';
  src: url(../fonts/Raleway-ExtraBold.ttf);
  font-weight: normal;
  font-style: normal;
}

/* Grid */
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.hidden {
  visibility: hidden;
  padding: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}

button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  font-family: "OpenSans-Regular", Arial, Helvetica, sans-serif;
}

input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "OpenSans-Regular", Arial, Helvetica, sans-serif;
}

/* Main styles */
html {
  scroll-behavior: smooth;
}

.content {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1170px;
}

body {
  font-family: "OpenSans-Regular", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway-ExtraBold", Arial, Helvetica, sans-serif;
}

h2 {
  color: #10286f;
  text-transform: uppercase;
  font-family: "Raleway-ExtraBold", Arial, Helvetica, sans-serif;
  font-size: 25px;
  margin-top: 0;
  margin-bottom: 40px;
  padding-top: 0;
  position: relative;
}

h2:before {
  content: '';
  display: inline-block;
  width: 58px;
  height: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/h2-before.png);
  position: absolute;
  bottom: -12px;
  left: -15px;
}

/* Header */
.mobile {
  display: none;
}

.mobile-icon {
  display: inline-block;
  width: 30px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/mobile-icon.png);
}

.header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/header-bg3.jpg);
  color: #ffffff;
}

.header .content {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 700px;
}

.header-body {
  margin-top: 25px;
}

.header-pre {
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #f1404b;
  font-weight: bold;
}

.header-title {
  color: #00357b;
  font-size: 32px;
  font-family: "Raleway-ExtraBold", Arial, Helvetica, sans-serif;
  margin-top: 14px;
  margin-bottom: 38px;
}

.header-subtitle {
  color: #ffffff;
  font-size: 16px;
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
  padding-bottom: 0;
  margin-top: 25px;
  margin-bottom: 5px;
}

.header-text {
  margin-top: 0;
  padding-top: 0;
}

.header-item {
  margin: 4px 0;
}

.header-item::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 7px;
  background-image: url(../img/header-item.png);
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  top: 2px;
}

.header-des {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.header-des-text {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-bottom: 6px;
  padding-right: 40px;
}

.header-btn {
  background-color: #f1404b;
  color: #ffffff;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 12px 25px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 15px;
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
}

.header-btn:hover, .header-btn:focus {
  background-color: #e66d75;
}

.header-btn-icon {
  display: inline-block;
  min-width: 20px;
  width: 20px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/header-btn-icon.png);
  margin-right: 10px;
}

.nav {
  padding: 30px 0;
}

.nav-body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-right {
  position: relative;
}

.adress {
  color: #10286f;
  font-size: 15px;
}

.adress-list {
  margin: 0 -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.adress-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px;
}

.adress-icon {
  display: inline-block;
  min-width: 23px;
  width: 23px;
  height: 23px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.adress-icon-one {
  background-image: url(../img/adress-icon-one.png);
}

.adress-icon-thue {
  background-image: url(../img/adress-icon-thue.png);
}

.adress-link {
  color: #10286f;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.adress-link-bold {
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
}

.adress-link:hover, .adress-link:focus {
  color: #4b6ac5;
}

.menu {
  font-size: 14px;
  color: #333333;
}

.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: -35px;
}

.menu-item {
  margin: 0 10px;
}

.menu-link {
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.menu-link.active, .menu-link:hover, .menu-link:focus {
  border-bottom: 1px solid #f1404b;
}

.desigion-btn {
  color: #ffffff;
  font-size: 13px;
  font-family: "OpenSans-SemiBold", Arial, Helvetica, sans-serif;
  background-color: #f1404b;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 10px 20px;
  text-transform: uppercase;
}

.desigion-btn:hover, .desigion-btn:focus {
  background-color: #e66d75;
}

.lang {
  text-transform: uppercase;
  position: absolute;
  bottom: -37px;
  right: 15px;
}

.lang-drop {
  display: none;
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid rgba(161, 161, 161, 0.6);
  width: 125px;
  position: absolute;
  right: 0;
  margin-top: 5px;
}

.lang-drop.show {
  display: block;
}

.lang-body {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.lang-btn {
  text-transform: uppercase;
  font-size: 13px;
  color: #000000;
  border: 1px solid rgba(161, 161, 161, 0.6);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 5px 10px;
}

.lang-btn:hover, .lang-btn:focus {
  background-color: rgba(161, 161, 161, 0.6);
}

.lang-icon {
  display: inline-block;
  min-width: 6px;
  width: 6px;
  height: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/lang-icon.png);
  margin-left: 10px;
}

.lang-list {
  text-align: left;
}

.lang-link {
  text-decoration: none;
  color: #000000;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.lang-link:hover, .lang-link:focus {
  border-bottom: 1px solid #000000;
}

/* Sections */
.about {
  padding: 90px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/about-bg.jpg);
}

.about-image {
  width: 100%;
}

.about-semi {
  color: #10286f;
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
}

.where {
  background-color: #e9f9ff;
  padding: 76px 0 90px 0;
}

.where-image {
  width: 100%;
}

.where-subtitle {
  font: "OpenSans-Bold", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #10286f;
}

.where-pure {
  margin-bottom: 5px;
  padding-bottom: 0;
}

.where-clean {
  margin-top: 0;
  padding-top: 0;
}

.where-more {
  margin-top: 30px;
}

.where-list {
  margin-top: 72px;
}

.subnav-list {
  margin: 0 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subnav-item {
  margin: 10px;
}

.info {
  font-size: 13px;
}

.info-list {
  margin: 0 -3px 10px -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info-item {
  background-color: #ffffff;
  width: 130px;
  padding: 20px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 3px;
}

.info-icon {
  display: block;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
}

.info-icon-one {
  background-image: url(../img/info-icon-one.png);
}

.info-icon-thue {
  background-image: url(../img/info-icon-thue.png);
}

.info-icon-three {
  background-image: url(../img/info-icon-three.png);
}

.info-icon-four {
  background-image: url(../img/info-icon-four.png);
}

.info-text {
  display: inline-block;
  color: #000000;
  margin-top: 10px;
}

.use {
  padding: 90px 0 79px 0;
}

.use-list {
  margin: 0 -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.use-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 20px 20px 20px;
  width: 50%;
}

.use-picture {
  margin-right: 20px;
}

.use-subtitle {
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
  color: #10286f;
}

.use-more {
  margin-top: 20px;
}

.help {
  background-color: #f1404b;
  color: #ffffff;
  padding: 37px 0;
}

.help-body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.help-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.help-icon {
  display: inline-block;
  min-width: 55px;
  width: 55px;
  height: 55px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/help-icon.png);
  margin-right: 20px;
}

.help-title {
  font-size: 24px;
  font-family: "Raleway-ExtraBold", Arial, Helvetica, sans-serif;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.help-descr {
  padding: 0;
  margin: 10px 0 0 0;
}

.help-btn {
  background-color: #ffffff;
  color: #10286f;
  padding: 15px 30px;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "OpenSans-SemiBold", Arial, Helvetica, sans-serif;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.help-btn:hover, .help-btn:focus {
  background-color: #d4d4d4;
}

.instruct {
  padding: 105px 0 40px 0;
}

.instruct-title {
  margin-bottom: 50px;
}

.instruct-info {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 0 4px;
}

.instruct-image {
  width: 100%;
}

.instruct-table {
  width: 100%;
  font-size: 12px;
}

.instruct-table th {
  background-color: #ebf5fe;
  color: #10286f;
  font-size: 18px;
  font-family: "OpenSans-SemiBold", Arial, Helvetica, sans-serif;
  padding: 12px 0;
}

.instruct-table td {
  padding: 5px;
}

.instruct-value {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 25px;
}

.instruct-semi {
  color: #f1404b;
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
}

.instruct-consentrate {
  font-size: 14px;
  color: #10286f;
  margin-top: 33px;
}

.instruct-picture {
  position: relative;
  margin-top: 61px;
}

.instruct-bottle {
  position: absolute;
  bottom: -48px;
  right: 0;
}

.instruct-bottle-icon {
  display: inline-block;
  width: 155px;
  height: 125px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/instruct-bottle-icon.png);
}

.instruct-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 11px -5px;
}

.instruct-btn {
  position: relative;
  z-index: 10;
  background-color: #f1404b;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 13px;
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 37px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.instruct-btn:hover, .instruct-btn:focus {
  background-color: #e66d75;
}

.instruct-btn-blue {
  background-color: #10286f;
}

.instruct-btn-blue:hover, .instruct-btn-blue:focus {
  background-color: #284599;
}

.instruct-icon {
  display: inline-block;
  width: 23px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}

.instruct-icon-one {
  background-image: url(../img/instruct-icon-one.png);
}

.instruct-icon-thue {
  background-image: url(../img/instruct-icon-thue.png);
}

.instruct-subtitle {
  font-size: 14px;
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
  color: #10286f;
  width: 60%;
  margin-top: 20px;
}

.best {
  padding: 7px 0 54px 0;
}

.best-list {
  font-size: 16px;
  text-align: center;
  margin: 0 -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.best-item {
  margin: 20px;
  width: 16%;
}

.best-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  text-align: center;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
}

.best-icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 30px;
}

.best-icon-one {
  background-image: url(../img/best-icon-one.png);
}

.best-icon-thue {
  background-image: url(../img/best-icon-thue.png);
}

.best-icon-three {
  background-image: url(../img/best-icon-three.png);
}

.best-icon-four {
  background-image: url(../img/best-icon-four.png);
}

.best-icon-five {
  background-image: url(../img/best-icon-five.png);
}

.best-icon-six {
  background-image: url(../img/best-icon-six.png);
}

.map {
  text-align: right;
  padding: 0;
  margin-bottom: -5px;
}

.map:hover .map-place:before {
  opacity: 0;
  visibility: hidden;
}

.map-place {
  position: relative;
}

.map-place:before {
  content: '';
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100%;
  height: 99%;
  background-color: rgba(43, 144, 217, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: visible;
}

.map .content {
  position: relative;
}

.map-info {
  bottom: 55px;
  right: 15px;
  position: absolute;
  z-index: 10;
  display: inline-block;
  text-align: left;
  width: 360px;
  color: #3d3636;
  font-size: 14px;
  -webkit-box-shadow: 3px 3px 18px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 18px 3px rgba(0, 0, 0, 0.15);
}

.map-top {
  background-color: #ffffff;
  padding: 25px 25px 15px 25px;
}

.map-subtitle {
  margin-top: 0;
  padding-top: 0;
  text-transform: uppercase;
  font-family: "Raleway-ExtraBold", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #10286f;
}

.map-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 12px 0;
}

.map-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}

.map-icon-one {
  background-image: url(../img/map-icon-one.png);
}

.map-icon-thue {
  background-image: url(../img/map-icon-thue.png);
}

.map-icon-three {
  background-image: url(../img/map-icon-three.png);
}

.map-link {
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-bottom: 1px solid transparent;
}

.map-link:hover, .map-link:focus {
  color: #333;
  border-bottom: 1px solid #000000;
}

.map-bottom {
  background-color: #f7f7f7;
  padding: 25px;
}

.sender-list {
  margin: 0 -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sender-item {
  margin: 5px;
  width: 46%;
}

.sender-field {
  background-color: #ffffff;
  width: 100%;
  border: 1px solid #82bcd7;
  padding: 7px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 13px;
  height: 35px;
}

.sender-field::-webkit-input-placeholder {
  color: #999999;
}

.sender-field:-ms-input-placeholder {
  color: #999999;
}

.sender-field::-ms-input-placeholder {
  color: #999999;
}

.sender-field::placeholder {
  color: #999999;
}

.sender-btn {
  background-color: #f1404b;
  color: #ffffff;
  font-size: 13px;
  padding: 5px 25px;
  height: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sender-btn:hover, .sender-btn:focus {
  background-color: #e66d75;
}

.sender-link {
  font-size: 13px;
  color: #999999;
  text-decoration: none;
  border-bottom: 1px solid #999999;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sender-link:hover, .sender-link:focus {
  border-bottom: 1px solid transparent;
}

/* Footer */
.footer {
  background-color: #091c53;
  color: #ffffff;
  padding: 12px 0;
  font-size: 12px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer-link:hover, .footer-link:focus {
  border-bottom: 1px solid #ffffff;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  text-align: center;
}

.modal.visible {
  display: block;
}

.modal-body {
  display: inline-block;
  background-color: #f9f9f9;
  width: 300px;
  -webkit-box-shadow: 9px 14px 23px 7px rgba(0, 0, 0, 0.09);
          box-shadow: 9px 14px 23px 7px rgba(0, 0, 0, 0.09);
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 7px;
  top: 7px;
}

.modal-close-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/modal-close-icon.png);
  background-position: center;
  background-repeat: no-repeat;
}

.modal-title {
  text-align: center;
  color: #10286f;
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}

.modal-item {
  margin: 10px 0;
}

.modal-field {
  font-size: 14px;
  padding: 10px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffff;
  border: 1px solid #dfe0e4;
  width: 100%;
}

.modal-field::-webkit-input-placeholder {
  color: #666666;
}

.modal-field:-ms-input-placeholder {
  color: #666666;
}

.modal-field::-ms-input-placeholder {
  color: #666666;
}

.modal-field::placeholder {
  color: #666666;
}

.modal-more {
  text-align: center;
  margin-top: 28px;
}

.modal-more-btn {
  font-size: 14px;
  font-family: "OpenSans-Bold", Arial, Helvetica, sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #f1404b;
  padding: 7px 15px;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.modal-more-btn:hover, .modal-more-btn:focus {
  background-color: #e66d75;
}

.policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 11px;
  color: #333333;
  margin-top: 20px;
  margin-left: 5px;
  text-align: left;
}

.policy-icon {
  display: inline-block;
  width: 11px;
  height: 15px;
  min-width: 11px;
  background-image: url(../img/policy-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.policy-text {
  padding: 0;
  margin: 0;
}

.policy-link {
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.policy-link:hover, .policy-link:focus {
  border-bottom: 1px solid transparent;
}

/* Slider */
.slick-prev:before {
  content: url(../img/subnav-arrow-left.png);
}

.slick-next:before {
  content: url(../img/subnav-arrow-right.png);
}

.slick-prev, .slick-next {
  top: 44.5%;
}

.slick-prev {
  left: -15px;
}

.slick-next {
  right: -3px;
}
/*# sourceMappingURL=style.css.map */