body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Catamaran", sans-serif;
  font-weight: 600;
}

p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  display: list-item;
  text-align: -webkit-match-parent;
  font-family: "Source Sans Pro", sans-serif;
}

body {
  margin: 0;
}

input,
textarea {
  /* Значення за замовчуванням для браузера */
  margin: 0;
  padding: 0;
  border: 1px black solid;
  background: none;
  font: inherit;
  color: inherit;
  line-height: normal;
  /* Додаткові стилі, які можуть бути обнулені за потреби */
  /* Замініть це значення на ваші потреби */
  resize: none; /* Якщо ви не хочете, щоб textarea змінювалася за допомогою повзунка */
  /* Додаткові обнулення для текстових полів */
  /* text-align: left; */
  /* font-size: medium; */
  border-radius: 12px;
}

.popup {
  position: absolute;
  background: #fff;
  top: 18px;
  left: 0;
  z-index: 999;
  width: 90%;
  padding: 40px 26px;
  left: 50%;
  border-radius: 10px;
  margin-left: -45%;
  box-shadow: 2px 16px 10px #00000061;
  margin: 0 auto;
  visibility: hidden;
}

#pop_more_info {
  width: 60% !important;
  transform: translateX(-50%);
}

.close {
  display: flex;
  justify-content: right;
}

.close img {
  user-select: none;
}

.pop_wrapper {
  position: fixed;
  z-index: 998;
  background: #0000006b;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}

/*HEADER*/
header {
  position: relative;
  background-image: url("images/header_bg.jpg");
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 72px;
}

.header_overlay {
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container {
  width: 90%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/*NAVIGATION*/
.header_line {
  position: fixed;
  top: 0;
  left: 0;
  padding: 12px;
  width: 100%;
  z-index: 997;
  background-color: rgb(245, 245, 245);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.header_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}

.header_line_overlay {
  background-color: rgba(0, 0, 0, 0.02);
}

.logo img {
  height: 48px;
  padding: 3px;
}

nav {
  display: flex;
}

.nav_item {
  text-decoration: none !important;
  text-transform: uppercase;
  margin-right: 40px;
  color: black;
  transition: background-color 0.5s linear;
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 30px;
}

.nav_item:hover {
  background-color: #d5d7d8;
  color: #2b3d41;
}

.burger_menu_button {
  display: none;
}

.burger_menu_line {
  display: none;
  z-index: 997;
  background-color: rgb(245, 245, 245);
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.burger_nav_item {
  text-decoration: none;
  margin-right: 10px;
  color: black;
  transition: background-color 0.5s linear;
  padding: 10px;
  border-radius: 30px;
}

.burger_nav_item:hover {
  background-color: #d5d7d8;
}

/*HEADER_INFO*/
.header_info_block {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 100;
}

.header_info_block p {
  color: rgb(250, 250, 250);
  text-align: center;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: -1;
}

.header_info {
  text-align: center;
  color: rgb(250, 250, 250);
}

.header_title {
  color: #fff;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 2px;
  font-weight: 700;
}

.header_subtitle {
  font-size: 50px;
  color: rgb(250, 250, 250);

  text-align: center;
}

.header_suptitle {
  font-size: 50px;
  color: rgb(250, 250, 250);

  text-align: center;
}

.header_list {
  display: flex;
  justify-content: center;
}

.header_list p {
  margin-right: 10px;
}

.header_info ul {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.header_info li {
  width: 90px;
}

.header_info li:nth-child(2) {
  border-right: 2px solid rgb(255, 255, 255);
  border-left: 2px solid rgb(255, 255, 255);
}

.header_info_list {
  margin-bottom: 20px;
}

/*BUTTON*/
.button {
  background: #116975;
  border: 1px solid #116975;
  color: #fff;
  display: inline-block;
  letter-spacing: 1px;
  padding: 12px 40px;
  font-size: 14px;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.3s linear;
}

.button:hover {
  background-color: #155861;
  color: white;
  text-decoration: none;
}

.phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 15px;
  right: 25px;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  background: #116975;
  border: 1px solid #116975;
  z-index: 997;
}

.phone a {
  padding: 0;
  margin: 0;
}

/*POPUP-FORM*/
.popup_form {
  margin-top: -205px !important;
  top: 50%;
  left: 50%;
  position: fixed;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background-color: rgb(245, 245, 245);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  z-index: 999;
  min-width: 220px;
}

header .container {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup_form h4 {
  font-size: 24px;
}

.popup_form .button {
  margin-top: 10px;
  font-size: 18px;
}

#popup-form {
  transform: translateX(-50%);
}

.form_button_list h4 {
  margin: 0;
  font-size: 24px;
}

.form_button_list .button {
  width: 100%;
}

.form_block {
  position: fixed;
  visibility: hidden;
  left: 0;
  top: -20;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 999;
}

.form_title {
  display: flex;
  justify-content: space-between;
}

.form_title h4 {
  font-size: 24px;
  align-items: center;
}

.popup_form {
  min-width: 200px;
}

.popup {
  min-width: 200px;
}

.order_form {
  display: none;
  flex-direction: column;
  align-items: center;
  z-index: 997;
}

.order_form input {
  width: 90%;
  margin-top: 16px;
  height: 45px;
  padding: 0 12px;
}

.order_form textarea {
  overflow: auto;
  width: 90%;
  margin-top: 16px;
  padding: 3px 12px;
  height: 80px;
}

.success_send {
  display: none;
}

.failed_send {
  display: none;
}

.comment-button {
  background: #116975;
  border: 1px solid #116975;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 40px;
  border-radius: 40px;
  text-decoration: none;
}

/*CAROUSELE*/
.owl-carousel {
  margin: 0 auto;
}

.info_carousel_block {
  text-align: center;
  padding: 50px 0;
}

.info_carousel_block h3 {
  color: #848484;
}

.carousel_block {
  padding: 40px;
  padding-bottom: 0;
}

.border {
  height: 2px;
  margin: 20px auto 20px;
  position: relative;
  width: 80px;
  background: #c0c3c7;
}

.carousel_title {
  font-weight: 600;
  font-size: 35px;
  text-transform: uppercase;
  color: #232323 !important;
}

.carousel_subtitle {
  font-size: 18px;
}

.carousel_btn {
  text-align: center;
}

.carousel_btn a {
  margin-top: 30px;
}

.carousel_item img {
  display: block;
  max-width: 99%;
  height: 99%;
  object-fit: fill;
  border: #116975 1px solid;
}

.carousel_item {
  height: 270px;
}

.carousel_subtitle {
  margin-bottom: 15px;
}

.grid-wrapper {
  margin: 0 auto;
  max-width: 970px;
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Створення 6 стовбців */
  grid-template-rows: repeat(
    2,
    1fr
  ); /* Створення 2 рядків */ /* Відступи між елементами у гріді */
  grid-template-rows: auto auto auto;
  color: #848484;
  justify-items: center;
  padding: 5px;
}

.grid-item {
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.grid-item p {
  margin: 0;
  font-size: 16px;
  line-height: 15px;
}

/*HOW_WE_WORK*/
.how_we_work {
  text-align: center;
  padding: 60px 0;
}

.how_we_work_info {
  margin-bottom: 60px;
}

.how_we_work_title {
  font-size: 35px;
}

.cards_block {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.card_block1,
.card_block3 {
  background-color: #116975;
  width: 337px;
  color: white;
  padding: 24px;
  border: 1px solid #116975;
  margin-right: 5px;
}

.card_block2,
.card_block4 {
  background-color: white;
  width: 337px;
  padding: 24px;
  border: 1px solid #116975;
  margin-right: 5px;
}

.card_icon {
  margin-top: 20px;
}

/*WHY_WE*/
.why_we {
  text-align: center;
  max-width: 1150px;
  margin: 0 auto;
}

.why_we_info_block .title_img_block {
  height: 50%;
  width: 50%;
}

.title_img {
  max-width: 100%;
  height: auto;
  border: 1px solid #116975;
}

.why_we_text_block {
  text-align: center;
  padding-bottom: 40px;
  margin: 0;
}

.why_we p {
  font-size: 18px;
  margin: 0;
  margin-bottom: 15px;
}

.why_we h3 {
  font-size: 35px;
}

.why_we_info_block {
  display: flex;
  position: relative;
}

.list {
  margin-left: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list p {
  text-align: left;
}

.list_item {
  display: flex;
  align-items: center;
}

.list_item p {
  margin: 0;
  margin-left: 5px;
}

.social_icon {
  margin-right: 10px;
}

.subtitle_why_we h4 {
  padding: 20px;
  padding-bottom: 10px;
  font-size: 22px;
}

.subtitle_why_we .button {
  font-size: 20px;
}

.our_advantages {
  padding: 40px 0;
}

/*FOOTER*/
footer {
  background: #58513c;
  padding: 60px 0 50px;
  width: 100%;
}

.footer_title {
  font-size: 22px;
}

.footer_info {
  color: rgb(245, 245, 245);
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
  width: 90%;
}

.footer_contact_title {
  margin: 0 auto;
  color: rgb(245, 245, 245);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_contact_subtitle {
  display: flex;
  flex-direction: column;
  margin-right: 30px;
  align-items: center;
  text-align: center;
  width: 30%;
}

.footer_contact_subtitle p {
  margin: 0 0 15px 0;
  color: white;
  text-decoration: none;
}

.footer_contact_subtitle a {
  color: white;
  transition: color 0.3s ease;
}

.footer_contact_subtitle a:hover {
  color: #116975;
  text-decoration: none;
}

.google-map {
  width: 100%;
  max-height: 302px;
  border: #405b61 5px solid;
}

.footer_nav {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin: 40px auto;
}

.footer_nav_item {
  text-decoration: none;
  text-transform: lowercase;
  color: white;
  font-size: 20px;
  font-family: "Source Sans Pro", sans-serif;
  transition: color 0.3s ease;
  text-align: center;
}

.footer_nav_item:hover {
  color: #116975;
  text-decoration: none;
}

@media (max-width: 1200px) {
  header {
    height: 80vh;
  }
  .header_title {
    font-size: 44px;
    line-height: 50px;
  }
  .header_subtitle {
    font-size: 44px;
    line-height: 50px;
  }
  .header_suptitle {
    font-size: 44px;
    line-height: 50px;
  }

  .container {
    max-width: 1140px;
  }
  .why_we_info_block .title_img_block {
    width: 540px;
  }
  .why_we_info_block .title_img {
    max-width: 350px;
  }
}

@media (max-width: 991px) {
  .form_button_list a {
    font-size: 14px !important;
  }

  .comment_block {
    width: 100%;
    margin-left: 0 !important;
  }

  header {
    height: 70vh;
  }

  .popup {
    width: 700px;
  }

  .burger_menu_button {
    display: block;
  }

  .header_title {
    font-size: 30px;
  }

  .header_subtitle {
    font-size: 30px;
  }

  .header_suptitle {
    font-size: 30px;
  }

  .why_we_info_block {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cards_block {
    flex-wrap: wrap;
  }

  .list {
    margin-top: 30px;
    margin-left: 0px;
  }

  .list .button {
    margin-top: 20px;
  }

  .list h4 {
    margin-top: 20px;
  }

  .footer_contact_subtitle {
    width: 100%;
    margin: 50px 0;
  }

  .footer_info {
    margin-bottom: 0px;
  }
  .footer_nav {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .container {
    max-width: 960px;
  }

  .why_we_info_block .title_img {
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .footer_contact_title {
    flex-wrap: wrap;
  }

  header {
    height: 60vh;
  }

  .header_title {
    font-size: 20px;
    line-height: 40px;
  }
  .header_subtitle {
    font-size: 20px;
    line-height: 40px;
  }
  .header_suptitle {
    font-size: 20px;
    line-height: 40px;
  }

  .grid-wrapper {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }

  .container {
    max-width: 720px;
  }

  .grid-item:nth-child(11) {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .grid-item:nth-child(12) {
    grid-column-start: 4;
    grid-column-end: 6;
  }
}

@media (max-width: 624px) {
  .grid-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
  .carousel_block {
    padding: 20px 10px;
  }

  .form_button_list .button {
    padding: 5px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 540px;
  }
  .grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-item:nth-child(11) {
    grid-column-start: auto;
    grid-column-end: auto;
  }

  .grid-item:nth-child(12) {
    grid-column-start: auto;
    grid-column-end: auto;
  }

  .why_we_info_block .title_img {
    max-width: 280px;
  }

  .list {
    margin: 0px;
  }

  .list .button {
    margin-top: 10px;
  }

  .list h4 {
    margin-top: 10px;
  }

  .info_carousel_block {
    padding-bottom: 0px;
  }

  .carousel_block {
    padding-top: 20px;
  }

  .button {
    font-size: 18px;
  }

  .phone_icon {
    height: 30.44px;
    width: 31.89px;
  }

  .phone {
    height: 50px;
    width: 50px;
  }
}

@media (max-width: 480px) {
  header {
    height: 50vh;
  }

  .burger_nav_item {
    font-size: 14px;
    text-align: center;
    padding: 8px;
  }

  .header_title {
    font-size: 18px;
    line-height: 30px;
  }
  .header_subtitle {
    font-size: 18px;
    line-height: 30px;
  }
  .header_suptitle {
    font-size: 18px;
    line-height: 30px;
  }
  .header_info_list {
    font-size: 13px;
  }
  .grid-item {
    font-size: 15px;
  }

  .container {
    padding: 0px;
    margin-right: auto;
    margin-left: auto;
    max-width: 470px;
  }

  .why_we_info_block .title_img {
    max-width: 260px;
    min-width: 220px !important;
    width: 100%;
  }

  .grid-item p {
    margin: 0;
    font-size: 15px;
    line-height: 15px;
  }
}

@media (max-width: 380px) {
  .burger_menu_line {
    width: 100%;
  }
}

/* Стилі для меню пагінації */
.pagination {
  display: block !important;
  text-align: center;
  margin-top: 50px;
  margin: 10px auto !important;
}
.pagination span {
  user-select: none;
}
.pagination-button {
  display: inline-block;
  background-color: #b3b8bb;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 2px;
  user-select: none;
}
.active {
  background-color: #007bff;
}
.container {
  margin: 0 auto;
}
.img-sm {
  width: 46px;
  height: 46px;
}
.panel {
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.075);
  border-radius: 0;
  border: 0;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.panel .panel-footer,
.panel > :last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.panel .panel-heading,
.panel > :first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-body {
  padding-bottom: 25px;
}
.media-block .media-left {
  display: block;
  float: left;
}
.media-block .media-right {
  float: right;
}
.media-block .media-body {
  display: block;
  overflow: hidden;
  width: auto;
}
.middle .media-left,
.middle .media-right,
.middle .media-body {
  vertical-align: middle;
}
.text-muted,
a.text-muted:hover,
a.text-muted:focus {
  color: #acacac;
}
.text-sm {
  font-size: 0.9em;
}
.btn-sm,
.btn-group-sm > .btn,
.btn-icon.btn-sm {
  padding: 5px 10px !important;
}
.mar-top {
  margin-top: 15px;
}
#full-stars-example {
  /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
  .rating-group {
    display: inline-flex;
  }
  /* make hover effect work properly in IE */
  .rating__icon {
    pointer-events: none;
  }
  /* hide radio inputs */
  .rating__input {
    position: absolute !important;
    left: -9999px !important;
  }
  /* set icon padding and size */
  .rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    font-size: 1.5rem;
  }
  /* set default star color */
  .rating__icon--star {
    color: orange;
  }
  /* if none icon is checked, make it red */
  .rating__input--none:checked + .rating__label .rating__icon--none {
    color: red;
  }
  /* if any input is checked, make its following siblings grey */
  .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
  }
  /* make all stars orange on rating group hover */
  .rating-group:hover .rating__label .rating__icon--star {
    color: orange;
  }
  /* make hovered input's following siblings grey on hover */
  .rating__input:hover ~ .rating__label .rating__icon--star {
    color: #ddd;
  }
  /* make none icon grey on rating group hover */
  .rating-group:hover
    .rating__input--none:not(:hover)
    + .rating__label
    .rating__icon--none {
    color: #eee;
  }
  /* make none icon red on hover */
  .rating__input--none:hover + .rating__label .rating__icon--none {
    color: red;
  }
}
label {
  margin-bottom: 0px;
}
.control-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.send_comment_btn {
  padding: 5px 20px; /* Відступи всередині кнопки */
  font-size: 16px; /* Розмір шрифту */
  background-color: #007bff; /* Колір фону */
  color: #fff; /* Колір тексту */
  border: none; /* Відключення рамки */
  border-radius: 4px; /* Закруглені кути */
  cursor: pointer; /* Зміна курсору при наведенні */
  transition: background-color 0.3s ease; /* Плавна анімація при зміні кольору фону */
}

.comment_area {
  width: 100%;
  height: 60px;
  font-size: 18px;
  border-radius: 0px;
}

.review_block {
  display: flex;
  margin: 0 auto;
  margin-bottom: 20px;
  border-bottom: 1px #4e595f solid;
}

.review_block p {
  text-align: left;
}

.user_img_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 10px;
  width: 100px;
}

.user_img_block .fa {
  color: orange;
}

.rating__label {
  margin-bottom: 0px;
}

.user_info_block {
  width: 90%;
}

.username {
  font-size: 18px;
  text-align: center !important;
}

.pagination-button-small {
  display: inline-block;
  background-color: #b3b8bb;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 2px;
  user-select: none;
  margin-right: 10px;
  margin-left: 10px;
}

@media (max-width: 578px) {
  .review_block {
    flex-direction: column;
    align-items: center;
  }
}

#authenticate_btn {
  background-color: #fff;
  color: #4285f4;
  border: 1px solid #4285f4;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 2px;
}

@media screen and (max-width: 480px) {
  #authenticate_btn {
    font-size: 14px;
    padding: 8px 16px;
    margin: 2px;
    width: 100%;
  }
  .comment_area {
    font-size: 16px;
  }
}

@media screen and (max-width: 420px) {
  #authenticate_btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  #logout_btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media screen and (max-width: 370px) {
  #authenticate_btn {
    font-size: 10px;
    padding: 4px 8px;
  }

  .rating__label {
    font-size: 1.5rem !important;
  }
}

/* Styles for user-avatar */
#user-avatar {
  border-radius: 50%; /* Makes the avatar circular */
  width: 46px;
  height: 46px;
  object-fit: cover; /* Ensures the image covers the entire space */
}

/* Styles for user-name */
#user-name {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

.user_info_block {
  overflow-wrap: break-word; /* Або overflow-wrap як більш сучасна альтернатива */
}

.user_panel {
  display: flex;
  justify-content: center;
  width: 160px;
  padding-bottom: 25px;
}

#user-info {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.panel-body h2 {
  margin: 0;
}

.google-authentication-container {
  display: flex;
  justify-content: center;
}

.carousel_item {
  background-color: white;
}

.report_btn {
  padding: 5px 20px; /* Відступи всередині кнопки */
  font-size: 16px; /* Розмір шрифту */
  background-color: #116975; /* Колір фону */
  color: #fff; /* Колір тексту */
  border: none; /* Відключення рамки */
  cursor: pointer; /* Зміна курсору при наведенні */
  transition: background-color 0.3s ease; /* Плавна анімація при зміні кольору фону */
  border-radius: 15px;
}

.report_btn:hover {
  color: white !important;
}

.comment_block {
  background: #58513c;
}

.comment_block .container {
  background: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  color: black !important;
}

#container_comment_block {
  border: black 1px solid;
  width: 95%;
  margin-bottom: 20px;
}

.comment_block {
  border: black 1px solid;
  background: white;
}

.col-md-7 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.comment_block p {
  color: black !important;
}

.comment_block {
  margin-left: auto;
  padding: 15px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-top: 30px;
  margin-bottom: 30px;
}

.comment_area {
  color: black;
}

.row {
  display: flex;
  justify-content: center;
}

.get_file {
  width: 300px;
  margin: 0 auto;
  margin-top: 120px;
}

.get_file label {
  width: 280px;
}

#phoneNumberInput {
  width: 280px;
}

#detailNumberInput {
  width: 280px;
}

@media (max-width: 991px) {
  nav {
    display: none !important;
  }
}

.footer__telephone_number {
  text-decoration: none !important;
}

/* cookie styles */
.cookies {
  min-width: 220px;
  padding: 30px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: -645px;
  max-height: 500px;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 10px;
  z-index: 9999999;
  animation: cookie 0.7s ease 1s 1 normal forwards;
}

.cookies__header {
  color: white;
  font-size: 18px;
  filter: drop-shadow(0px 0px 3px #030303);
}
.cookies__descr {
  color: white;
  font-size: 16px;
  overflow-wrap: break-word;
  filter: drop-shadow(0px 0px 3px #030303);
}
.cookies__button {
  display: block;
  width: 100%;
  height: 30px;
  border-radius: 5px;
  color: white;
  line-height: 30px;
  text-align: center;
  margin-top: 26px;
  cursor: pointer;
}
.green {
  /* background-color: #28a745; */
  background-color: #1f99a9;
}
.blue {
  /* background-color: rgb(0, 123, 255); */
  background-color: #bba597;
}
.orange {
  /* background-color: rgb(255, 193, 7); */
  background-color: white;
  color: rgb(33, 37, 41);
}
.cookies__top {
  color: white;
  margin-bottom: 15px;
}
.cookies__toggle-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cookies__toggle-wrapper .cookies__header {
  margin-bottom: 0;
  line-height: 30px;
}
.cookies__toggle {
  width: 57px;
  height: 32px;
  background: rgba(38, 177, 195, 0.6);
  border-radius: 5px;
  color: white;
  line-height: 32px;
  text-align: left;
  cursor: not-allowed;
}
.cookies__toggle:hover {
  background: rgba(26, 97, 107, 0.8);
}
.cookies__toggle-spacer {
  position: relative;
  top: -31px;
  right: -42px;
  width: 25%;
  height: calc(100% - 2px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
}
.cookies__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 30px;
}
.cookies__footer .cookies__button {
  width: 50%;
  margin-top: 0;
}
.cookies__back {
  color: white;

  line-height: 30px;
  text-align: right;
  cursor: pointer;
}

@keyframes cookie {
  from {
    bottom: -645px;
  }
  to {
    bottom: 15px;
  }
}

.hide {
  display: none;
}

@media (min-width: 992px) {
  nav {
    display: block;
  }

  .burger_menu_button {
    display: none;
  }
  .burger_menu_line {
    display: none;
  }
}

@media (max-width: 992px) {
  .card_block1,
  .card_block2,
  .card_block3,
  .card_block4 {
    width: 100% !important;
  }
}

/* Базові стилі для великих екранів (від 1200px і більше) */
h1 {
  font-size: 48px !important;
}
h2 {
  font-size: 40px !important;
}
h3 {
  font-size: 32px !important;
}
h4 {
  font-size: 24px !important;
}
h5 {
  font-size: 20px !important;
}
p {
  font-size: 18px !important;
}

/* max-width: 1200px */
@media (max-width: 1200px) {
  h1 {
    font-size: 42px !important;
  }
  h2 {
    font-size: 36px !important;
  }
  h3 {
    font-size: 30px !important;
  }
  h4 {
    font-size: 22px !important;
  }
  h5 {
    font-size: 18px !important;
  }
  p {
    font-size: 16px !important;
  }
}

/* max-width: 992px */
@media (max-width: 992px) {
  h1 {
    font-size: 36px !important;
  }
  h2 {
    font-size: 30px !important;
  }
  h3 {
    font-size: 24px !important;
  }
  h4 {
    font-size: 20px !important;
  }
  h5 {
    font-size: 16px !important;
  }
  p {
    font-size: 15px !important;
  }
}

/* max-width: 768px */
@media (max-width: 768px) {
  h1 {
    font-size: 30px !important;
  }
  h2 {
    font-size: 26px !important;
  }
  h3 {
    font-size: 22px !important;
  }
  h4 {
    font-size: 18px !important;
  }
  h5 {
    font-size: 15px !important;
  }
  p {
    font-size: 14px !important;
  }
}

/* max-width: 576px */
@media (max-width: 576px) {
  h1 {
    font-size: 26px !important;
  }
  h2 {
    font-size: 22px !important;
  }
  h3 {
    font-size: 18px !important;
  }
  h4 {
    font-size: 16px !important;
  }
  h5 {
    font-size: 14px !important;
  }
  p {
    font-size: 13px !important;
  }
}

/* max-width: 400px */
@media (max-width: 400px) {
  h1 {
    font-size: 14px !important;
  }
  h2 {
    font-size: 13px !important;
  }
  h3 {
    font-size: 13px !important;
  }
  h4 {
    font-size: 12px !important;
  }
  h5 {
    font-size: 12px !important;
  }
  p {
    font-size: 12px !important;
  }
}

@media (max-width: 360px) {
  .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo img {
    height: 33px;
  }

  header {
    margin-top: 65px;
  }
}

@media (max-width: 360px) {
  .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
