@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
html, body {
  font-size: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

html {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  color: #000;
  line-height: 1.5;
  font-size: 14px;
}
@media only screen and (min-width: 600px) {
  html {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

button {
  font-family: "Montserrat", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin: 0;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  cursor: pointer;
}

p {
  margin-bottom: 0.5em;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

.uppercase {
  text-transform: uppercase;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f7f5;
  color: #897a7a;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #514754;
  color: #514754;
  padding: 0 0.5em;
  background-color: #f2eded;
  border-bottom: solid 1px #e5cfd0;
  position: fixed;
  width: 100%;
  z-index: 100;
}
header a {
  display: flex;
  padding: 0.2em;
}
header img {
  height: 35px;
}
header h4 {
  margin-bottom: 0;
  margin-left: 0.5em;
}

h1 {
  text-align: center;
  color: #448ea6;
}

h2 {
  text-align: center;
  color: #448ea6;
  font-weight: 600;
}

h3 {
  font-size: 1.14rem;
  color: #448ea6;
  font-weight: 600;
}

input {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  color: #514754;
}

a {
  color: #448ea6;
}

.has-error .text-danger {
  font-size: 0.8rem;
  color: #a50014;
  display: inline-block;
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  padding: 0.5rem;
  background-color: #ff8c9a;
  border-radius: 0 0 5px 0;
  border-left: 1px solid #a50014;
}

sup {
  font-size: 0.65rem;
}

section {
  padding: 1rem;
}

@media (min-width: 576px) {
  section {
    padding: 1rem 5rem;
  }
}
@media (min-width: 768px) {
  section {
    padding: 1rem 10rem;
  }
}
@media (min-width: 992px) {
  section {
    padding: 1rem 12rem;
  }
}
@media (min-width: 1200px) {
  section {
    padding: 1rem 12rem;
  }
}
a:has(button) {
  text-decoration: none;
}

.btn {
  background-color: #448ea6;
  border: 1px solid #448ea6;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0.5rem auto;
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}

.btn_outline {
  background-color: transparent;
  color: #448ea6;
  border: 1px solid #448ea6;
}

.btn_secondary {
  background-color: #db2c4e;
  border: 1px solid #db2c4e;
}

.btn_chat {
  background-color: #5ac500;
  border: 1px solid #5ac500;
}

.subscribe {
  background-image: url(../img/form.jpg);
  background-position: right bottom;
  background-size: cover;
  color: #514754;
}

form {
  max-width: 30rem;
  margin: 0 auto;
}
form .footer-form {
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 1px black;
}
form .footer-form a {
  color: #fff;
}

.input_block {
  position: relative;
  margin-bottom: 0.5rem;
}
.input_block i {
  position: absolute;
  color: #448ea6;
  font-size: 1.5rem;
  top: 0.7rem;
  left: 0.5rem;
}
.input_block input {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  padding-left: 2.3rem;
  border-radius: 5px;
  border: 1px solid #fff;
  width: 100%;
  outline-color: transparent;
  outline: transparent;
}

#phone_form {
  max-width: 75%;
}

#birth_date_form {
  max-width: 75%;
}

@media (min-width: 576px) {
  .input_block i {
    top: 0.6rem;
  }
}
input:focus {
  border: 1px solid #448ea6;
}

.footer {
  text-align: center;
}

.custom-check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #448ea6;
}

/* On mouse-over, add a grey background color */
/* When the checkbox is checked, add a blue background */
.custom-check input:checked ~ .checkmark {
  background-color: #448ea6;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#newsletter_form label, #cgus_form label {
  color: #514754;
  background-color: rgba(255, 255, 255, 0.4);
  text-shadow: 1px 1px 1px white;
}

.theme_title {
  background-image: url(../img/ex-infidelity.jpg);
  background-position: right center;
  background-size: cover;
}
.theme_title h1 {
  color: #448ea6;
  margin-top: 4rem;
  padding-right: 8rem;
  text-align: left;
}

@media (min-width: 630px) {
  .theme_title {
    background-image: none;
    background-color: #efece7;
  }
  .theme_title h1 {
    padding-right: 0;
    text-align: center;
    margin-top: 4rem;
  }
}
.theme {
  background-image: url(../img/why.jpg);
  background-position: left center;
  background-size: cover;
}
.theme h2, .theme h3 {
  color: #fff;
  text-shadow: 1px 1px 1px black;
}
.theme p {
  font-weight: 500;
  color: #000;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  border-radius: 5px;
}

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

.card {
  box-shadow: 0px 0px 5px 4px rgba(81, 71, 84, 0.1);
  border: 1px solid #f2eded;
  background-color: #fff;
  padding: 1rem;
  border-radius: 13px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  margin: 0.5rem;
}
.card .top {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.card .top .left {
  width: 30%;
}
.card .top .left img {
  border-radius: 50%;
  width: 100%;
}
.card .top .right {
  width: 70%;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card .top .right .first {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.card .top .right .first h3 {
  font-weight: 700;
  margin-bottom: 0;
}
.card .top .right .first .calls {
  font-weight: 700;
}
.card .top .right .second {
  margin-bottom: auto;
}
.card .top .right .third {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #448ea6;
}
.card .top .right .third .rate {
  color: #ffbc00;
  font-weight: 700;
  font-size: 1.1rem;
}
.card .top .right .third .price {
  font-weight: 700;
  font-size: 1.1rem;
}
.card .bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.card .bottom button {
  text-transform: uppercase;
  font-size: 1rem;
  width: 100%;
  margin: 0;
}
.card .bottom a:has(button) {
  width: 100%;
}
.card .gap {
  width: 2rem;
}

.footer {
  text-align: center;
  padding-top: 0;
}/*# sourceMappingURL=style.css.map */