nav {
  height: 150px;
  justify-content: space-between;
  padding: 20px 40px 0 40px;
  box-sizing: border-box;
  z-index: 100000;
  top: 0;
  transition: top 0.8s;
  background-color: #EFE9E0;
}
nav.hide {
  top: -400px;
}
nav .tel {
  width: 28%;
}
nav .tel img {
  width: 80%;
  margin-top: 10px;
}
nav .tel .contact-btn {
  flex: 1;
  display: flex;
  margin-bottom: 10px;
}
nav .tel .contact-btn a {
  text-decoration: none;
  color: black;
  border: 1px solid black;
  height: 40px;
  line-height: 40px;
  padding: 0px 20px;
  border-radius: 25px;
  transition: background-color 0.5s, color 0.6s;
  text-transform: uppercase;
}
nav .tel .contact-btn a:hover {
  background-color: black;
  color: white;
}
nav .icon {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}
nav .icon img {
  display: block;
  margin: auto;
}
nav .icon h1 {
  margin-top: 50px;
}
nav .right {
  width: 28%;
  display: flex;
  justify-content: space-between;
}
nav .right .astrid-promotion {
  margin-top: -10px;
}
@media screen and (max-width: 960px) {
  nav {
    flex-direction: column;
    padding: 10px 20px 0 20px;
    justify-content: flex-start;
    height: 180px;
  }
  nav.hide {
    top: -500px;
  }
  nav .icon {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    width: 90%;
    margin: auto;
  }
  nav .icon img {
    display: block;
    margin: auto;
    width: 100%;
  }
  nav .icon h1 {
    width: 100%;
    margin-top: 50px;
  }
  nav .icon h1 img {
    width: 99%;
  }
  nav .tel {
    width: 100%;
    margin-bottom: 20px;
  }
  nav .tel img {
    width: 70%;
    display: block;
    margin: auto;
  }
  nav .tel .contact-btn {
    display: none;
  }
  nav .right {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1399px) {
  nav .tel img {
    width: 75% !important;
  }
  nav .right .contact-btn a {
    display: none;
  }
}

.contact-btn-mobile {
  display: none;
}

@media screen and (max-width: 960px) {
  .contact-btn-mobile {
    display: flex !important;
    justify-content: center;
    position: absolute;
    bottom: 50px;
    width: 100%;
  }
  .contact-btn-mobile a {
    font-family: "maaxmedium", serif;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    height: 44px;
    line-height: 44px;
    padding: 0px 40px;
    border-radius: 25px;
    transition: background-color 0.5s, color 0.6s;
    background-color: black;
    font-family: "nexa_boldregular";
  }
}
.header {
  flex-direction: column;
  background: url("images/header.png") no-repeat center;
  background-size: cover;
}
.header header {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.header header img {
  margin-bottom: 50px;
}
.header .tagline {
  height: calc(1800px - 100vh);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.header .tagline h2 {
  position: absolute;
  width: 90%;
  height: 520px;
  transform: translateY(50%);
}
@media screen and (max-width: 960px) {
  .header {
    background: url("images/header-mobile.png") no-repeat center;
  }
  .header .tagline {
    height: calc(1400px - 100vh);
  }
  .header .tagline h2 {
    height: 180px;
  }
}
@media screen and (min-width: 760px) and (max-width: 960px) and (orientation: portrait) {
  .header {
    background-size: 100%;
  }
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
  opacity: 1;
  transition: opacity 0.5s;
}
.bounce.hide {
  opacity: 0;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.tagline {
  padding-top: 50px;
}
@media screen and (max-width: 1399px) {
  .tagline .title div {
    width: 80%;
  }
}
@media screen and (max-width: 960px) {
  .tagline h1 {
    font-size: 30px;
  }
}
.tagline .content .left {
  display: flex;
  justify-content: center;
  height: 450px;
  background: url("./images/tagline-img.png") transparent no-repeat center;
}
@media screen and (max-width: 1399px) {
  .tagline .content .left h1 {
    font-size: 40px;
    background-color: red;
  }
}
.tagline .content .left div {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tagline .content .left h2 {
  font-weight: normal;
  color: #B58D6C;
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 1.1px;
}
@media screen and (max-width: 1399px) {
  .tagline .content .left h2 {
    font-size: 22px;
    line-height: 32px;
  }
}
.tagline .content .left ul {
  margin-top: 20px;
  margin-left: -50px;
}
@media screen and (max-width: 1399px) {
  .tagline .content .left ul {
    margin-left: -60px;
  }
}
.tagline .content .left ul li {
  list-style-type: none;
  font-size: 22px;
  font-family: "nexa_boldregular";
  color: #B58D6C;
  letter-spacing: 1.1px;
}
@media screen and (max-width: 1399px) {
  .tagline .content .left ul li {
    font-size: 18px;
  }
}
.tagline .content .right {
  width: 400px;
  margin: auto;
}
.tagline .content .right p {
  margin-bottom: 10px;
}
.tagline .content .right p:nth-child(2) {
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .tagline .content .right p:nth-child(2) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 960px) {
  .tagline .content {
    flex-direction: column;
  }
  .tagline .content .left {
    background-size: 90%;
    width: 100%;
    height: 350px;
  }
  .tagline .content .left h2 {
    font-size: 20px;
  }
  .tagline .content .right {
    width: 100%;
  }
  .tagline .content .right .btn {
    width: 85%;
  }
}
.tagline .tagline-img {
  height: 300px;
}
@media screen and (max-width: 960px) {
  .tagline .tagline-img {
    height: 150px;
  }
}

.description {
  background: url("./images/description-bg.png") #8A4929 no-repeat center top;
  background-size: 100%;
  flex-direction: column;
  justify-content: center;
}
.description .top {
  height: 380px;
  display: flex;
  justify-content: center;
}
.description .top img {
  position: absolute;
  margin-top: -300px;
}
@media screen and (max-width: 1399px) {
  .description .top img {
    width: 900px;
  }
}
@media screen and (max-width: 960px) {
  .description .top {
    height: 120px;
  }
  .description .top img {
    width: 100%;
    margin-top: -100px;
  }
}
.description .maquette {
  background-color: white;
  width: 80%;
  height: 600px;
}
@media screen and (max-width: 1399px) {
  .description .maquette {
    height: 500px;
  }
}
@media screen and (max-width: 960px) {
  .description .maquette {
    height: 300px;
  }
}
.description .points {
  margin: auto;
  padding: 50px 0;
}
@media screen and (max-width: 960px) {
  .description .points {
    padding: 30px 0;
  }
}
.description .points img {
  display: block;
  margin: auto;
  width: 80%;
  max-width: 960px;
}
@media screen and (max-width: 960px) {
  .description .points img {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .description .btn {
    font-size: 12px;
  }
}

.contact {
  flex-direction: column;
  width: 70%;
  margin: auto;
  background-color: white;
  font-family: "sofia_proregular";
}
.contact .title-form {
  margin: 80px 0px 0px 80px;
}
@media screen and (max-width: 960px) {
  .contact .title-form {
    margin: 40px 0 0 30px;
  }
}
.contact .success {
  padding-bottom: 50px;
  text-align: center;
  font-family: "sofia_proregular";
}
.contact h3 {
  margin-bottom: 15px;
}
.contact form {
  width: 70%;
  margin: 50px auto;
}
.contact form .line {
  margin: 5px 5px 10px 5px;
  padding: 5px;
  display: flex;
  box-sizing: border-box;
}
.contact form .line label {
  display: block;
  width: 50%;
  border-bottom: 1px solid black;
}
.contact form .line label:first-child {
  margin-right: 20px;
}
.contact form .line label input, .contact form .line label textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 20px 0px;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  outline: none;
  color: #1D1D1B;
  font-family: "sofia_proregular";
  font-size: 16px;
}
.contact form .line label input::placeholder, .contact form .line label textarea::placeholder {
  color: #1D1D1B;
  font-family: "sofia_proregular";
  font-size: 16px;
}
.contact form .line-check .left, .contact form .line-check .right {
  width: 50%;
}
.contact form .line-check .left {
  margin-right: 20px;
}
.contact form .line-check .left label {
  width: 100%;
}
.contact form .line-check .left textarea {
  height: 150px;
}
.contact form .line-check .right {
  color: #1D1D1B;
  font-family: "sofia_proregular";
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact form .line-check .right .line {
  flex-direction: column;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.contact form .line-check .right span {
  display: block;
  margin-bottom: 20px;
  font-family: "sofia_proregular";
}
.contact form .line-check .right input[type=radio], .contact form .line-check .right input[type=checkbox] {
  display: none;
}
.contact form .line-check .right input, .contact form .line-check .right label {
  border: 0;
}
.contact form .line-check .right .fields {
  display: flex;
}
.contact form .legal {
  padding-top: 25px;
  flex: 1;
  display: flex;
}
.contact form .legal label {
  border: 0;
  flex: 1;
}
.contact form .legal, .contact form .legal a {
  color: #1D1D1B;
  font-family: "sofia_proregular";
  font-size: 16px;
}
.contact form .send {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 20px;
}
.contact form button {
  border: 0;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  outline: none;
}
.contact .error {
  color: red;
  padding-top: 25px;
  font-family: "sofia_proregular";
}
.contact .required-field.error input, .contact .required-field.error input::placeholder {
  color: red !important;
}
@media screen and (max-width: 960px) {
  .contact {
    width: 90%;
    margin-top: 40px;
  }
  .contact form {
    width: 90%;
    margin: 30px auto;
  }
  .contact form .line {
    margin: 5px 5px 20px 5px;
    padding: 0;
    flex-direction: column;
  }
  .contact form .line label {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact form .line label:last-child {
    margin-bottom: 0;
  }
  .contact form .line-check .left, .contact form .line-check .right {
    width: 100%;
  }
  .contact form .line-check .right {
    margin-top: 40px;
  }
  .contact form .line-check .right .fields label:first-child {
    margin-right: 0px;
  }
  .contact form .legal {
    padding-top: 0;
  }
  .contact form .send {
    margin-top: 30px;
    width: 100%;
  }
  .contact form .send button {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1150px) {
  .contact form {
    width: 90%;
  }
}

footer {
  background: url("./images/footer.jpg") no-repeat 100% center #B58D6C;
  background-size: cover;
  flex-direction: column;
  padding-top: 45px;
  font-family: "sofia_proregular";
  color: white;
  font-size: 12px;
}
footer .top {
  width: 70%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid white;
  padding: 0 50px 25px 50px;
}
footer .top .text-links {
  margin-top: 20px;
}
footer .top .text-links a {
  color: white;
  display: block;
  text-decoration: none;
  font-size: 22px;
  text-align: right;
}
footer .top .links {
  display: flex;
  justify-content: space-between;
}
footer .top .links img {
  display: block;
  width: 90%;
  max-width: 200px;
}
footer .top .address {
  font-size: 20px;
  margin-top: 20px;
  margin-left: 10px;
}
footer .top .address a {
  color: white;
  text-decoration: none;
  font-family: "sofia_proregular";
}
footer .top .address a:hover {
  text-decoration: underline;
}
footer .top .link-astrid {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .top .link-astrid a {
  font-size: 22px;
  color: white;
  text-decoration: none;
}
footer .top .link-astrid p:first-child {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
footer .top .download {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 18px;
}
footer .top .download a {
  font-size: 18px;
  color: white;
  text-decoration: none;
  display: block;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background-color 0.5s, color 0.6s;
  text-align: center;
  text-transform: uppercase;
}
footer .top .download a:hover {
  background: white;
  color: black;
}
footer .bottom {
  width: 70%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
}
footer .bottom a {
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  footer {
    width: 100%;
  }
  footer .top {
    flex-direction: column;
    padding: 0 0 25px 0;
  }
  footer .top img {
    display: block;
    margin: auto;
    width: 280px;
  }
  footer .top div:first-child {
    width: 100%;
    margin-bottom: 40px;
  }
  footer .top .link-astrid {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .top .download {
    margin-bottom: 10px;
    margin-top: 20px;
  }
  footer .top .download a {
    text-align: center;
  }
  footer .bottom {
    flex-direction: column;
    width: 90%;
  }
  footer .bottom div {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 961px) and (max-width: 1400px) {
  footer .top {
    width: 90%;
    padding: 0 20px 25px 20px;
  }
  footer .top div:first-child {
    width: 350px;
  }
  footer .top div:first-child img {
    width: 300px;
  }
  footer .top div:nth-child(2) {
    width: 250px;
  }
  footer .top div:last-child img {
    width: 120px;
  }
  footer .top .address {
    font-size: 14px;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1800px) {
  footer .top {
    width: 90%;
    padding: 0 50px 25px 50px;
  }
  footer .top div:first-child {
    width: 400px;
  }
  footer .top div:first-child img {
    width: 350px;
  }
  footer .top div:nth-child(2) {
    width: 300px;
  }
  footer .top div:last-child img {
    width: 140px;
  }
  footer .top .address {
    font-size: 14px;
  }
}

.picture {
  padding: 50px 0;
}
@media screen and (max-width: 960px) {
  .picture {
    padding: 50px 0 20px 0;
  }
}
.picture h2 {
  color: black;
  font-weight: normal;
}
@media screen and (max-width: 960px) {
  .picture h2 {
    font-size: 36px;
  }
}
.picture .top {
  background: url("./images/picture-bg.png") no-repeat 60%;
  background-size: 25%;
}
@media screen and (max-width: 960px) {
  .picture .top .rox:last-child {
    flex-direction: column;
  }
  .picture .top .rox:last-child .left, .picture .top .rox:last-child .right {
    width: 100%;
  }
  .picture .top .rox:last-child .right {
    margin-top: 30px;
  }
  .picture .top .rox:last-child .right div {
    width: 90%;
  }
}
.picture .title {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.picture .left {
  display: flex;
  justify-content: center;
  width: 60%;
}
.picture .left img {
  display: block;
  width: 90%;
  margin: auto;
}
.picture .right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1399px) {
  .picture .right {
    width: 55%;
  }
  .picture .right .btn {
    font-size: 12px;
  }
}
.picture .right div {
  width: 70%;
}
.picture .right p {
  margin-bottom: 20px;
}
.picture .right p:last-child {
  margin-top: 50px;
}
.picture .list {
  width: 100%;
}
.picture .list ul {
  display: flex;
  width: 90%;
  justify-content: space-around;
  margin: auto;
  margin-top: 50px;
}
.picture .list ul li {
  list-style-type: none;
  text-align: center;
  color: #2222B1;
  font-family: "nexa_boldregular";
  text-transform: uppercase;
}
@media screen and (max-width: 1399px) {
  .picture .list ul li {
    font-size: 12px;
  }
}
.picture .list ul li img {
  display: block;
  height: 50px;
  margin: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .picture .list ul {
    margin-top: 0;
    flex-direction: column;
  }
  .picture .list ul li {
    margin-bottom: 20px;
  }
}

.map {
  padding-top: 50px;
}
.map h2 {
  color: black;
}
@media screen and (max-width: 1399px) {
  .map h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 960px) {
  .map h2 {
    font-size: 34px;
  }
}
.map .content {
  display: flex;
  justify-content: center;
}
.map .content .left {
  width: 47%;
}
@media screen and (max-width: 1399px) {
  .map .content .left {
    width: 40%;
  }
}
.map .content .left img {
  display: block;
  width: 100%;
}
.map .content .right {
  width: 40%;
}
@media screen and (max-width: 1399px) {
  .map .content .right {
    width: 55%;
  }
}
.map .content .right div {
  margin: auto;
  width: 70%;
  margin-top: 50px;
}
.map .content .right p {
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .map .content {
    flex-direction: column;
  }
  .map .content .left, .map .content .right {
    width: 100%;
  }
  .map .content .right div {
    width: 100%;
  }
}

.card {
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .card {
    padding-bottom: 20px;
  }
}
.card img {
  display: block;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  margin-top: -100px;
}
@media screen and (max-width: 1399px) {
  .card img {
    margin-top: -20px;
  }
}

.checkbox-container {
  position: relative;
  user-select: none;
  cursor: pointer;
  line-height: 25px;
  display: block;
  padding-left: 40px;
  color: black;
}
.checkbox-container input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container .checkmark {
  position: absolute;
  background-color: white;
  width: 25px;
  height: 25px;
  border: 1px solid black;
  left: 0;
  top: 0;
  transition: background 0.5s;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}
.checkbox-container input:checked ~ .checkmark {
  background-color: black;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.radio-container {
  position: relative;
  user-select: none;
  cursor: pointer;
  line-height: 25px;
  display: block;
  padding-left: 40px;
  color: black;
}
.radio-container input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-container .checkmark {
  position: absolute;
  background-color: #e3e2e2;
  width: 25px;
  height: 25px;
  left: 0;
  top: 0;
  transition: background 0.5s;
  border-radius: 100%;
  box-sizing: border-box;
  border: 4px solid #e3e2e2;
}
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}
.radio-container input:checked ~ .checkmark {
  background-color: black;
}
.imgAnim {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.25, 0.1, 0.25, 1), top 1.5s cubic-bezier(0.61, 1, 0.88, 1);
  position: relative !important;
  top: 50px;
}
.imgAnim.animshow {
  opacity: 1;
  top: 0;
}
.imgAnim.scaleAnim {
  opacity: 1;
  top: 0;
  overflow: hidden;
}
.imgAnim.scaleAnim img {
  display: block;
  transform-origin: center;
  transform: scale(1.05);
  transition: transform 3s cubic-bezier(0.61, 1, 0.88, 1);
}
.imgAnim.scaleAnim.animshow img {
  transform: scale(1);
}

* {
  padding: 0;
  margin: 0;
}

body {
  background-color: #EFE9E0;
}

section, nav, footer {
  width: 100%;
  min-height: 50px;
  display: flex;
}

.main {
  scroll-behavior: smooth;
}

.btn {
  font-family: "nexa_boldregular";
  text-decoration: none;
  color: black;
  border: 1px solid black;
  height: 40px;
  line-height: 40px;
  padding: 0px 20px;
  border-radius: 25px;
  transition: background-color 0.5s, color 0.6s;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}
.btn:hover {
  color: white;
  background-color: black;
}
.btn.btn-white {
  color: white;
  border-color: white;
  transition: background-color 0.5s, color 0.6s, border-color 0.5s;
}
.btn.btn-white:hover {
  color: white;
  border-color: black;
}

.text {
  font-family: "maaxregular", serif;
  font-size: 14px;
  color: #1D1D1B;
  line-height: 18px;
}

h1 {
  font-family: "actalight", serif;
  font-size: 20px;
  color: black;
}

h2 {
  font-family: "maaxblack", serif;
  color: white;
  font-size: 30px;
}

h3 {
  font-family: "maaxblack", serif;
  font-size: 28px;
  color: #0F1113;
}

h4 {
  font-family: "maaxbold", serif;
  font-size: 20px;
  color: #0F1113;
}

@media screen and (max-width: 960px) {
  h2 {
    font-size: 26px;
  }

  h4 {
    font-size: 16px;
  }

  .btn {
    width: 90%;
    display: block;
    text-align: center;
  }

  .main {
    width: 100vw;
    overflow-x: hidden;
  }
}
@media screen and (min-width: 600px) and (max-width: 1150px) {
  h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 760px) and (max-width: 960px) and (orientation: portrait) {
  h2 {
    font-size: 20px;
  }

  .btn {
    width: 100%;
    line-height: 40px;
    font-size: 18px;
  }
}
.rox {
  width: 80%;
  margin: auto;
}
.rox div {
  width: 50%;
}
.rox.one-line div {
  width: 100%;
  background-color: yellow;
}

.bottom-bg {
  background: url("./images/bottom-bg.png") no-repeat center 20%;
  background-size: 100%;
  padding-bottom: 80px;
}

.macaron {
  width: 345px;
  height: 345px;
  background-color: #2222B1;
  position: fixed;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  text-align: center;
  color: white;
  font-family: "sangbleu_seriflight";
  text-transform: uppercase;
  right: 50px;
  margin-top: -50px;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.5s;
}
@media screen and (max-width: 960px) {
  .macaron {
    margin-top: 50px;
  }
}
.macaron.hide {
  opacity: 0;
  display: none;
}
@media screen and (max-width: 1399px) {
  .macaron {
    width: 240px;
    height: 240px;
    font-size: 26px;
  }
}

.ads {
  background-color: #B58D6C;
  width: 800px;
  position: fixed;
  padding: 30px 0 30px 0;
  transform: translateY(40%);
  transform-origin: center;
  display: flex;
  z-index: 1000;
  right: calc(100% - 800px);
  cursor: pointer;
  transition: left 1s, right 1s;
}
@media screen and (max-width: 960px) {
  .ads {
    display: none;
  }
}
.ads.hide {
  right: 105%;
}
.ads:hover {
  right: calc(100% - 800px);
}
.ads div:first-child {
  background: url("./images/ads.svg") no-repeat right bottom;
  font-family: "sangbleu_seriflight";
  font-size: 34px;
  text-transform: uppercase;
  color: white;
  height: 260px;
  width: 75%;
  padding-left: 30px;
  padding-top: 70px;
  box-sizing: border-box;
}
.ads div:first-child p {
  width: 55%;
  padding-top: 20px;
  font-size: 18px;
  font-family: "nexa_boldregular";
  letter-spacing: 1.1px;
}
.ads div:nth-child(2) {
  font-family: "nexa_boldregular";
  font-size: 18px;
  padding-left: 20px;
  position: relative;
  z-index: 1000;
}
.ads div:nth-child(2) p:first-child {
  color: #8A4929;
  margin-bottom: 30px;
  padding-top: 40px;
}
.ads div:nth-child(2) span {
  position: absolute;
  width: 230px;
  height: 260px;
  margin-left: 20px;
}
.ads .circle {
  width: 320px;
  height: 320px;
  background-color: #B58D6C;
  border-radius: 100%;
  position: absolute;
  margin-top: -30px;
  margin-left: 650px;
}
@media screen and (max-width: 1399px) {
  .ads {
    width: 600px;
    right: calc(100% - 600px);
  }
  .ads:hover {
    right: calc(100% - 600px);
  }
  .ads div:first-child {
    height: 220px;
    font-size: 26px;
    background: url("./images/ads.svg") no-repeat right -120px bottom;
  }
  .ads div:first-child p {
    width: 65%;
    font-size: 13px;
  }
  .ads div:nth-child(2) span {
    height: 220px;
  }
  .ads .circle {
    width: 280px;
    height: 280px;
    margin-left: 450px;
  }
}

/*# sourceMappingURL=styles.css.map */
