* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  display:flex;
  flex-direction: column;
  min-height:100vh;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

header .logo-wrapper a {
  padding: 1rem 0;
  display: block;
}

header .logo-wrapper a img {
  display: block;
}

header .navigation {
  background: #23211d;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

header .navigation ul {
  display: flex;
  justify-content: space-around;
  padding: 0 0.625rem;
  margin: 0 auto;
  list-style: none;
  max-width: 64rem;
  font-size: 14px;
}

header .navigation ul li.divider {
  display: block;
}

header .navigation ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
}

section {
  padding: 5rem 0;
  flex:1;
}

section .text {
  text-align: center;
  margin-bottom: 3rem;
}

.form {
  max-width: 550px;
  margin: 0 auto;
}

.form .form-group {
  margin-bottom: 1rem;
}

.form .form-group::after {
  content: "";
  display: table;
  clear: both;
}

.form label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.form .checkbox label {
  margin-bottom: 0;
}

.form .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  background-color: #fff;
  border: 1px solid #ced4da;
}

.form .form-control.error {
  border-color: #ff6347;
}

.form .questionnaire label.error {
  color: #ff6347;
  margin-top: 5px;
  font-size: 14px;
}

.choices__inner {
  background: none;
  border-color: #ced4da;
  padding: 0.375rem 0.75rem;
  border-radius: 0;
  min-height: auto;
}

.ui-datepicker .ui-widget-header {
	border-color: #eb5369 !important;
	background: #eb5369 !important;
}
.ui-datepicker .ui-state-default, 
.ui-datepicker .ui-widget-content .ui-state-default {
	color: #333 !important;
}
.ui-datepicker .ui-state-highlight, 
.ui-datepicker .ui-widget-content .ui-state-highlight {
	border-color: #eb5369 !important;
	background: #eb5369 !important;
	color: #fff !important;
}
.ui-datepicker .ui-state-active, 
.ui-datepicker .ui-widget-content .ui-state-active {
	border-color: #ef7586 !important;
}
.ui-datepicker .ui-state-hover, 
.ui-datepicker .ui-widget-content .ui-state-hover, 
.ui-datepicker .ui-state-focus, 
.ui-datepicker .ui-widget-content .ui-state-focus {
	border-color: #eb5369 !important;
	background: #ef7586 !important;
	color: #fff !important;
}
.ui-datepicker .ui-state-hover .ui-icon, 
.ui-datepicker .ui-state-focus .ui-icon {
	background-image: url(https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/ui-lightness/images/ui-icons_ffffff_256x240.png) !important;
}

form .page::after {
  content: "";
  display: table;
  clear: both;
}

.navbtn {
  float: left;
  width: 100%;
  text-align: center;
}

.btn a,
a.btn,
.form .btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
  border: none;
  cursor: pointer;
  appearance: none;
  text-decoration: none;
  -webkit-appearance: none;
  transition: 200ms ease-in-out all;
}

.btn a,
a.btn,
.form .btn {
  background: #eb5369;
  color: #fff;
}

.btn a:hover,
a.btn:hover,
.form .btn:hover {
  background: #e62541;
}

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

footer {
  background: #23211d;
  color: #fff;
  padding: 1rem 0;
}

footer p {
  margin: 0;
}

@media (max-width: 1024px) {
  header .navigation ul li {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  header .logo-wrapper {
    border-bottom: 1px solid #e4e2e3;
    text-align: center;
  }

  header .logo-wrapper a {
    padding: 0.5rem 0;
  }

  header .logo-wrapper img {
    margin: 0 auto;
  }

  header .navigation {
    display: none;
  }
 
  footer p {
    text-align: center;
  }
}
