/*******************************/
/* INIT                        */
/*******************************/
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: .35em .75em .625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

/**Primary Color*/
/**Secondary Color*/
/**Tertiary Color*/
/**Util Colors**/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::-moz-selection {
  color: #fff;
  background: #003e6c;
}

::selection {
  color: #fff;
  background: #003e6c;
}

body {
  font-weight: 400;
  line-height: 1.7;
  color: #434343;
  overflow-x: hidden;
  position: relative;
}

body.noScroll {
  overflow: hidden;
}

.clearfix {
  clear: both;
  overflow: auto;
}

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

/*******************************/
/* UTILS                       */
/*******************************/
.p-r {
  position: relative;
}

.p-a {
  position: absolute;
}

.p-f {
  position: fixed;
}

.top-0 {
  top: 0;
}

.top-10 {
  top: 10%;
}

.top-20 {
  top: 20%;
}

.top-30 {
  top: 30%;
}

.top-40 {
  top: 40%;
}

.top-50 {
  top: 50%;
}

.bottom-10 {
  bottom: 10%;
}

.bottom-20 {
  bottom: 20%;
}

.bottom-30 {
  bottom: 30%;
}

.bottom-40 {
  bottom: 40%;
}

.bottom-50 {
  bottom: 50%;
}

.left-0 {
  left: 0;
}

.left-50 {
  left: 50%;
}

.right-0 {
  right: 0;
}

.right-50 {
  right: 50%;
}

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

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

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

.mx-auto {
  margin: 0 auto;
}

.center-r-h {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.center-a-h {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.center-f-h {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.center-r-v {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.center-a-v {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.center-f-v {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.center-r-b {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.center-a-b {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.center-f-b {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mt-5 {
  margin-top: 0.5rem;
}

.mt-10 {
  margin-top: 1rem;
}

.mt-15 {
  margin-top: 1.5rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-25 {
  margin-top: 2.5rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mt-35 {
  margin-top: 3.5rem;
}

.mt-40 {
  margin-top: 4rem;
}

.mt-45 {
  margin-top: 4.5rem;
}

.mt-50 {
  margin-top: 5rem;
}

.mt-60 {
  margin-top: 6rem;
}

.mt-70 {
  margin-top: 7rem;
}

.mt-80 {
  margin-top: 8rem;
}

.mt-90 {
  margin-top: 9rem;
}

.mt-100 {
  margin-top: 10rem;
}

.mr-5 {
  margin-right: 0.5rem;
}

.mr-10 {
  margin-right: 1rem;
}

.mr-15 {
  margin-right: 1.5rem;
}

.mr-20 {
  margin-right: 2rem;
}

.mr-25 {
  margin-right: 2.5rem;
}

.mr-30 {
  margin-right: 3rem;
}

.mr-35 {
  margin-right: 3.5rem;
}

.mr-40 {
  margin-right: 4rem;
}

.mr-45 {
  margin-right: 4.5rem;
}

.mr-50 {
  margin-right: 5rem;
}

.mb-5 {
  margin-bottom: 0.5rem;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mb-15 {
  margin-bottom: 1.5rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-25 {
  margin-bottom: 2.5rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.mb-35 {
  margin-bottom: 3.5rem;
}

.mb-40 {
  margin-bottom: 4rem;
}

.mb-45 {
  margin-bottom: 4.5rem;
}

.mb-50 {
  margin-bottom: 5rem;
}

.mb-60 {
  margin-bottom: 6rem;
}

.mb-70 {
  margin-bottom: 7rem;
}

.mb-80 {
  margin-bottom: 8rem;
}

.mb-90 {
  margin-bottom: 9rem;
}

.mb-100 {
  margin-bottom: 10rem;
}

.ml-5 {
  margin-left: 0.5rem;
}

.ml-10 {
  margin-left: 1rem;
}

.ml-15 {
  margin-left: 1.5rem;
}

.ml-20 {
  margin-left: 2rem;
}

.ml-25 {
  margin-left: 2.5rem;
}

.ml-30 {
  margin-left: 3rem;
}

.ml-35 {
  margin-left: 3.5rem;
}

.ml-40 {
  margin-left: 4rem;
}

.ml-45 {
  margin-left: 4.5rem;
}

.ml-50 {
  margin-left: 5rem;
}

.my-5 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-10 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-15 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-20 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-25 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-30 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-35 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.my-40 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-50 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-60 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-70 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.my-80 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.mx-5 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-10 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-15 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-20 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-25 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-30 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-35 {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.mx-40 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-50 {
  margin-left: 5rem;
  margin-bottom: 5rem;
}

.pt-5 {
  padding-top: 0.5rem;
}

.pt-10 {
  padding-top: 1rem;
}

.pt-15 {
  padding-top: 1.5rem;
}

.pt-20 {
  padding-top: 2rem;
}

.pt-25 {
  padding-top: 2.5rem;
}

.pt-30 {
  padding-top: 3rem;
}

.pt-35 {
  padding-top: 3.5rem;
}

.pt-40 {
  padding-top: 4rem;
}

.pt-45 {
  padding-top: 4.5rem;
}

.pt-50 {
  padding-top: 5rem;
}

.pr-5 {
  padding-right: 0.5rem;
}

.pr-10 {
  padding-right: 1rem;
}

.pr-15 {
  padding-right: 1.5rem;
}

.pr-20 {
  padding-right: 2rem;
}

.pr-25 {
  padding-right: 2.5rem;
}

.pr-30 {
  padding-right: 3rem;
}

.pr-35 {
  padding-right: 3.5rem;
}

.pr-40 {
  padding-right: 4rem;
}

.pr-45 {
  padding-right: 4.5rem;
}

.pr-50 {
  padding-right: 5rem;
}

.pb-5 {
  padding-bottom: 0.5rem;
}

.pb-10 {
  padding-bottom: 1rem;
}

.pb-15 {
  padding-bottom: 1.5rem;
}

.pb-20 {
  padding-bottom: 2rem;
}

.pb-25 {
  padding-bottom: 2.5rem;
}

.pb-30 {
  padding-bottom: 3rem;
}

.pb-35 {
  padding-bottom: 3.5rem;
}

.pb-40 {
  padding-bottom: 4rem;
}

.pb-45 {
  padding-bottom: 4.5rem;
}

.pb-50 {
  padding-bottom: 5rem;
}

.pl-5 {
  padding-left: 0.5rem;
}

.pl-10 {
  padding-left: 1rem;
}

.pl-15 {
  padding-left: 1.5rem;
}

.pl-20 {
  padding-left: 2rem;
}

.pl-25 {
  padding-left: 2.5rem;
}

.pl-30 {
  padding-left: 3rem;
}

.pl-35 {
  padding-left: 3.5rem;
}

.pl-40 {
  padding-left: 4rem;
}

.pl-45 {
  padding-left: 4.5rem;
}

.pl-50 {
  padding-left: 5rem;
}

.pa-5 {
  padding: 0.5rem;
}

.pa-10 {
  padding: 1rem;
}

.pa-15 {
  padding: 1.5rem;
}

.pa-20 {
  padding: 2rem;
}

.pa-25 {
  padding: 2.5rem;
}

.pa-30 {
  padding: 3rem;
}

.pa-35 {
  padding: 3.5rem;
}

.pa-40 {
  padding: 4rem;
}

.pa-45 {
  padding: 4.5rem;
}

.pa-50 {
  padding: 5rem;
}

.py-5 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-15 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-20 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-25 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-30 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-35 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.py-40 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-45 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.py-50 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-5 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-10 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-15 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-20 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-25 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-30 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-35 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.px-40 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-45 {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.px-50 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.br-r-1 {
  border-radius: 1px;
}

.br-r-2 {
  border-radius: 2px;
}

.br-r-2 {
  border-radius: 2px;
}

.br-r-3 {
  border-radius: 3px;
}

.br-r-4 {
  border-radius: 4px;
}

.br-r-5 {
  border-radius: 5px;
}

.br-r-6 {
  border-radius: 6px;
}

.br-r-7 {
  border-radius: 7px;
}

.br-r-8 {
  border-radius: 8px;
}

.br-r-9 {
  border-radius: 9px;
}

.br-r-10 {
  border-radius: 10px;
}

.br-r-11 {
  border-radius: 11px;
}

.br-r-12 {
  border-radius: 12px;
}

.br-r-13 {
  border-radius: 13px;
}

.br-r-14 {
  border-radius: 14px;
}

.br-r-15 {
  border-radius: 15px;
}

.br-r-16 {
  border-radius: 16px;
}

.br-r-17 {
  border-radius: 17px;
}

.br-r-18 {
  border-radius: 18px;
}

.br-r-19 {
  border-radius: 19px;
}

.br-r-20 {
  border-radius: 20px;
}

.br-r-50 {
  border-radius: 50%;
}

.btn:link,
.btn:visited,
.btn:hover,
.btn:focus,
.btn:active {
  outline: none;
  text-decoration: none;
}

.btn-primary:link,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #003e6c;
}

.btn-primary:hover {
  background-color: #002139;
}

.btn-secondary {
  background-color: #ee272e;
}

.btn-secondary:hover {
  background-color: #d21017;
}

.btn-tertiary:link,
.btn-tertiary:visited,
.btn-tertiary:hover,
.btn-tertiary:focus,
.btn-tertiary:active {
  background-color: #ff5a19;
}

.btn-tertiary:hover {
  background-color: #e54100;
}

.transition-1 {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.transition-2 {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.transition-3 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.transition-4 {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.transition-5 {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.transition-6 {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.transition-7 {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.transition-8 {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.transition-9 {
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.transition-10 {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.bg-primary {
  background-color: #003e6c;
}

.bg-secondary {
  background-color: #ee272e;
}

.bg-tertiary {
  background-color: #ee272e;
}

.bg-lg-1 {
  background-color: #eee;
}

.bg-lg-2 {
  background-color: #ccc;
}

.bg-lg-3 {
  background-color: #999;
}

.f-s-10 {
  font-size: 1rem;
}

.f-s-11 {
  font-size: 1.1rem;
}

.f-s-12 {
  font-size: 1.2rem;
}

.f-s-13 {
  font-size: 1.3rem;
}

.f-s-14 {
  font-size: 1.4rem;
}

.f-s-15 {
  font-size: 1.5rem;
}

.f-s-16 {
  font-size: 1.6rem;
}

@media (max-width: 576px) {
  .f-s-16 {
    font-size: 16px;
  }
}

.f-s-17 {
  font-size: 1.7rem;
}

.f-s-18 {
  font-size: 1.8rem;
}

.f-s-19 {
  font-size: 1.9rem;
}

.f-s-20 {
  font-size: 2rem;
}

.f-s-22 {
  font-size: 2.2rem;
}

.f-s-24 {
  font-size: 2.4rem;
}

.f-s-26 {
  font-size: 2.6rem;
}

.f-s-28 {
  font-size: 2.8rem;
}

.f-s-30 {
  font-size: 3rem;
}

.f-s-35 {
  font-size: 3.5rem;
}

.f-s-36 {
  font-size: 3.6rem;
}

.f-s-40 {
  font-size: 4rem;
}

.f-s-45 {
  font-size: 4.5rem;
}

.f-s-48 {
  font-size: 4.8rem;
}

.f-s-50 {
  font-size: 5rem;
}

.f-s-60 {
  font-size: 6rem;
}

.f-w-3 {
  font-weight: 300;
}

.f-w-4 {
  font-weight: 400;
}

.f-w-5 {
  font-weight: 500;
}

.f-w-6 {
  font-weight: 600;
}

.f-w-7 {
  font-weight: 700;
}

.f-w-8 {
  font-weight: 800;
}

.f-w-9 {
  font-weight: 900;
}

.text-color-primary {
  color: #003e6c;
}

.text-color-secondary {
  color: #ee272e;
}

.text-color-tertiary {
  color: #ff5a19;
}

.text-color-font {
  color: #434343;
}

.text-color-lg {
  color: #999;
}

.text-color-mg {
  color: #666;
}

.text-color-black {
  color: #000;
}

.text-color-white {
  color: #fff;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1366px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1340px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

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

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  -webkit-box-flex: 0;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
          order: -1;
}

.order-last {
  -ms-flex-order: 13;
  -webkit-box-ordinal-group: 14;
          order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  -webkit-box-ordinal-group: 1;
          order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
          order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  -webkit-box-ordinal-group: 4;
          order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  -webkit-box-ordinal-group: 5;
          order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  -webkit-box-ordinal-group: 6;
          order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  -webkit-box-ordinal-group: 7;
          order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  -webkit-box-ordinal-group: 8;
          order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  -webkit-box-ordinal-group: 9;
          order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  -webkit-box-ordinal-group: 10;
          order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  -webkit-box-ordinal-group: 11;
          order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  -webkit-box-ordinal-group: 12;
          order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  -webkit-box-ordinal-group: 13;
          order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: -webkit-inline-box !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -ms-flex-direction: row !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
          flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  -webkit-box-flex: 1 !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  -webkit-box-flex: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  -webkit-box-flex: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  -webkit-box-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  -webkit-box-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  -webkit-box-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  -webkit-box-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  -webkit-box-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  -webkit-box-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  -webkit-box-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  -webkit-box-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

/*******************************/
/* COMPONENTS                  */
/*******************************/
/*******************************/
/* VENDORS                     */
/*******************************/
/*******************************/
/* PAGES                       */
/*******************************/
@font-face {
  font-family: 'Merriweather';
  src: url("../fonts/Merriweather-Black.woff2") format("woff2"), url("../fonts/Merriweather-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url("../fonts/Merriweather-BlackItalic.woff2") format("woff2"), url("../fonts/Merriweather-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url("../fonts/Merriweather-Bold.woff2") format("woff2"), url("../fonts/Merriweather-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url("../fonts/Merriweather-Italic.woff2") format("woff2"), url("../fonts/Merriweather-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url("../fonts/Merriweather-BoldItalic.woff2") format("woff2"), url("../fonts/Merriweather-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url("../fonts/Merriweather-Light.woff2") format("woff2"), url("../fonts/Merriweather-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url("../fonts/Merriweather-LightItalic.woff2") format("woff2"), url("../fonts/Merriweather-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url("../fonts/Merriweather-Regular.woff2") format("woff2"), url("../fonts/Merriweather-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 100%;
}

body {
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  font-family: 'Merriweather', sans-serif !important;
  padding-right: 0 !important;
  min-height: 100%;
}

body.modal-open, .modal {
  padding-right: 0 !important;
}

.modal.show {
  padding-right: 0 !important;
  overflow-y: auto;
}

.container-fluid {
  max-width: 100%;
  width: 192rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.container {
  max-width: 130rem !important;
  width: 100%;
}

/* End */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type=checkbox] {
  position: relative;
  height: 2rem;
  width: 2rem;
}

input[type=checkbox]:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: white;
  border: 2px solid black;
  border-radius: 3px;
  content: '';
}

input[type=checkbox]:checked:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #ac823a url("../img/check.svg") no-repeat;
  background-position: center;
  background-size: 70%;
  border-radius: 3px;
  content: '';
}

input[type=radio] {
  position: relative;
  height: 2rem;
  width: 2rem;
}

input[type=radio]:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: white;
  border: 2px solid black;
  border-radius: 3px;
  content: '';
}

input[type=radio]:checked:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #ac823a url("../img/check.svg") no-repeat;
  background-position: center;
  background-size: 70%;
  border-radius: 3px;
  content: '';
}

/* HTML - Font Scaling */
@media only screen and (max-width: 1800px) and (min-width: 1601px) {
  html {
    font-size: 58.5%;
  }
}

@media only screen and (max-width: 1600px) and (min-width: 1401px) {
  html {
    font-size: 52.5%;
  }
}

@media only screen and (max-width: 1400px) and (min-width: 1201px) {
  html {
    font-size: 45.5%;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 992px) {
  html {
    font-size: 46.5%;
  }
}

@media only screen and (max-width: 991px) and (min-width: 568px) {
  html {
    font-size: 56.5%;
  }
}

@media only screen and (max-width: 567px) and (min-width: 411px) {
  html {
    font-size: 56.5%;
  }
}

@media only screen and (max-width: 410px) and (min-width: 361px) {
  html {
    font-size: 53.5%;
  }
}

@media only screen and (max-width: 360px) {
  html {
    font-size: 49.5%;
  }
}

/* END */
/* --------------------------------------------- PRE-MADE CLASSES --------------------------------------------- */
/* Other */
.py-60 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-70 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.pb-70 {
  padding-bottom: 7rem;
}

.pb-80 {
  padding-bottom: 8rem;
}

.pd-0 {
  padding: 0;
}

.uppercase {
  text-transform: uppercase;
}

.l-s-3 {
  letter-spacing: 0.3rem;
}

.l-h-25 {
  line-height: 2.5rem;
}

.l-h-35 {
  line-height: 3.5rem;
}

.l-h-60 {
  line-height: 6rem;
}

.l-s-1 {
  letter-spacing: 0.1rem;
}

.l-h-1 {
  line-height: 1;
}

ul li {
  list-style: none;
}

b {
  font-weight: 700 !important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
}

button:focus {
  outline: none !important;
}

input, textarea {
  outline: none !important;
}

.fit-cont {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.underline {
  text-decoration: underline;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
  color: black !important;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.tr-2 {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tr-2:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tr-3 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tr-3:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 992px) {
  .d-h {
    display: none !important;
  }
}

@media only screen and (min-width: 767px) {
  .d-h-2 {
    display: none !important;
  }
}

@media only screen and (min-width: 576px) {
  .d-h-3 {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .m-h {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .m-h-2 {
    display: none !important;
  }
}

@media only screen and (max-width: 576px) {
  .m-h-3 {
    display: none !important;
  }
}

/* ---------------------------------- DESKTOP ---------------------------------- */
@media only screen and (min-width: 992px) {
  .navbar .container {
    border-top: 7px solid #ac823a;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar.fixed-top {
    top: 0rem;
    border-top: 0px solid transparent;
    -webkit-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
  }
  .navbar.fixed-top.scrolled {
    top: 0rem;
    border-top: 4px solid #ac823a;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.8) !important;
  }
  .navbar.fixed-top.scrolled .container {
    min-height: 6.5rem;
    border-top: 0px solid transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar.fixed-top.scrolled .navbar-nav {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar.fixed-top.scrolled .navbar-nav .nav-item .nav-link {
    color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar.fixed-top.scrolled .navbar-nav .nav-item .nav-link:hover {
    color: #ac823a !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar.fixed-top.scrolled .navbar-nav .nav-item .active > .nav-link,
  .navbar.fixed-top.scrolled .navbar-nav .nav-item .nav-link.active,
  .navbar.fixed-top.scrolled .navbar-nav .nav-item .nav-link.show,
  .navbar.fixed-top.scrolled .navbar-nav .nav-item .show > .nav-link {
    color: #ac823a;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar.fixed-top.scrolled .navbar-brand {
    height: 10rem;
  }
  .dropdown.show {
    position: static;
  }
  .navbar .navbar-nav-main {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    margin-right: 2rem;
    margin-left: 2rem;
    height: 6.5rem;
  }
  .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}

@media only screen and (min-width: 992px) {
  .dropdown-hover {
    position: static !important;
  }
  .dropdown-hover .dropdown-menu {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    overflow: hidden;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    display: block;
    width: 100vw;
    position: static;
    opacity: 0;
  }
  .dropdown-hover:hover .nav-link {
    color: #ac823a !important;
  }
  .dropdown-hover:hover .dropdown-menu {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

/* ---------------------------------- NAVIGATION - DESKTOP & MOBILE ---------------------------------- */
.navbar {
  padding: 0 !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  /* NAV ITEM */
  /* END */
}

.navbar .container {
  min-height: 14.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-brand {
  height: 18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-brand img {
  height: 100%;
  width: auto;
}

.navbar .navbar-nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-nav .nav-item .nav-link {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0;
  position: relative;
  margin: 0 2.5rem;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #ac823a !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-nav .nav-item .active > .nav-link,
.navbar .navbar-nav .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .nav-link.show,
.navbar .navbar-nav .nav-item .show > .nav-link {
  color: #ac823a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-nav .divider {
  font-size: 1.7rem;
  font-weight: 300;
  color: white;
}

.navbar .navbar-toggler {
  padding: 0;
  outline: none;
  border: none;
}

/* ---------------------------------- MOBILE ---------------------------------- */
/* ---- Burger Menu ---- */
.hamburger {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: white;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* END */
html.no-scroll-m {
  overflow: hidden;
}

/* ---- Body no scroll ---- */
@media only screen and (max-width: 991px) {
  html.no-scroll {
    overflow: hidden;
  }
  body.no-scroll {
    overflow: hidden;
  }
}

/* END */
/* ---- Menu from right to left ---- */
@media only screen and (max-width: 991px) {
  .custom-navbar {
    height: 0 !important;
  }
  .navbar-collapse {
    position: fixed;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    width: 100%;
    -webkit-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
    display: block;
    opacity: 0;
    bottom: 0;
  }
  .navbar-collapse.collapsing {
    height: auto !important;
    -webkit-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
    display: block !important;
    opacity: 0.2;
    bottom: 0;
  }
  .navbar-collapse.show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    -webkit-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
    position: fixed !important;
    bottom: 0;
    overflow-y: auto;
  }
  .collapsing {
    position: fixed !important;
  }
  .navbar .navbar-nav .nav-item .active > .nav-link,
  .navbar .navbar-nav .nav-item .nav-link.active,
  .navbar .navbar-nav .nav-item .nav-link.show,
  .navbar .navbar-nav .nav-item .show > .nav-link {
    color: #581212 !important;
  }
  .navbar .navbar-nav .divider {
    display: none;
  }
}

/* END */
@media only screen and (max-width: 991px) {
  .navbar-brand {
    padding-top: 0 !important;
    padding-bottom: 0.5rem !important;
  }
  .navbar.fixed-top {
    top: 0;
    border-top: 4px solid #ac823a;
    -webkit-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
  }
  .navbar.fixed-top .nav-item {
    min-height: 5rem;
  }
  .navbar.navbar-mobile-bg {
    background-color: rgba(0, 0, 0, 0) !important;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  .navbar.navbar-mobile-bg.s-change {
    background-color: rgba(0, 0, 0, 0.8) !important;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  .navbar.navbar-mobile-bg.c-change {
    background-color: rgba(0, 0, 0, 0.8) !important;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  .navbar.fixed-top.scrolled .dropdown-menu {
    margin-top: 0 !important;
  }
  .navbar .navbar-nav {
    margin: 0 !important;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: transparent;
    color: white !important;
    font-size: 16px !important;
    height: 5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .navbar .navbar-nav .nav-item .nav-link:hover,
  .navbar .navbar-nav .nav-item .nav-link:focus {
    color: black !important;
    color: black !important;
    background-color: transparent;
  }
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    background-color: #ac823a;
  }
  .navbar .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
  }
  .navbar .mobile-bar {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar .language-switcher {
    display: none;
  }
  .navbar .dropdown-menu-language {
    margin-top: 0 !important;
    top: auto;
  }
}

.menu .toggle-language {
  height: 4.5rem;
  min-width: 4.5rem;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .toggle-language .selected {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .toggle-language .option {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .language-container {
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .language-container span {
  font-size: 1.6rem;
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 3;
}

.menu .language-container:before {
  z-index: 2;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  background: #ac823a;
  background: -webkit-gradient(linear, left top, left bottom, from(#ac823a), to(#d6a654));
  background: linear-gradient(180deg, #ac823a 0%, #d6a654 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .language-container:after {
  z-index: 2;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  background: #ac823a;
  background: -webkit-gradient(linear, left top, left bottom, from(#86652d), to(#c78f30));
  background: linear-gradient(180deg, #86652d 0%, #c78f30 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .language-container:hover:before {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .language-container:focus:after {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .selected {
  z-index: 2;
}

.menu .option-container {
  position: absolute;
  top: 0;
  right: 0;
  height: 5.5rem;
  width: 4.5rem;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .option {
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .toggle-language:hover .selected,
.menu .toggle-language:focus .selected {
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .toggle-language:hover .option-container,
.menu .toggle-language:focus .option-container {
  top: 4.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .toggle-language:hover .option,
.menu .toggle-language:focus .option {
  margin-top: 1rem;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 991px) {
  .menu .toggle-language .option-container {
    height: 4.5rem;
    width: 5.5rem;
  }
  .menu .toggle-language:hover .option-container,
  .menu .toggle-language:focus .option-container {
    top: 0;
    right: 4.5rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .menu .toggle-language:hover .option,
  .menu .toggle-language:focus .option {
    position: absolute;
    z-index: 5;
    margin-top: 0rem;
    margin-right: 1rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    color: black;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #ac823a !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar .navbar-nav .nav-item .active > .nav-link,
  .navbar .navbar-nav .nav-item .nav-link.active,
  .navbar .navbar-nav .nav-item .nav-link.show,
  .navbar .navbar-nav .nav-item .show > .nav-link {
    color: #ac823a !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

@media only screen and (max-width: 567px) {
  .navbar .container {
    min-height: 60px;
  }
  .navbar .mobile-bar {
    min-height: 60px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .navbar .navbar-brand {
    height: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar.fixed-top.scrolled .container {
    min-height: 60px;
  }
  .navbar.fixed-top.scrolled .navbar-brand {
    height: 6rem;
  }
  .navbar-collapse,
  .navbar-collapse.collapsing,
  .navbar-collapse.show {
    top: 64px;
  }
}

@media only screen and (max-width: 991px) and (min-width: 568px) {
  .navbar.fixed-top.scrolled .container {
    min-height: 80px;
  }
  .navbar.fixed-top.scrolled .navbar-brand {
    height: 50px;
  }
  .navbar .container {
    min-height: 80px;
  }
  .navbar .mobile-bar {
    min-height: 80px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .navbar .navbar-brand {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar .burger {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .navbar-collapse,
  .navbar-collapse.collapsing,
  .navbar-collapse.show {
    top: 84px;
  }
}

@media only screen and (max-width: 1600px) and (min-width: 1401px) {
  .menu .search-container .search-bar input {
    background-size: 18px;
    background-position: calc(100% - 7px);
  }
  .menu .cart-container svg {
    height: 18px;
    width: 18px;
  }
}

@media only screen and (max-width: 1400px) and (min-width: 992px) {
  .menu .search-container .search-bar input {
    background-size: 18px;
    background-position: calc(100% - 5px);
  }
  .menu .cart-container svg {
    height: 18px;
    width: 18px;
  }
}

@media only screen and (max-width: 1400px) {
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .container {
    max-width: 126rem !important;
  }
}

.footer-section {
  min-height: 68.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: black;
}

.footer-section .row-2, .footer-section .row-3 {
  margin-bottom: 2rem;
}

.footer-section .contact-us {
  margin-bottom: 1rem;
}

.footer-section .contact-us p {
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0rem;
}

.footer-section .contact-us p span {
  font-size: 4.8rem;
}

.footer-section .apartments-bogdanovic {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-section .apartments-bogdanovic p {
  font-size: 2.4rem;
  font-weight: 300;
  color: white;
  font-style: italic;
  margin-bottom: 0rem;
}

.footer-section .apartments-bogdanovic p span {
  font-size: 3rem;
  font-weight: 700;
}

.footer-section ul {
  margin-bottom: 0rem;
}

.footer-section ul li {
  margin-bottom: 1rem;
}

.footer-section ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.7rem;
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-section ul li a .icon-container {
  margin-right: 1.5rem;
  width: 2rem;
}

.footer-section ul li a .icon-container svg {
  fill: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-section ul li a:hover {
  color: #ac823a !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-section ul li a:hover .icon-container svg {
  fill: #ac823a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-section ul li:last-child {
  margin-bottom: 0;
}

.footer-section .links-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer-section .links-container .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.footer-section .links-container .social a {
  margin-right: 2rem;
}

.footer-section .links-container .social svg #icon-gradient {
  opacity: 0.0;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-section .links-container .social svg #icon-gradient:hover {
  opacity: 1.0;
}

.footer-section .logo-container {
  max-width: 24rem;
  margin-left: auto;
}

.footer-section .logo-container img {
  height: auto;
  width: 100%;
}

.footer-section .copyright-section {
  min-height: 10rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-section .copyright-section .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-section .copyright-section .copyright {
  margin-right: 3rem;
}

.footer-section .copyright-section .copyright span {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section .copyright-section .scroll-to-top a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.footer-section .bottom-bar {
  height: 9px;
  width: 100%;
  background: #ac823a;
  background: -webkit-gradient(linear, left top, right top, from(#581212), to(#9d393b));
  background: linear-gradient(90deg, #581212 0%, #9d393b 100%);
}

@media only screen and (max-width: 991px) {
  .footer-section {
    background-image: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .footer-section {
    padding-top: 4rem;
  }
  .footer-section .logo-container {
    margin-left: 0;
    margin-right: auto;
    margin-top: 4rem;
    margin-bottom: 3rem;
  }
  .footer-section .info ul {
    margin-bottom: 5rem;
  }
  .footer-section .links-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer-section .links-container .social {
    margin-bottom: 2rem;
  }
}

.slider-section {
  position: relative;
}

.slider-section #carousel-intro .slider-bg {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  min-height: 89.5rem;
  position: relative;
}

.slider-section .container {
  position: absolute;
  top: calc(50% - 18.7rem);
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: 3;
}

.slider-section .slider-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider-section .slider-content .text-container {
  margin-bottom: 8rem;
}

.slider-section .slider-content .welcome span {
  font-size: 4.8rem;
  font-style: italic;
  font-weight: 300;
  color: white;
}

.slider-section .slider-content h1 {
  font-size: 5.4rem;
  font-style: italic;
  font-weight: 700;
  color: #ac823a;
}

.slider-section .slider-content h1 span {
  font-size: 7.2rem;
  font-style: italic;
  font-weight: 700;
  color: #ac823a;
}

.slider-section .slider-content p {
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  color: white;
}

.slider-section .slider-content .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.slider-section .slider-content #customNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 3rem;
}

.slider-section .slider-content #customNav button {
  margin: 0 1rem;
}

.slider-section .slider-content a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.slider-section .slider-content a .discover button {
  z-index: 1;
  height: 5.4rem;
  width: 24rem;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider-section .slider-content a .discover button span {
  z-index: 3;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  color: white;
  text-transform: uppercase;
}

.slider-section .slider-content a .discover button:before {
  z-index: 2;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #ac823a;
  background: -webkit-gradient(linear, left top, left bottom, from(#ac823a), to(#d6a654));
  background: linear-gradient(180deg, #ac823a 0%, #d6a654 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slider-section .slider-content a .discover button:after {
  z-index: 2;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #ac823a;
  background: -webkit-gradient(linear, left top, left bottom, from(#86652d), to(#c78f30));
  background: linear-gradient(180deg, #86652d 0%, #c78f30 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slider-section .slider-content a .discover button:hover:before {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slider-section .slider-content a .discover button:focus:after {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.reservation-section {
  position: relative;
  padding: 2.5rem;
  background-color: #2f1214;
  max-width: 43rem;
  margin-left: auto;
}

.reservation-section .title h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #ac823a;
  margin-bottom: 2.5rem;
}

.reservation-section form {
  width: 100%;
}

.reservation-section form input {
  height: 5rem;
  width: 100%;
  outline: none;
  border: none;
  border: 2px solid #ac823a;
  background: url("../img/icon-date.svg");
  background-position: calc(100% - 1rem);
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-size: 24px;
  padding: 0 4rem 0 1rem;
  font-size: 1.7rem;
  color: white;
  margin-bottom: 1.5rem;
}

.reservation-section form input::-webkit-input-placeholder {
  font-size: 1.7rem;
  font-style: italic;
  color: white;
}

.reservation-section form input:-ms-input-placeholder {
  font-size: 1.7rem;
  font-style: italic;
  color: white;
}

.reservation-section form input::-ms-input-placeholder {
  font-size: 1.7rem;
  font-style: italic;
  color: white;
}

.reservation-section form input::placeholder {
  font-size: 1.7rem;
  font-style: italic;
  color: white;
}

.reservation-section form select {
  height: 5rem;
  width: 100%;
  outline: none;
  border: none;
  border: 2px solid #ac823a;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url("../img/chevron-down.svg");
  background-position: calc(100% - 1rem);
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-size: 24px;
  padding: 0 4rem 0 1rem;
  font-size: 1.7rem;
  color: white;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reservation-section form select option {
  border: 0px;
  outline: 0px;
  font-size: 1.7rem;
  color: black;
  font-style: italic;
}

.reservation-section form .btn-check {
  margin-top: 1rem;
}

.reservation-section form .btn-check button {
  z-index: 1;
  height: 5.4rem;
  width: 100%;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.reservation-section form .btn-check button span {
  z-index: 3;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  color: white;
  text-transform: uppercase;
}

.reservation-section form .btn-check button:before {
  z-index: 2;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #ac823a;
  background: -webkit-gradient(linear, left top, left bottom, from(#ac823a), to(#d6a654));
  background: linear-gradient(180deg, #ac823a 0%, #d6a654 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.reservation-section form .btn-check button:after {
  z-index: 2;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #ac823a;
  background: -webkit-gradient(linear, left top, left bottom, from(#86652d), to(#c78f30));
  background: linear-gradient(180deg, #86652d 0%, #c78f30 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.reservation-section form .btn-check button:hover:before {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.reservation-section form .btn-check button:focus:after {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about-us-section {
  background: #ac823a;
  background: -webkit-gradient(linear, left top, right top, from(#ac823a), color-stop(50%, #d6a654));
  background: linear-gradient(90deg, #ac823a 0%, #d6a654 50%);
}

.about-us-section .container {
  max-width: 100% !important;
}

.about-us-section .about-us-text {
  text-align: right;
  max-width: 54rem;
  margin-left: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 9rem;
}

.about-us-section .about-us-text h2 {
  font-size: 5.4rem;
  font-weight: 700;
  color: #581212;
  margin-bottom: 5rem;
}

.about-us-section .about-us-text p {
  font-size: 1.6rem;
  font-weight: 300;
  color: black;
  margin-bottom: 2.5rem;
}

.about-us-section .about-us-text a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-top: 2rem;
}

.about-us-section .about-us-text .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-us-section .about-us-text .details .img-container {
  width: 5rem;
  margin-right: 1.5rem;
}

.about-us-section .about-us-text .details .img-container img {
  height: auto;
  width: 100%;
}

.about-us-section .about-us-text .details span {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: #581212;
  text-transform: uppercase;
}

.about-us-section .about-us-img {
  height: 69rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-us-section .about-us-img .img-2 {
  height: 100%;
  position: absolute;
  top: 0;
  left: -1px;
}

.about-us-section .about-us-img .img-2 img {
  height: 100%;
  width: auto;
}

.apartments-section .container {
  max-width: 100% !important;
}

.apartments-section #carousel-apartment-img .slider-bg {
  height: 69rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.apartments-section #carousel-apartment-desc {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-reset: roomNo;
}

.apartments-section #carousel-apartment-desc .content-container {
  max-width: 54rem;
  margin-right: auto;
  margin-left: 9rem;
  position: relative;
}

.apartments-section #carousel-apartment-desc .content-container .apartment-title:before {
  counter-increment: roomNo;
  content: "0" counter(roomNo);
  font-size: 20rem;
  font-weight: 700;
  color: #f6f2e9;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: -1;
}

.apartments-section #carousel-apartment-desc .content-container .apartment-title {
  min-height: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.apartments-section #carousel-apartment-desc .content-container h3 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #581212;
  font-style: italic;
  margin-bottom: 0;
}

.apartments-section #carousel-apartment-desc .content-container p {
  font-size: 1.6rem;
  font-weight: 300;
  color: black;
  margin-bottom: 4rem;
}

.apartments-section #carousel-apartment-desc .content-container .price {
  margin-bottom: 6rem;
}

.apartments-section #carousel-apartment-desc .content-container .price .euro {
  font-size: 3rem;
  font-weight: 700;
  color: #ac823a;
}

.apartments-section #carousel-apartment-desc .content-container .price .night {
  font-size: 3rem;
  font-weight: 300;
  color: black;
}

.apartments-section #carousel-apartment-desc .content-container a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
}

.apartments-section #carousel-apartment-desc .content-container .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.apartments-section #carousel-apartment-desc .content-container .details .img-container {
  width: 5rem;
  margin-right: 1.5rem;
}

.apartments-section #carousel-apartment-desc .content-container .details .img-container img {
  width: 100%;
  height: auto;
}

.apartments-section #carousel-apartment-desc .content-container .details span {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: #581212;
  text-transform: uppercase;
}

.apartments-section #carousel-apartment-desc .owl-nav {
  position: absolute;
  bottom: 7.7rem;
  left: 30rem;
}

.apartments-section #carousel-apartment-desc .owl-nav button {
  background: transparent;
  margin-left: 1rem;
  margin-right: 1rem;
}

.apartments-section #carousel-apartment-desc .owl-nav button svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.apartments-section #carousel-apartment-desc .owl-nav button svg:hover {
  fill: #581212;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.facilities-section {
  min-height: 66.5rem;
  background-color: #3d1314;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.facilities-section .facilities-title h2 {
  font-size: 5.4rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 5rem;
}

.facilities-section .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.facilities-section .content-container .icon-container {
  height: 12rem;
  width: 12rem;
  border-radius: 50%;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3rem;
}

.facilities-section .content-container .icon-container svg {
  fill: #3d1314;
}

.facilities-section .content-container .title h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3rem;
}

.facilities-section .content-container .desc p {
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0rem;
  max-width: 27rem;
}

.multimedija-section .tabs-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 12rem;
  margin-bottom: 4rem;
}

.multimedija-section .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.multimedija-section .title h2 {
  font-size: 5.4rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.multimedija-section .nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.multimedija-section .nav-pills .nav-item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 6rem;
}

.multimedija-section .nav-pills .nav-link {
  font-size: 1.9rem;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.multimedija-section .nav-pills .nav-link:hover {
  color: #581212 !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.multimedija-section .nav-pills .nav-link.active,
.multimedija-section .nav-pills .show > .nav-link {
  background-color: transparent;
  color: #581212;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.multimedija-section .nav-pills .divider {
  width: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.multimedija-section .nav-pills .divider span {
  font-size: 1.9rem;
  font-weight: 400;
  color: black;
}

.multimedija-section .tab-content {
  margin-bottom: 3rem;
}

.multimedija-section .tab-content .tab-pane .multimedija-container {
  height: 23.5rem;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

.multimedija-section .tab-content .tab-pane .multimedija-container .bg-h {
  height: 100%;
  width: 100%;
  position: relative;
  border: 5px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.multimedija-section .tab-content .tab-pane .multimedija-container .bg-h .icon-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 11rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.multimedija-section .tab-content .tab-pane .multimedija-container .bg-h .icon-container img {
  height: auto;
  width: 100%;
}

.multimedija-section .tab-content .tab-pane .multimedija-container:hover .bg-h {
  background-color: rgba(88, 18, 18, 0.8);
  border: 5px solid #ac823a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.multimedija-section .tab-content .tab-pane .multimedija-container:hover .bg-h .icon-container {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.multimedija-section .view-all-link {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  margin-top: 0rem;
}

.multimedija-section .view-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.multimedija-section .view-all .img-container {
  width: 5rem;
  margin-right: 1.5rem;
}

.multimedija-section .view-all .img-container img {
  height: auto;
  width: 100%;
}

.multimedija-section .view-all span {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: #581212;
  text-transform: uppercase;
}

@media only screen and (max-width: 1400px) {
  .slider-section .slider-content #customNav button svg {
    height: 24px;
    width: 24px;
  }
  .slider-section .reservation-section form input {
    background-size: 18px;
  }
  .slider-section .reservation-section form select {
    background-size: 18px;
  }
  .footer-section ul li a .icon-container svg {
    height: 18px;
    width: 18px;
  }
  .footer-section .links-container .social a .icon-container svg {
    height: 48px;
    width: 48px;
  }
  .footer-section .copyright-section .scroll-to-top a svg {
    height: 18px;
    width: 18px;
  }
  .contact-page-section .info .links-container .social a .icon-container svg {
    height: 48px;
    width: 48px;
  }
  .contact-page-section .info ul li a .icon-container svg {
    height: 18px;
    width: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .slider-section .slider-content .text-container {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    margin-bottom: 3rem;
  }
  .slider-section .container {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .slider-section #carousel-intro .slider-bg {
    min-height: 102.5rem;
  }
  .slider-section .container {
    padding-top: 80px;
  }
  .slider-section .slider-content {
    padding-bottom: 6rem;
  }
  .slider-section .reservation-section {
    max-width: 100%;
  }
  .about-us-section .about-us-text {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
    max-width: 100%;
    padding: 3rem 3rem;
  }
  .about-us-section .row-c-r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about-us-section .about-us-img .img-2 {
    display: none;
  }
  .about-us-section .about-us-text a {
    margin-left: 0;
    margin-right: auto;
  }
  .apartments-section #carousel-apartment-desc .content-container {
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
    padding: 0rem 3rem 4rem 3rem;
  }
  .apartments-section #carousel-apartment-desc .owl-nav {
    bottom: 12.2rem;
    left: 25rem;
  }
  .facilities-section .content-container {
    margin-bottom: 6rem;
  }
  .facilities-section .facilities-title h2 {
    margin-top: 5rem;
  }
}

@media only screen and (max-width: 767px) {
  .multimedija-section .tabs-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .multimedija-section .nav-pills {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .multimedija-section .title h2 {
    margin-bottom: 3rem;
  }
}

@media only screen and (max-width: 576px) {
  .slider-section .container {
    padding-top: 60px;
  }
  .about-us-section .about-us-img {
    height: 32rem;
  }
  .apartments-section #carousel-apartment-img .slider-bg {
    height: 32rem;
  }
}

div.ui-datepicker {
  font-family: 'Merriweather', sans-serif !important;
  font-size: 2rem !important;
}

.ui-widget-content,
.ui-widget-content,
.ui-datepicker .ui-datepicker-header,
.ui-datepicker .ui-datepicker-title,
.ui-datepicker .ui-datepicker-title,
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next,
.ui-datepicker table,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-state-default {
  background: white url("none");
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid transparent !important;
  background: white !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid transparent !important;
  background: #581212 !important;
  color: white !important;
}

.ui-state-default.ui-state-hover, .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: 1px solid transparent !important;
  background: #ac823a !important;
  color: white !important;
}

.ui-datepicker-next-hover, .ui-datepicker-prev-hover {
  border: 1px solid transparent !important;
  background: white !important;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  cursor: pointer;
}

.about-us-page-section .title h1 {
  font-size: 5.4rem;
  font-weight: 700;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5rem;
}

.about-us-page-section .about-us-text p {
  font-size: 1.6rem;
  font-weight: 300;
  color: black;
  margin-bottom: 2.5rem;
}

.about-us-page-section .about-us-text p:last-child {
  margin-bottom: 0rem;
}

.about-us-page-section .about-us-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #581212;
  margin-bottom: 3rem;
}

.about-us-page-section .about-us-img {
  position: relative;
  min-height: 80rem;
}

.about-us-page-section .about-us-img .img-1-container {
  width: 56rem;
  position: absolute;
  top: 0;
  right: 0;
}

.about-us-page-section .about-us-img .img-1-container img {
  height: auto;
  width: 100%;
}

.about-us-page-section .about-us-img .img-2-container {
  width: 43rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-us-page-section .about-us-img .img-2-container img {
  height: auto;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .about-us-page-section .about-us-img {
    min-height: auto;
    margin-bottom: 4rem;
  }
  .about-us-page-section .about-us-img .img-1-container {
    position: initial;
    margin: auto;
    max-width: 100%;
  }
  .about-us-page-section .row-c-r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about-us-page-section .about-us-img .img-2-container {
    display: none;
  }
}

.apartments-page-section {
  counter-reset: roomNo;
}

.apartments-page-section .container {
  max-width: 142rem !important;
}

.apartments-page-section .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.apartments-page-section .title h1 {
  font-size: 5.4rem;
  font-weight: 700;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5rem;
}

.apartments-page-section .apartment-container {
  padding: 2rem;
  padding-bottom: 3rem;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.apartments-page-section .apartment-container .img-container {
  height: 30rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.apartments-page-section .apartment-container .content-container {
  position: relative;
}

.apartments-page-section .apartment-container .content-container .apartment-title:before {
  counter-increment: roomNo;
  content: "0" counter(roomNo);
  font-size: 11rem;
  font-weight: 700;
  color: #f6f2e9;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: -1;
}

.apartments-page-section .apartment-container .content-container .apartment-title {
  min-height: 11rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.apartments-page-section .apartment-container .content-container h3 {
  font-size: 3.4rem;
  font-weight: 700;
  color: #581212;
  font-style: italic;
  margin-bottom: 0rem;
}

.apartments-page-section .apartment-container .content-container p {
  font-size: 1.6rem;
  font-weight: 300;
  color: black;
  margin-bottom: 4rem;
}

.apartments-page-section .apartment-container .content-container .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.apartments-page-section .apartment-container .content-container .price {
  margin-right: 5rem;
}

.apartments-page-section .apartment-container .content-container .price .euro {
  font-size: 2rem;
  font-weight: 700;
  color: #ac823a;
}

.apartments-page-section .apartment-container .content-container .price .night {
  font-size: 2rem;
  font-weight: 300;
  color: black;
}

.apartments-page-section .apartment-container .content-container a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.apartments-page-section .apartment-container .content-container .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.apartments-page-section .apartment-container .content-container .details .icon-container {
  width: 5rem;
  margin-right: 1.5rem;
}

.apartments-page-section .apartment-container .content-container .details .icon-container img {
  width: 100%;
  height: auto;
}

.apartments-page-section .apartment-container .content-container .details span {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: #581212;
  text-transform: uppercase;
}

.apartments-page-section .apartment-container:hover {
  -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gallery-page-section .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery-page-section .title h1 {
  font-size: 5.4rem;
  font-weight: 700;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5rem;
}

.gallery-page-section .tabs-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4rem;
}

.gallery-page-section .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gallery-page-section .title h2 {
  font-size: 5.4rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-page-section .nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.gallery-page-section .nav-pills .nav-item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gallery-page-section .nav-pills .nav-link {
  font-size: 1.9rem;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gallery-page-section .nav-pills .nav-link:hover {
  color: #581212 !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gallery-page-section .nav-pills .nav-link.active,
.gallery-page-section .nav-pills .show > .nav-link {
  background-color: transparent;
  color: #581212;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gallery-page-section .nav-pills .divider {
  width: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery-page-section .nav-pills .divider span {
  font-size: 1.9rem;
  font-weight: 400;
  color: black;
}

.gallery-page-section .tab-content {
  margin-bottom: 3rem;
}

.gallery-page-section .tab-content .tab-pane .multimedija-container {
  height: 23.5rem;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

.gallery-page-section .tab-content .tab-pane .multimedija-container .bg-h {
  height: 100%;
  width: 100%;
  position: relative;
  border: 5px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gallery-page-section .tab-content .tab-pane .multimedija-container .bg-h .icon-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 11rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.gallery-page-section .tab-content .tab-pane .multimedija-container .bg-h .icon-container img {
  height: auto;
  width: 100%;
}

.gallery-page-section .tab-content .tab-pane .multimedija-container:hover .bg-h {
  background-color: rgba(88, 18, 18, 0.8);
  border: 5px solid #ac823a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gallery-page-section .tab-content .tab-pane .multimedija-container:hover .bg-h .icon-container {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page-section .info .title h1 {
  font-size: 5.4rem;
  font-weight: 700;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5rem;
}

.contact-page-section .info .apartments-bogdanovic {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4rem;
}

.contact-page-section .info .apartments-bogdanovic p {
  font-size: 2.4rem;
  font-weight: 300;
  color: black;
  font-style: italic;
  margin-bottom: 0rem;
}

.contact-page-section .info .apartments-bogdanovic p span {
  font-size: 3rem;
  font-weight: 700;
}

.contact-page-section .info ul {
  margin-bottom: 4rem;
}

.contact-page-section .info ul li {
  margin-bottom: 1rem;
}

.contact-page-section .info ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.7rem;
  color: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page-section .info ul li a .icon-container {
  margin-right: 1.5rem;
  width: 2rem;
}

.contact-page-section .info ul li a .icon-container svg {
  fill: #581212;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page-section .info ul li a:hover {
  color: #ac823a !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page-section .info ul li a:hover .icon-container svg {
  fill: #ac823a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page-section .info ul li:last-child {
  margin-bottom: 0;
}

.contact-page-section .info .links-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contact-page-section .info .links-container .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contact-page-section .info .links-container .social a {
  margin-right: 2rem;
}

.contact-page-section .info .links-container .social svg #icon-gradient {
  opacity: 0.0;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page-section .info .links-container .social svg #icon-gradient:hover {
  opacity: 1.0;
}

.contact-page-section .form-container {
  /* height: 65rem; */
  height: auto;
  margin-left: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #581212;
  padding: 3rem;
  position: relative;
  z-index: 6;
}

.contact-page-section .form-container .form-text {
  margin-top: 0;
  margin-bottom: 4rem;
}

.contact-page-section .form-container .form-text h3 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3rem;
}

.contact-page-section .form-container .form-text h3 span {
  font-size: 3rem;
  font-weight: 400;
  color: black;
}

.contact-page-section .form-container form {
  width: 100%;
}

.contact-page-section .form-container form input {
  height: 6rem;
  width: 100%;
  background-color: white;
  border: none;
  outline: none;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: black;
  padding: 1rem 2rem;
}

.contact-page-section .form-container form input::-webkit-input-placeholder {
  font-size: 1.6rem;
  color: black;
}

.contact-page-section .form-container form input:-ms-input-placeholder {
  font-size: 1.6rem;
  color: black;
}

.contact-page-section .form-container form input::-ms-input-placeholder {
  font-size: 1.6rem;
  color: black;
}

.contact-page-section .form-container form input::placeholder {
  font-size: 1.6rem;
  color: black;
}

.contact-page-section .form-container form textarea {
  min-height: 28.5rem;
  width: 100%;
  background-color: white;
  border: none;
  outline: none;
  margin-bottom: 0rem;
  font-size: 1.6rem;
  color: black;
  padding: 1.5rem 2rem;
}

.contact-page-section .form-container form textarea::-webkit-input-placeholder {
  font-size: 1.6rem;
  color: black;
}

.contact-page-section .form-container form textarea:-ms-input-placeholder {
  font-size: 1.6rem;
  color: black;
}

.contact-page-section .form-container form textarea::-ms-input-placeholder {
  font-size: 1.6rem;
  color: black;
}

.contact-page-section .form-container form textarea::placeholder {
  font-size: 1.6rem;
  color: black;
}

.contact-page-section .form-container form .send {
  margin-top: 3rem;
  margin-bottom: 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.contact-page-section .form-container form .send button {
  z-index: 1;
  height: 5.4rem;
  width: 24rem;
  background: #ac823a;
  background: -webkit-gradient(linear, left bottom, left top, from(#ac823a), to(#d6a654));
  background: linear-gradient(0deg, #ac823a 0%, #d6a654 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-page-section .form-container form .send button span {
  z-index: 3;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: black;
  text-transform: uppercase;
}

.contact-page-section .form-container form .send button:before {
  z-index: 2;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #ac823a;
  background: -webkit-gradient(linear, left top, left bottom, from(#ac823a), to(#d6a654));
  background: linear-gradient(180deg, #ac823a 0%, #d6a654 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page-section .form-container form .send button:after {
  z-index: 2;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #ac823a;
  background: -webkit-gradient(linear, left top, left bottom, from(#86652d), to(#c78f30));
  background: linear-gradient(180deg, #86652d 0%, #c78f30 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page-section .form-container form .send button:hover:before {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page-section .form-container form .send button:focus:after {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-page-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: hidden;
  background-color: black !important;
  margin-top: -18rem;
}

.contact-page-footer .mapouter {
  position: relative;
  text-align: right;
  height: 68.5rem;
  width: 100%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.contact-page-footer .gmap_canvas {
  background: none !important;
  height: 68.5rem;
}

.contact-page-footer .line {
  margin-top: 0;
  background-color: black;
}

.contact-page-footer .container {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

.contact-page-footer .copyright-section .copyright span {
  color: black;
}

.contact-page-footer .copyright-section .scroll-to-top a svg {
  fill: black;
}

@media only screen and (max-width: 1200px) {
  .contact-page-footer .container {
    position: initial;
    -webkit-transform: none;
            transform: none;
  }
  .contact-page-footer .copyright-section {
    min-height: 7.5rem;
  }
  .contact-page-footer .copyright-section .links ul li a,
  .contact-page-footer .copyright-section .links ul .divider {
    color: white;
  }
  .contact-page-footer .copyright-section .copyright span {
    color: rgba(255, 255, 255, 0.8);
  }
  .contact-page-footer .copyright-section .scroll-to-top a svg {
    fill: white;
  }
}

@media only screen and (max-width: 991px) {
  .contact-page-section .info {
    margin-bottom: 6rem;
  }
  .contact-page-footer {
    margin-top: 0;
    padding-top: 0;
  }
}

@media only screen and (max-width: 576px) {
  .contact-page-section .form-container form .send button {
    width: 100%;
  }
}

.intro-banner {
  height: 35rem;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: relative;
}

.intro-banner .img-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 56rem;
}

.intro-banner .img-container img {
  height: auto;
  width: 56rem;
}

#modal-uspjesna-kupovina .modal-content {
  border-radius: 2rem;
}

#modal-uspjesna-kupovina .modal-dialog {
  margin-top: 3rem;
}

#modal-uspjesna-kupovina .close {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  opacity: 1;
}

#modal-uspjesna-kupovina .close svg {
  fill: #7f7f7f;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#modal-uspjesna-kupovina .close svg:hover {
  fill: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#modal-uspjesna-kupovina .modal-header {
  border-bottom: none;
  height: 11rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem;
  padding-bottom: 0;
}

#modal-uspjesna-kupovina .modal-header .title-container {
  position: relative;
}

#modal-uspjesna-kupovina .modal-header .title-container h5 {
  font-size: 3rem;
  font-weight: 700;
  color: #2e6290;
}

#modal-uspjesna-kupovina .modal-header .title-container .uspjesna-kupovina span {
  font-size: 2.4rem;
  color: black;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
}

#modal-uspjesna-kupovina .modal-body {
  padding: 1.5rem;
  padding-top: 0;
}

#modal-uspjesna-kupovina .modal-body .text-container p {
  font-size: 1.6rem;
  font-weight: 400;
  color: black;
  margin-bottom: 0rem;
}

#modal-uspjesna-kupovina .modal-body .hvala span {
  font-size: 1.6rem;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  margin: 4rem 0;
}

#modal-uspjesna-kupovina .modal-body .logo-container {
  max-width: 22rem;
  width: 100%;
  padding-bottom: 2.5rem;
}

#modal-uspjesna-kupovina .modal-body .logo-container img {
  height: auto;
  width: 100%;
}

@media (min-width: 576px) {
  #modal-uspjesna-kupovina .modal-dialog {
    max-width: 46rem;
    margin: 14rem auto auto auto;
  }
}
/*# sourceMappingURL=main.css.map */

/* NEW */
.apartments-details-list{
  padding-top: 50px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}
.apartments-details-list h1{
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.1em;
  color: #561211;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px){
  .apartments-details-list h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .apartments-details-list h1 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 450px) {
  .apartments-details-list h1 {
    font-size: 20px;
  }
}
.sides{
  width: 50%;
  height: auto;
  position: relative;
  padding-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .sides {
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.apartman-detalji{
  display: flex;
  flex-direction: column;
}
.apartman-detalji h2{
  font-weight: bold;
  font-size: 48px;
  line-height: 1.1em;
  color: #561211;
  margin-bottom: 40px;
  font-family: 'Merriweather',
  sans-serif !important;
}
.apartman-detalji h4{
  font-weight: bold;
  font-size: 24px;
  color: #585858;
  margin-bottom: 20px;
}
.apartman-detalji p{
    font-size: 16px;
    color: #585858;
    margin-bottom: 20px;
}
.apartman-detalji .cijena{
  margin-bottom: 30px;
  font-size: 17px;
}
.apartman-detalji .cijena span {
  color: #ac823a;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.1em;
  margin-right: 5px;
}
.apartman-detalji ul li{
  display: flex;
  align-items: center;  
  font-size: 16px;
  color: #585858;
}
.apartman-detalji ul li svg{
  height: 14px;
  color: #ac823a;
  margin-right: 7px;
}



.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  transition: all 0s;
}

.tns-slider>.tns-item {
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel>.tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel>.tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery>.tns-item {
  position: absolute;
  left: -100%;
  transition: transform 0s, opacity 0s;
}

.tns-gallery>.tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery>.tns-moving {
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal,
.tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix>div,
.tns-vpfix>li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.33333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}

.tns-t-ct>div {
  width: 1.42857%;
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

.apartman-media{
  padding-right: 5%;
}

.carousel-wrapper {
  width: 100%;
  height: max-content;
  position: relative;
}
.apartman-detalji-carousel{
  width: 100%;
  height: max-content;
  position: relative;
}
.apartman-detalji-carousel .item{
  height: 500px;
  position: relative;
}
.apartman-detalji-carousel .item .img-wrapper{
  height: 90%;
  width: 100%;
  position: relative;
}
.apartman-detalji-carousel .item .img-wrapper  img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.control-box{
  width: 100%;
  height: max-content;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.cstm-btn{
  cursor: pointer;
  width: 23%;
  margin-right: 2%;
  margin-bottom: 20px;
  border: none;
  outline: none;
  height: 100px;
  position: relative;
}
.cstm-btn img{
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.toggle-box{
  width: 100%;
  height: max-content;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
.apartman-media {
  padding-right: 0;
}
}
@media only screen and (max-width: 576px) {
  .apartman-detalji-carousel .item {
    height: 300px;
  }
.cstm-btn {
  height: 75px;
}
}
@media only screen and (max-width: 450px) {
  .apartman-detalji-carousel .item {
    height: 250px;
  }

  .cstm-btn {
    height: 50px;
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.toggle-media-btn{
font-weight: bold;
font-size: 14px;
color: #561211;
margin-right: 20px;
margin-bottom: 20px;
display: flex;
align-items: center;
height: max-content;
width: max-content;
}
.toggle-media-btn svg{
  height: 14px;
  margin-right: 5px;
}
.reservation-section-size{
  width: 100%;
  margin: 0;
  max-width: 100%;
  transform: translateY(-50%);
  margin-bottom: -50px;
}
.reservation-section-size form{
  display: flex;
  flex-wrap: wrap;
  height: max-content;
  width: 100%;
  /* align-items: center !important; */
}
.reservation-section-size input{
  width: 24% !important;
  margin-right: 1%;
  margin-bottom: 0 !important;
}
.reservation-section-size select{
  width: 14% !important;
  margin-right: 1%;
  margin-bottom: 0 !important;

}
.reservation-section-size .btn-check{
  width: 20% !important;
  margin: 0 !important;
}
.reservation-section-size .btn-check button{
  width: 100% !important;
  max-height: 5rem;
}
@media only screen and (max-width: 991px) {
  .reservation-section-size{
    margin-top: 20px;
    margin-bottom: 0;
    transform: translateY(0);
  }
  .reservation-section-size input {
    width: 48% !important;
    margin: 0 1%;
    margin-bottom: 20px !important;
  }
  .reservation-section-size select {
    width: 23% !important;
    margin: 0 1%;
  }
  .reservation-section-size .btn-check{
    width: 48% !important;
    margin: 0 1% !important;
  }
}
@media only screen and (max-width: 576px) {
    .reservation-section-size input {
      width:100% !important;
      margin: 0;
      margin-bottom: 20px !important;
    }

    .reservation-section-size select {
      width:100% !important;
      margin: 0;
      margin-bottom: 20px !important;
    }

    .reservation-section-size .btn-check {
     width:100% !important;
     margin: 0;

    }
}