@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
/* @import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&display=swap"); */

:root {
  --details: #bc2041;
  --hover: #e19baa;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", serif !important;
}

.header img,
.footer img {
  max-width: 200px;
}

header,
.wrapper,
.footer,
.thanksWrapper {
  font-size: 14px;
  color: #585858;
  line-height: 1.8;
  font-family: "Poppins", serif;
  /* font-family: "Nunito Sans", serif; */
}

/* header */

.error-visible {
  display: block !important;
}

#phone {
  padding-top: 14px;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.wrapper {
  padding: 200px 0;
}

.wrapper h1 {
  text-align: center;
  margin-bottom: 16px;
  font-size: calc(1rem + 1.5vw);
}

.wrapper p:last-child {
  margin-bottom: 0;
}

.wrapper p:not(:last-child) {
  margin-bottom: 16px;
}

.wrapper a {
  text-decoration: none;
  cursor: pointer;
}

.wrapper ul {
  list-style-type: disc;
  padding-left: 20px;
}

.contacts__section {
  background-color: #eef3f8 !important;
}

/* form */

.submitBnt {
  font-family: inherit;
  color: #ffffff !important;
  background-color: var(--details);
  border: none;
  border-radius: 8px;
  line-height: normal;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  height: 45px;
  transition: background-color 0.3s ease-in-out;
}

.submitBnt:focus-visible {
  background-color: var(--hover) !important;
}

.submitBnt:hover:not(:focus-visible) {
  background-color: var(--hover) !important;
}

.submitBnt:active:not(:focus-visible) {
  background-color: var(--hover) !important;
}

.custom-form-group label a {
  color: var(--details);
  transition: color 0.3s ease-in-out;
}

.custom-form-group label a:focus-visible {
  color: var(--hover);
}

.custom-form-group label a:hover:not(:focus-visible) {
  color: var(--hover);
}

.custom-form-group label a:active:not(:focus-visible) {
  color: #081727;
}

.custom-form-control {
  margin-bottom: 15px;
  padding-left: 16px;
  border: 1px solid #dfe9f1;
  font-size: 14px;
  height: 45px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #9197b5;
  outline: none;
  transition: outline 0.3s ease-in-out;
}

.custom-form-control:focus-visible {
  outline: 2px solid var(--details);
}

.custom-form-control:hover:not(:focus-visible) {
  outline: 2px solid var(--details);
}

.custom-form-group label {
  color: #000;
  margin-left: 8px;
  text-align: left;
  font-weight: 400;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
}

.group-mandatory {
  position: relative;
}

.mandatory {
  position: absolute;
  top: -8px;
  left: 4px;
  color: #ec3324;
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.custom-checkbox {
  margin-top: 8px !important;
}

.confirm-small {
  padding-left: 10px;
}

.custom-form-group {
  display: flex;
  align-items: start;
  margin-top: 16px;
}

.custom-form-group input {
  border: 1px solid #ccc;
  background: #fff;
  padding: 0 12px;
  line-height: 38px;
  margin: 0 0 10px 0;
  box-shadow: inset 0 3px 2px #eee;
  border-radius: 2px;
  width: 13px !important;
  height: 13px !important;
  flex-shrink: 0;
}

/* footer */

.footer {
  padding-top: 80px;
}

.footer__center {
  padding-top: 20px;
}

.footer__right {
  padding-top: 50px;
}

.footer img {
  width: 100%;
  margin-bottom: 8px;
  display: block;
}

.footer a {
  text-decoration: none;
}

.footer ul {
  list-style-type: none;
  padding-left: 0;
}

.copyright {
  padding: 20px 0;
  text-align: center;
  font-weight: 500;
}

.footer li {
  display: flex;
}

.footer li::before {
  content: "\2794";
  margin-right: 8px;
  font-size: 0.9em;
  color: var(--details);
}

/*cookie __________________________________________________________*/

#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

#cookPopup p {
  margin: 0;
  text-align: left;
}

.cookPopup_btn {
  padding: 7px 15px;
  cursor: pointer;
  border: 0;
  background: var(--details);
  border-radius: 4px;
  font-weight: 800;
  color: #fff;
  transition: opacity 0.3s ease-out;
}

.cookPopup_btn:hover {
  background: var(--details);
  opacity: 0.8;
}

@media (min-width: 576px) {
  #cookPopup.show {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 575px) {
  #cookPopup.show {
    display: block;
    text-align: left;
  }

  .cookPopup_btn {
    margin: 10px 0 0 0;
  }
}

.cookPopup_title {
  font-size: 16px;
  font-weight: 700;
}

.cookPopup_desc {
  font-size: 16px;
}

.show {
  display: flex !important;
}

/*thanks*/

.thanksWrapper {
  position: relative;
  padding: 80px 0;
}

.thanksLogoWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.thanksLogo {
  max-width: 250px;
  width: 100%;
  margin: 60px 0 40px;
  /* max-width: 250px;
	width: 100%;
	margin: 0; */
}

.thanksTextContent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 100px;
  padding: 0 15px;
  max-width: 800px;
  text-align: center;
}

.thanksText {
  font-size: 16px;
  line-height: 25px;
}

/* media ______________________________________________________________________ */

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
}

@media (max-width: 767.98px) {
  .header p {
    text-align: center;
  }

  .footer__center {
    padding-top: 0px;
  }

  .footer__right {
    padding-top: 0px;
  }
}

@media (max-width: 575px) {
  #cookie_notification.show {
    display: block;
    text-align: left;
  }

  .cookie__btnWrapper {
    flex-direction: column;
  }

  .cookie_accept {
    width: 100%;
    margin: 10px 0 0 0;
  }

  .header .container {
    flex-direction: column;
  }
}

@media (max-width: 479.98px) {
  .header img,
  .footer img {
    max-width: 180px;
  }

  .btn {
    width: 100% !important;
  }

  .form__title,
  .form__descr {
    text-align: center !important;
  }

  .wrapper {
    padding-bottom: 80px;
  }

  .thanksLogo {
    max-width: 150px;
  }

  .footer .row {
    gap: 15px;
  }
}

/* GLOBAL _________________________________________________________________ */

.footer a,
.custom-form-group label a,
.cookPopup_desc a,
[type="checkbox"],
.wrapper a {
  color: var(--details);
  accent-color: var(--details);
  transition: opacity 0.3s ease-out;
}

.footer a:hover,
.custom-form-group label a:hover,
.cookPopup_desc a:hover {
  color: var(--details);
  opacity: 0.8;
  text-decoration: none;
}

.mobile {
  display: none;
}

@media (max-width: 500px) {
  .mobile {
    display: block;
  }
}

/* ______________________________________________________________________ */

/* #home {
	background: #999 url('../images/bg.jpg') no-repeat center center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.home-content {
	background-color: #ffffff4d;
	padding: 20px;
	border-radius: 10px;
}

#home h1 {
	font-size: 60px;
	color: #fff;
	font-weight: 700;
}

#home p {
	font-size: 20px;
	color: #c9c9c9;
	font-weight: 400;
}

#home .btn {
	background-color: var(--details);
	padding: 10px 20px;
	border-radius: 25px;
	color: #fff;
	transition: all .3s ease-in-out;
}

#home a:hover {
	background-color: var(--hover) !important;
	color: #000 !important;
} */
@media screen and (max-width: 500px) {
  .header-menu {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
  }
}
