* {
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 93.75em) {
  html {
    font-size: 56%;
  }
}
@media only screen and (max-width: 59.375em) {
  html {
    font-size: 52%;
  }
}
@media only screen and (max-width: 59.375em) {
  html {
    font-size: 48%;
  }
}
body {
  height: 100%;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 3rem;
}
@media only screen and (max-width: 37.5em) {
  body {
    margin: 1rem;
    font-size: 1.8rem;
  }
}
* {
  font-family: "Roboto Condensed";
}
h2 {
  font-size: 5rem;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
.strong {
  font-weight: 700;
}
::-moz-selection {
  color: #fff;
  background-color: #625873;
}
::selection {
  color: #fff;
  background-color: #625873;
}
.logo {
  margin-right: auto;
  flex: 1;
  padding: 2rem;
}
@media only screen and (max-width: 43.75em) {
  .logo img {
    width: 100%;
  }
}
@media only screen and (max-width: 70em) {
  .logo {
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .logo {
    margin-right: 0;
  }
}
.navbar__list {
  display: flex;
  list-style: none;
  height: 100%;
  font-size: 1.6rem;
}
@media only screen and (max-width: 70em) {
  .navbar__list {
    font-size: 1.3rem;
  }
}
.navbar__item {
  display: flex;
  flex-direction: column;
  padding: 0 3rem;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 7px;
  border-bottom: 7px solid transparent;
  transition: all ease 0.2s;
}
@media only screen and (max-width: 70em) {
  .navbar__item {
    padding: 0 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .navbar__item {
    padding-bottom: 1.2rem;
    text-align: center;
  }
}
.navbar__item a:link,
.navbar__item a:visited {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #312c39;
}
.navbar__item:hover a {
  color: #dc9744;
}
.navbar__item:hover,
.navbar__item--active {
  border-bottom: 7px solid #dc9744;
}
.navbar .active {
  border-bottom: 7px solid #312c39;
}
.btn {
  border: none;
  border-radius: 10px;
  background-color: transparent;
  cursor: pointer;
  font-size: 2.8rem;
  font-family: Roboto Condensed;
  padding: 1.6rem 3rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.6);
  letter-spacing: 3px;
}
@media only screen and (max-width: 53.125em) {
  .btn {
    padding: 1.6rem 2rem;
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .btn {
    padding: 1.4rem 1rem;
    font-size: 2rem;
  }
}
.btn:hover {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  background-color: #dc9744;
  color: #fff;
}
.btn span {
  margin-left: 3px;
}
.btn:focus {
  outline: none;
}
.btn--white {
  color: #312c39;
  background-color: white;
}
.btn--white:hover {
  color: white;
  background-color: #312c39;
}
.btn--black {
  color: white;
  background-color: #312c39;
}
.form {
  width: 60%;
}
@media only screen and (max-width: 53.125em) {
  .form {
    width: 90%;
  }
}
.form__heading {
  margin-bottom: 3rem;
}
.form__group:not(:last-child) {
  margin-bottom: 2rem;
}
.form__inputi {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.form__inputi .form__group {
  flex: 0 0 50%;
}
@media only screen and (max-width: 37.5em) {
  .form__inputi {
    flex-direction: column;
  }
}
.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(244, 244, 244, 0.5);
  border: none;
  border-bottom: 3px solid #999;
  width: 90%;
  display: block;
  transition: all 0.4s;
}
@media only screen and (max-width: 53.125em) {
  .form__input {
    width: 97%;
  }
}
@media only screen and (max-width: 37.5em) {
  .form__input {
    width: 100%;
  }
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(49, 44, 57, 0.1);
  border-bottom: 3px solid #312c39;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #312c39;
}
.form__input::-webkit-input-placeholder {
  color: #999;
}
.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-4rem);
  transform: translateY(-4rem);
}
.form__radio-group {
  display: inline-block;
}
@media only screen and (max-width: 37.5em) {
  .form__radio-group:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
.form__radio-input {
  display: none;
}
.form__radio-label {
  cursor: pointer;
  position: relative;
  padding-left: 4.5rem;
  margin-right: 3rem;
}
.form__radio-button {
  height: 3rem;
  width: 3rem;
  border: 5px solid #312c39;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.4rem;
}
.form__radio-button::after {
  content: "";
  display: block;
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #312c39;
  opacity: 0;
  transition: opacity 0.2s;
}
.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}
.form .grupa {
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 37.5em) {
  .form .grupa {
    flex-direction: column;
  }
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #f4f4f4 inset;
}
.g-recaptcha {
  margin-bottom: 3rem;
}
.typing {
  overflow: hidden;
  border-right: 0.15em solid #dc9744;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  -webkit-animation: typing 4s steps(29, end),
    blink-caret 0.75s step-end infinite;
  animation: typing 4s steps(29, end), blink-caret 0.75s step-end infinite;
}
@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #dc9744;
  }
}
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #dc9744;
  }
}
.container {
  width: 100%;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.6);
}
.topbar {
  background-color: #dc9744;
  text-align: right;
  align-items: center;
  display: flex;
  justify-content: flex-end;

}
.topbar__link {
  color: #fff;
  text-decoration: none;
  margin-right: 5rem;
}
.whatsapp{
display:flex;
}
.topbar__link:hover {
  color: #312c39;
}
@media only screen and (max-width: 53.125em) {
  .topbar__link {
    margin-right: 3rem;
  }
}
.header {
  background-color: #fff;
  display: flex;
  flex: 1;
}
@media only screen and (max-width: 37.5em) {
  .header {
    flex-direction: column;
    align-items: center;
  }
}
.d-none {
  display: none;
}
.color-red {
  font-size: 2.5rem;
  color: #dc9744;
  font-weight: 700;
}
.slider {
  height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: linear-gradient(
      to right bottom,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)
    ),
    url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-attachment: fixed;
}
@media only screen and (max-width: 53.125em) and (orientation: portrait) {
  .slider {
    height: 30vh;
  }
}
.slider__container {
  margin: auto;
  text-align: center;
}
.slider__heading {
  -webkit-filter: none;
  filter: none;
  color: #fff;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  font-size: 7rem;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 5rem;
}
@media only screen and (max-width: 53.125em) {
  .slider__heading {
    font-size: 3.2rem;
    padding: 2rem 1rem;
  }
}
.onama {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.onama__content {
  display: flex;
}
@media only screen and (max-width: 53.125em) {
  .onama__content {
    flex-direction: column;
  }
}
.onama__image img {
  width: 100%;
  overflow: hidden;
}
.onama__text {
  padding: 6rem;
}
.wedo {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 5rem;
  margin-bottom: 5rem;
  justify-content: center;
}
@media only screen and (max-width: 53.125em) {
  .wedo {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
.wedo__item {
  padding: 3rem;
  flex: 0 0 30%;
  transition: all 0.3s ease;
}
.wedo__item:hover {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  box-shadow: 1rem 3rem 6rem rgba(0, 0, 0, 0.6);
}
.wedo__heading i {
  padding-right: 2rem;
}
.cta {
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(
    to bottom right,
    rgba(220, 151, 68, 0.9),
    #dc9744
  );
  color: white;
  padding: 4rem 0;
}
@media only screen and (max-width: 37.5em) {
  .cta {
    padding: 3rem 1rem;
    flex-direction: column;
  }
}
.cta__heading {
  font-size: 3.5rem;
  margin-right: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .cta__heading {
    font-size: 2.5rem;
    margin-right: 0;
  }
}
.us {
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
  background-color: #dc9744;
  color: #fff;
}
@media only screen and (max-width: 53.125em) {
  .us {
    padding: 0 2%;
  }
}
.us__heading {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 53.125em) {
  .us__heading {
    margin-bottom: 2rem;
  }
}
.us__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .us__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.us__item {
  display: flex;
  align-items: center;
  flex: 0 0 30%;
  padding: 2rem;
}
@media only screen and (max-width: 53.125em) {
  .us__item {
    padding: 1rem;
  }
}
.us__item i {
  font-size: 3rem;
  padding: 1.5rem;
}
@media only screen and (max-width: 53.125em) {
  .us__item i {
    font-size: 2rem;
    padding: 1.2rem;
  }
}
.reference {
  background-image: url("/img/boxes2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-attachment: fixed;
  position: relative;
}
.reference__layer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5%;
}
.reference__item {
  flex: 0 0 20%;
  padding: 2rem;
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 53.125em) {
  .reference__item {
    flex: 0 0 42%;
    padding: 1rem;
    margin: 1rem;
    background-color: rgba(255, 255, 255, 0.3);
  }
}
@media only screen and (max-width: 37.5em) {
  .reference__item {
    flex: 0 0 90%;
    padding: 1rem;
    margin: 1rem;
  }
}
.book {
  margin-bottom: 5rem;
}
.book__form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.book__tel {
  text-align: center;
  font-size: 5rem;
  display: flex;
  flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wf{
    display:flex;
    justify-content: center;
    align-items: center;

    

}
.wf img{
    margin-right: 1rem;
}
.book__tel a {
  text-decoration: none;
  color: #312c39;
}
.book__tel a:hover {
  color: #dc9744;
}
@media only screen and (max-width: 53.125em) {
  .book__tel {
    font-size: 3rem;
    padding: 0 2rem;
  }
}
.contact__icons {
  display: flex;
  justify-content: center;
}
.contact__item {
  margin: 1rem;
}
.footer {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background-color: #dc9744;
  color: #312c39;
}
