:root {
  --color-primary: rgb(21, 190, 161);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Raleway", sans-serif;
  padding-top: 50px;
  font-family: "Raleway", sans-serif;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.row {
  display: flex;
}
.row > .col {
  flex: 1;
}
[class^="col"] {
  box-sizing: border-box;
  padding-left: 8px;
  padding-right: 8px;
}
.row > .col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}
.row > .col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.row > .col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.row > .col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.row > .col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}
.row > .col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.row > .col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}
.row > .col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}
.row > .col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.row > .col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}
.row > .col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}
.row > .col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.nav {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  color: #fff;
}
.nav__layout {
  display: flex;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  color: white;
  font-weight: bold;
}
.nav__logo .logo__colored {
  color: var(--color-primary);
}

.nav__menu,
.nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__submenu {
  background: #000;
  display: none;
  min-width: 5rem;
  position: absolute;
  transition: all 0.5s ease;
  left: 0;
}
.nav__menu--item,
.nav__submenu--item {
  float: left;
  position: relative;
}
.nav__menu--item:hover > .nav__submenu,
.nav__menu--item:focus-within > .nav__submenu,
.nav__menu--item .nav__submenu:hover,
.nav__menu--item .nav__submenu:focus {
  display: block;
}
.nav__submenu--item {
  clear: both;
  width: 100%;
}
.nav__link {
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 1rem;
  transition-duration: 0.5s;
  cursor: pointer;
}
.nav__link:hover,
.nav__link:focus-within {
  background: var(--color-primary);
  outline: none;
}
.slider {
  height: 500px;
  background-image: linear-gradient(
    to bottom,
    #ffffff,
    #ffffff,
    #ffffff,
    #ffffff,
    #ffffff,
    #fcfcfc,
    #f9f9f9,
    #f6f6f6,
    #efefef,
    #e9e9e9,
    #e2e2e2,
    #dcdcdc
  );
}

.slider__row {
  height: 500px;
  font-family: "Raleway", sans-serif;
}
.slider__arrow {
  margin-top: auto;
  margin-bottom: auto;
}
.slider__arrow {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 34px;
  color: var(--color-primary);
}

.slider__image {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider__image--img {
  display: none;
}
.visible {
  display: block;
}
.slider__text {
  height: 50%;
  text-align: center;
  margin: auto 0;
}
.slider__text--span {
  color: var(--color-primary);
}
.slider__text--header {
  margin-bottom: 20px;
  font-size: 40px;
  font-family: "Raleway", sans-serif;
}
.slider__text--btn {
  background-color: var(--color-primary);
  width: 200px;
  height: 50px;
  align-items: center;
  justify-content: center;
  align-content: center;
  justify-items: center;
  border-radius: 10px;
  align-self: center;
  font-size: 18px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 15px;
  border: none;
  font-family: "Raleway", sans-serif;
}

.slider__text--para {
  margin-bottom: 10px;
}

.image {
  width: 100%;
  height: 250px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 70px;
}
.image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image__caption {
  position: absolute;
  width: 100%;
  bottom: 16px;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 16px 16px 24px 16px;
  box-sizing: border-box;
}
.image__caption--hidden {
  display: none;
}

.chairs__description {
  padding: 16px;
  border: solid thin gray;
}

.header {
  margin: 0;
}
.header::after {
  content: "";
  display: block;
  width: 130px;
  height: 6px;
  background: var(--color-primary);
}

.offer {
  background-color: rgb(241, 241, 241);
  height: 700px;
}
.offer__header {
  margin: 40px 0;
  border-bottom: 5px solid var(--color-primary);
  width: 300px;
}

.offer__plan {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.offer__prize--white {
  border: 1px solid rgb(194, 194, 194);
  color: rgb(194, 194, 194);
  border-radius: 50%;
  height: 120px;
  width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.offer__prize--green {
  border: 1px solid rgb(194, 194, 194);
  background-color: rgb(241, 241, 241);
  color: rgb(194, 194, 194);
  border-radius: 50%;
  height: 120px;
  width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.offer__plan--type {
  color: var(--color-primary);
}
.offer__plan--standard {
  color: white;
}
.offer__option {
  height: 200px;
}
.offer__option--paragraph {
  color: rgb(148, 148, 148);
  width: 99%;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
}
.offer__option--paragraph:nth-of-type(1) {
  background-color: rgb(228, 228, 228);
}
.offer__option--paragraph:nth-of-type(2) {
  background-color: rgb(241, 241, 241);
}
.offer__option--paragraph:nth-of-type(3) {
  background-color: rgb(228, 228, 228);
}
.offer__option--paragraph:nth-of-type(4) {
  background-color: rgb(241, 241, 241);
}

.offer__item--basic {
  background-color: rgb(249, 249, 249);
  height: 500px;
  position: relative;
}
.offer__item--special {
  background-color: var(--color-primary);
  height: 500px;
  position: relative;
}
.offer__circle--center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.offer__btn {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offer__btn--green {
  border: 5px solid black;
  width: 121px;
  height: 36px;
  background-color: var(--color-primary);
  border-radius: 4px;
  outline: none;
  border: none;
  cursor: pointer;
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  padding: 6px 15px;
  text-decoration: none;
}

.offer__btn--white {
  width: 121px;
  height: 36px;
  background-color: rgb(241, 241, 241);
  color: black;
  border-radius: 4px;
  outline: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  padding: 6px 15px;
  text-decoration: none;
}

.offer__circle--grey {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: rgb(194, 194, 194);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.offer__circle--white {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: white;
  position: absolute;
  border: 1px solid rgb(194, 194, 194);
  z-index: 1;
}
.offer__circle--green {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.offer__inner--white {
  background-color: white;
}
.contact {
  height: 500px;
}
.contact__style {
  height: 499px;
}
.contact__title {
  border-bottom: 3px solid var(--color-primary);
  width: 280px;
  margin: 20px 0;
}
.contact__input--container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 420px;
}
.contact__input--name[type="text"],
.contact__input--email[type="email"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  font-size: 20px;
  display: inline-block;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  box-sizing: border-box;
}
.contact__input--textarea {
  width: 100%;
  height: 200px;
  padding: 12px 20px;
  margin: 8px 0;
  font-size: 20px;
  display: inline-block;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  resize: none;
}

.contact__send {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__send--container {
  height: 410px;
  display: flex;
  margin-top: 50px;
  flex-direction: column;
  justify-content: space-between;
}
.contact__send--img {
  height: 220px;
  width: 270px;
  margin: 0 auto;
}
.contact__send--wrapper {
  display: flex;
  align-items: center;
  width: 80%;
  margin-left: 50px;
}
.contact__send--input[type="checkbox"] {
  appearance: none;
  height: 30px;
  width: 30px;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__send--input[type="checkbox"]:hover {
  border: 1px solid var(--color-primary);
}
.contact__send--input[type="checked"]:checked {
  content: "\2714";
  color: black;
  border: 1px solid var(--color-primary);
}
.contact__send--input[type="checkbox"]:after {
  font-family: "font awesome 5 free";
  font-weight: 900;
  content: "\2714";
  font-size: 20px;
  color: rgb(38, 197, 169);
  display: none;
}
.contact__send--input[type="checkbox"]:checked::after {
  display: block;
}
.contact__send--text {
  font-family: "Raleway", sans-serif;
  width: 79%;
  padding-left: 15px;
  color: rgb(176, 176, 176);
  cursor: pointer;
}

.contact__send--btn {
  width: 80%;
  margin: 0px auto;
  height: 75px;
  border-radius: 8px;
  background-color: var(--color-primary);
  border: none;
  color: white;
  font-size: 24px;
}
.footer {
  width: 100%;
  height: 50px;
  display: flex;
}
.footer__text {
  display: flex;
  align-items: center;
  color: rgb(159, 159, 159);
  font-size: 12px;
}
.footer__social {
  display: flex;
  justify-content: space-around;
  color: rgb(159, 159, 159);
}

.footer__social--text {
  display: flex;
  align-items: center;
}

.footer__social--bold {
  font-weight: bold;
}
