/* Courgette */
@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");

:root {
  --yellow: #ffbb00;
  --black: #232529;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  font-family: Futura Bk BT;
  font-weight: normal;
  list-style: none;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  animation: slide 0.4s ease-out;
}

@keyframes slide {
  from {
    transform: scale(1.5);
    opacity: 0.3;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.slide.current {
  display: block;
}

.slide .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.slide .content h1 {
  font-size: 100px;
  text-shadow: 0 2px 5px rgb(0 0 0 / 50%);
  font-weight: 600;
  animation: top-to-bottom 0.8s ease;
  margin-bottom: 30px;
  text-shadow: 2px 2px black;
}

.slide .content p {
  animation: bottom-to-top 1s ease;
  font-size: 18px;
  margin-bottom: 12px;
  width: 50%;
  text-shadow: 2px 2px black;
}

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

@keyframes top-to-bottom {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bottom-to-top {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide.main-slide .child {
  position: absolute;
  opacity: 0;
}

.slide.main-slide #child-1 {
  top: 12%;
  left: 7%;
  width: 20%;
  animation: child1-opacity 0.5s linear forwards,
    child1-move 1s linear 0.3s infinite alternate forwards;
}

.slide.main-slide #child-2 {
  left: 37%;
  width: 22%;
  animation: child2-opacity 0.5s linear 0.5s forwards,
    child2-move 1s linear 0.3s infinite alternate forwards;
}

.slide.main-slide #child-3 {
  right: 15%;
  width: 35%;
  animation: child3-opacity 0.5s linear 1s forwards,
    child3-move 1s linear 0.5s infinite alternate forwards;
}

.slide.main-slide .word {
  position: absolute;
  top: -500%;
  height: 16%;
  transform: rotate(-4deg);
  /* opacity: 0; */
}

@keyframes word1 {
  from {
    top: -500%;
  }
  to {
    top: 25%;
  }
}

@keyframes word2 {
  from {
    top: -500%;
  }
  to {
    top: 20%;
  }
}

@keyframes word3 {
  from {
    top: -500%;
  }
  to {
    top: 50%;
  }
}

@keyframes word4 {
  from {
    top: -500%;
  }
  to {
    top: 47%;
  }
}

@keyframes word5 {
  from {
    top: -500%;
  }
  to {
    top: 75%;
  }
}

@keyframes word6 {
  from {
    top: -500%;
  }
  to {
    top: 71%;
  }
}

@keyframes opacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slide.main-slide .content #word1 {
  left: 26%;
  animation: word1 1s ease-out 1.25s forwards;
  /* top: 150px; */
  /* animation: opacity 1s 1.25s forwards; */
}

.slide.main-slide .content #word2 {
  left: 58%;
  animation: word2 1s ease-out 1.5s forwards;
  /* top: 120px; */
  /* animation: opacity 1s 1.5s forwards; */
}

.slide.main-slide .content #word3 {
  left: 24%;
  animation: word3 1s ease-out 2s forwards;
  /* top: 350px; */
  /* animation: opacity 1s 1.75s forwards; */
  height: 20%;
}

.slide.main-slide .content #word4 {
  left: 54%;
  animation: word4 1s ease-out 2.5s forwards;
  /* top: 330px; */
  /* animation: opacity 1s 1.75s forwards; */
}

.slide.main-slide .content #word5 {
  left: 20%;
  animation: word5 1s ease-out 3s forwards;
  /* top: 550px; */
  /* animation: opacity 1s 2.25s forwards; */
}

.slide.main-slide .content #word6 {
  left: 55%;
  animation: word6 1s ease-out 3.5s forwards;
  /* top: 520px; */
  /* animation: opacity 1s 2.25s forwards; */
}

@keyframes child1-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes child2-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes child3-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes child1-move {
  from {
    top: 12%;
  }
  to {
    top: 15%;
  }
}

@keyframes child2-move {
  from {
    bottom: 7%;
  }
  to {
    bottom: 10%;
  }
}

@keyframes child3-move {
  from {
    bottom: -3%;
  }
  to {
    bottom: 0%;
  }
}

/* Slider Resimleri */
.slide:first-child {
  background-image: url("../assets/images/slider/main/cover.jpg");
}
.slide:nth-child(2) {
  background-image: url("../assets/images/slider/0.jpg");
}
.slide:nth-child(3) {
  background-image: url("../assets/images/slider/1.jpg");
}
.slide:nth-child(4) {
  background-image: url("../assets/images/slider/2.jpg");
}
.slide:nth-child(5) {
  background-image: url("../assets/images/slider/3.jpg");
}
.slide:nth-child(6) {
  background-image: url("../assets/images/slider/4.jpg");
}
.slide:nth-child(7) {
  background-image: url("../assets/images/slider/5.jpg");
}
.slide:nth-child(8) {
  background-image: url("../assets/images/slider/6.jpg");
}
.slide:nth-child(9) {
  background-image: url("../assets/images/slider/7.jpg");
}
.slide:nth-child(10) {
  background-image: url("../assets/images/slider/8.jpg");
}

.slider .buttons button {
  width: 50px;
  border: none;
  font-size: 30px;
  background: transparent;
  color: #fff;
  text-shadow: 0 2px 5px rgb(0 0 0 / 100%);
  transition: transform 0.3s;
}

.slider .buttons #prev:hover,
.slider .buttons #next:hover {
  transform: scale(1.2);
}

#prev {
  position: absolute;
  top: 50%;
  left: 15px;
}

#next {
  position: absolute;
  top: 50%;
  right: 30px;
}

#nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.3);
}

#agena-slide .container {
  width: 30% !important;
  padding: 24px 0 !important;
  height: auto !important;
  margin: 6% 2% 0 auto !important;
}

#agena-slide .content h1 {
  text-align: left !important;
  margin-bottom: 30px !important;
}

#agena-slide .content p {
  width: 100% !important;
}

#nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 600;
}

#nav .logo {
  width: 100px;
}

#nav .logo img {
  width: 100%;
}

.menu {
  height: 60px;
  line-height: 60px;
}

.menu-item {
  display: inline-block;
  margin-right: 14px;
  padding: 0 8px;
}

.menu-item a {
  transition: all 0.2s;
}

.menu-item a:hover {
  /* color: #eeeeee; */
  color: var(--yellow);
}

.menu-item:last-child {
  margin-right: 0;
  color: var(--yellow);
}

.menu-item:last-child a:hover {
  color: #e2ac15;
}

#menu-open-btn {
  display: none;
  border: none;
  background-color: transparent;
  font-size: 30px;
}

#menu-close-btn {
  display: block;
  border: none;
  background: transparent;
  font-size: 36px;
  width: 100%;
  margin-top: 40px;
  align-items: flex-end;
}

#mobile-menu {
  display: none;
}

.mobile-menu-open {
  display: block !important;
  animation: mobile-menu-open 0.2s linear;
}

.mobile-menu-close {
  display: block !important;
  animation: mobile-menu-close 0.2s linear forwards;
}

@keyframes mobile-menu-open {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes mobile-menu-close {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
    display: none !important;
  }
}

/* .dropdown {
  position: relative;
  top: 0;
  left: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown i {
  margin-left: 4px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  background-color: var(--yellow);
  min-width: 200px;
  line-height: normal;
  animation: dropdown-open 0.4s ease-out;
  transform-origin: top;
}

@keyframes dropdown-open {
  from {
    transform: scaleY(0);
    display: none;
  }
  to {
    transform: scaleY(1);
    display: block;
  }
}

.dropdown-content li {
  border-bottom: 1px solid #ffc933;
  padding: 8px 14px;
}

.dropdown-content a {
  transition: color 0.2s;
}

.dropdown-content a:hover {
  color: var(--black);
} */

.fixed-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  /* background-color: #77756b !important; */
  background-color: #fff !important;
}

.fixed-nav .menu {
  color: var(--black);
}

.open-fixed-menu {
  animation: open-fixed-menu 0.4s ease;
}

.close-fixed-menu {
  animation: close-fixed-menu 0.4s ease;
  opacity: 0;
}

@keyframes close-fixed-menu {
  from {
    transform: scaleY(1);
    opacity: 1;
  }

  to {
    transform: scaleY(0);
    opacity: 0;
  }
}

@keyframes open-fixed-menu {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.row {
  display: flex;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#about-us-section .title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--yellow);
}

#about-us-section p {
  text-align: justify;
}

#rooms {
  padding: 0 !important;
}

.room .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room .content-column {
  background: url("../assets/icons/room-bg.jpg") no-repeat center center/cover;
  justify-content: center;
}

.room .content {
  margin: 0 auto;
}

.room .title {
  font-weight: 600;
  font-size: 34px;
}

.room .desc {
  margin-top: 24px;
}

.room .link {
  display: block;
  position: relative;
  width: 120px;
  height: 32px;
  padding: 5px 34px;
  margin-top: 18px;
  color: var(--black);
  font-size: 16px;
}

.room .link-bg {
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.2s;
  background: url("../assets/icons/button-bg.png") no-repeat center
    center/contain;
}

.room .link:hover .link-bg {
  transform: scaleX(1.07);
}

.room .column {
  opacity: 0;
}

@keyframes right-to-left {
  from {
    opacity: 0;
    transform: translateX(200%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes left-to-right {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.right-to-left-animation {
  animation: right-to-left 0.5s ease-out forwards;
}

.left-to-right-animation {
  animation: left-to-right 0.5s ease-out forwards;
}

.stretch-header {
  width: 100%;
  height: 550px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.stretch-header .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: rgb(0 0 0 / 40%);
}

.stretch-header .container {
  position: relative;
  height: 100%;
}

.stretch-header .path-container {
  position: absolute;
  bottom: 20px;
  left: 0;
}

.stretch-header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: fit-content;
}

.category-title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 30px;
  letter-spacing: 1.2px;
}

.path li {
  display: inline-block;
  margin-right: 4px;
}

.path li:nth-child(even) {
  color: #cccccc;
}

.path li:last-child {
  margin-right: 0;
  color: var(--yellow);
}

.product-link {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.product-link:last-child {
  margin-bottom: 0;
}

.product-link:hover {
  transform: scale(1.02);
}

.product {
  width: 100%;
  height: 350px;
  max-height: 350px;
  min-height: 350px;
  display: flex;
}

.product-link .product-img {
  width: 100%;
}

.product-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product .content {
  width: 350px;
  height: 100%;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.product-description {
  padding: 6px 8px;
  text-align: center;
}

.product-description:last-child {
  font-size: 12px;
  color: #ddd;
}

.product .product-title {
  font-size: 30px;
  text-shadow: 0 2px 5px rgb(0 0 0 / 50%);
  margin-bottom: 12px;
  color: #fff;
}

.product-overview .row {
  margin-bottom: 15px;
}

.product-overview .row .column {
  margin-right: 15px;
}

.product-overview .row .column:last-child {
  margin-right: 0;
}

.product-overview .product-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-overview .product-img img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}

.multiple-img img {
  display: none;
}

.multiple-img-current {
  display: block !important;
  animation: multiple-img 0.4s ease-in forwards;
}

@keyframes multiple-img {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.product-img .content .product-title {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.product-img .content {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 6px;
  opacity: 0;
  color: #fff;
  font-size: 12px;
  transition: opacity 0.2s ease-in;
  background-color: #232529b7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-img:hover .content {
  opacity: 1;
}

.product-img .product-img-zoom-btn {
  width: 35px;
  height: 35px;
  margin-bottom: 12px;
  border: none;
  border-radius: 50%;
  font-size: 15px;
  color: #000;
  background: #fff;
  transition: all 0.3s;
}

.product-img .product-img-zoom-btn:hover {
  transform: scale(0.9);
}

.product-img .content table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}

.product-img .content table th {
  font-weight: 600;
}

.product-img .content table td,
th {
  padding: 4px;
}

.product-name {
  margin-bottom: 2%;
  font-size: 6vw;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--black);
}

.product-code {
  font-size: 16px;
  margin-bottom: 12px;
}

.product-comment {
  padding: 2% 0 6% 0;
}

.product-comment h3 {
  font-size: 1.4vw;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.product-comment h3:not(:first-child) {
  font-size: 1.1vw;
  font-weight: normal;
}

.product-comment h3:last-child {
  margin-bottom: 0;
}

.product-comment p {
  margin-top: 1.05vw;
  color: var(--black);
}

.my-tool-slider-btn,
#my-tool-hide-slider-btn {
  font-size: 22px !important;
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

/* Sayfalandırma */
/* .page {
  width: 100%;
  height: 100%;
  display: none;
}

@keyframes page {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}

.page.current {
  display: block;
  animation: page 0.7s ease-out forwards;
}

.page-btns {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.page-btn {
  width: 50px;
  padding: 6px;
  margin-right: 16px;
  font-size: 18px;
  font-weight: 600;
}

.page-btn.current {
  background-color: var(--yellow);
  color: #fff;
  border: none;
}

.page-btn:last-child {
  margin-right: 0;
} */

.section {
  padding: 100px 0;
}

.section.gray-bg {
  background-color: #eeeeee;
}

#contact-section .container {
  display: flex;
  justify-content: space-between;
}

#contact-section .map {
  width: 750px;
  height: 500px;
}

.map {
  border: none;
}
#map{
  height: 450px;
}

#contact-section .informations {
  width: 360px;
  height: 500px;
  background-color: var(--yellow);
  border-radius: 100% 0% 100% 0% / 0% 73% 27% 100%;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

#contact-section .informations .content {
  width: 100%;
  height: 100%;
  padding: 40px 20px;
}

#contact-section .informations table {
  border-collapse: collapse;
}

#contact-section .informations td {
  padding: 20px;
  font-size: 14px;
  color: #000;
}

#contact-section .informations td:first-child {
  font-size: 36px;
  color: #fff;
  text-shadow: -2px 2px rgba(0, 0, 0, 0.2);
}

#contact-section .informations .social {
  width: 100%;
  margin-top: 18px;
  text-align: right;
}

#contact-section .informations .social li {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  border-radius: 100%;
  text-align: center;
  background-color: #fff;
  margin-right: 8px;

  -webkit-box-shadow: -5px 5px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -5px 5px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: -5px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

#contact-section .informations .social li:last-child {
  margin-right: 0;
}

#contact-section .informations .social li a {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

#contact-section .informations .social li a:hover {
  transform: scale(1.15);
}

.footer {
  background: var(--yellow);
  color: var(--black);
}

.footer-top {
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.footer .logo {
  width: 12%;
}

.footer .logo img {
  width: 100%;
}

.footer .footer-menu {
  display: flex;
}

.footer .footer-menu li {
  padding: 6px 0;
}

.footer .footer-menu li a,
.social-media-links li a {
  transition: color 0.3s;
}

.footer .footer-menu li a:hover,
.social-media-links li a:hover {
  color: #fff;
}

.footer .map {
  width: 450px;
  height: 200px;
}

.footer-bottom {
  padding: 34px 0;
  display: flex;
  justify-content: center;
  font-size: 14px;
  border-top: 2px solid #000;
}

.social-media-links {
  height: 178px;
}

.social-media-links ul li {
  font-size: 20px;
  margin-bottom: 14px;
}

.social-media-links ul li:last-child {
  margin-bottom: 0;
}

#production-section img {
  width: 100%;
}

#production-section .row:last-child {
  margin-top: 30px;
}

#production-section .column {
  margin-right: 24px;
}

#production-section .column:last-child {
  margin-right: 0;
}

#stores-section #stores-map {
  height: 400px;
  width: 100%;
}

#seller-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#seller-section .container h3 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 24px;
  color: var(--yellow);
}

#seller-section table {
  border-collapse: collapse;
}

#seller-section table td {
  padding: 8px 6px;
}

#seller-section input {
  width: 300px;
  padding: 12px 20px;
  display: inline-block;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

#seller-section #message {
  padding: 12px 20px;
  width: 100%;
  height: 100px;
  font-size: 16px;
  resize: none;
  border: none;
  border-radius: 4px;
}

#seller-section #send-btn {
  width: 200px;
  height: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  background-color: var(--yellow);
  transition: transform 0.3s;
}

#seller-section #send-btn:hover {
  transform: scale(1.03);
}

#seller-section #phone-form {
  display: none;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  /* For Mobile Phones */
  .container {
    width: 100% !important;
  }

  /* SLIDER */
  .slide:first-child {
    background-image: url("../assets/images/slider/main/cover-320.jpg") !important;
  }
  .slide:nth-child(2) {
    background-image: url("../assets/images/slider/0-320.jpg") !important;
  }
  .slide:nth-child(3) {
    background-image: url("../assets/images/slider/1-320.jpg") !important;
  }
  .slide:nth-child(4) {
    background-image: url("../assets/images/slider/2-320.jpg") !important;
  }
  .slide:nth-child(5) {
    background-image: url("../assets/images/slider/3-320.jpg") !important;
  }
  .slide:nth-child(6) {
    background-image: url("../assets/images/slider/4-320.jpg") !important;
  }
  .slide:nth-child(7) {
    background-image: url("../assets/images/slider/5-320.jpg") !important;
  }
  .slide:nth-child(8) {
    background-image: url("../assets/images/slider/6-320.jpg") !important;
  }
  .slide:nth-child(9) {
    background-image: url("../assets/images/slider/7-320.jpg") !important;
  }
  .slide:nth-child(10) {
    background-image: url("../assets/images/slider/8-320.jpg") !important;
  }

  /* NAV */
  #nav {
    background-color: rgba(255, 255, 255, 0.2) !important;
    position: static !important;
  }

  #nav .container {
    padding: 4px 20px !important;
  }

  .logo {
    width: 80px !important;
  }

  .menu {
    display: none !important;
  }

  #menu-open-btn {
    display: block !important;
    color: var(--black) !important;
  }

  #mobile-menu {
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    top: 0 !important;
    z-index: 999 !important;
    background-color: #fff !important;
  }

  #mobile-menu .content {
    overflow: auto !important;
    width: 100% !important;
    height: 100% !important;
    text-align: center !important;
    padding: 20px 0 !important;
  }

  #mobile-menu .mobile-menu-logo {
    display: block !important;
    width: 100% !important;
    margin-bottom: 18px !important;
  }

  #mobile-menu .mobile-menu-logo img {
    width: 40% !important;
  }

  #mobile-menu ul li {
    font-size: 16px !important;
    border-bottom: 1px dashed #cccccc !important;
    padding: 14px 0 !important;
  }

  #mobile-menu ul li:last-child {
    border-bottom: none !important;
  }

  .menu-item {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 2px solid #f0f0ec !important;
  }

  .menu-item:last-child {
    border-bottom: none !important;
  }

  /* HEADER */
  .slider {
    height: 50vw !important;
  }

  .slide .content {
    padding: 0 30px !important;
  }

  .slide .content h1 {
    font-size: 24px !important;
    margin-bottom: 6px !important;
  }

  .slide .content p {
    font-size: 10px !important;
    text-shadow: 1px 1px black;
  }

  .slide .content .container {
    padding: 20px !important;
  }

  .slider .buttons button {
    font-size: 16px !important;
    display: none !important;
  }

  #prev {
    top: 80% !important;
    left: 0% !important;
  }

  #agena-slide .content {
    padding-right: 0 !important;
  }

  #agena-slide .container {
    width: 30% !important;
    padding: 12px 0 !important;
    height: 100% !important;
    margin: 0 12px 0 auto !important;
  }

  #agena-slide .content h1 {
    font-size: 18px !important;
    text-align: left !important;
    margin-bottom: 12px !important;
  }

  #agena-slide .content p {
    width: 100% !important;
    font-size: 8px !important;
  }

  #next {
    top: 80% !important;
    right: 0% !important;
  }

  .room .column {
    opacity: 1 !important;
  }

  .room .content {
    width: 90% !important;
  }

  .room .title {
    font-size: 18px !important;
  }

  .room .desc {
    margin-top: 6px !important;
    font-size: 12px !important;
  }

  .room .link {
    width: 80px !important;
    height: 40px !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
  }

  #baby-room .column {
    animation: left-to-right 0.5s ease-out forwards, opacity 0.75s linear !important;
  }

  #baby-room .content-column {
    animation: right-to-left 0.5s ease-out forwards, opacity 0.75s linear !important;
  }

  #child-room .column {
    animation: right-to-left 0.5s ease-out forwards, opacity 0.75s linear !important;
  }

  #child-room .content-column {
    animation: left-to-right 0.5s ease-out forwards, opacity 0.75s linear !important;
  }

  #young-room .column {
    animation: left-to-right 0.5s ease-out forwards, opacity 0.75s linear !important;
  }

  #young-room .content-column {
    animation: right-to-left 0.5s ease-out forwards, opacity 0.75s linear !important;
  }

  /* STRETCH HEADER */
  .stretch-header {
    height: 100vw;
  }
  .stretch-header .content {
    padding: 20px !important;
    line-height: 26px !important;
  }

  .stretch-header-title {
    display: none;
  }

  /* PRODUCT */
  .product {
    height: 350px !important;
    max-height: 350px !important;
    min-height: 350px !important;
    flex-direction: column !important;
  }

  .product .content {
    width: 100% !important;
    padding: 12px !important;
  }

  .product-description {
    font-size: 12px;
  }

  /* SECTION */
  .section {
    padding: 20px 0 35px 0 !important;
  }

  /* CONTACT */
  #contact {
    background: url("../assets/images/headers/contact-header-320.jpg") no-repeat
      center center/cover !important;
  }

  #contact-section .container {
    display: block !important;
  }

  #contact-section .map {
    width: 100% !important;
    height: 300px !important;
  }

  #contact-section .informations {
    width: 100% !important;
    margin-top: 24px !important;
  }

  #contact-section .informations .content {
    padding-left: 0px !important;
  }

  #contact-section .informations td {
    font-family: Futura Bk BT !important;
  }

  /* ABOUT US */
  #about-us {
    background: url("../assets/images/headers/about-us-header-320.jpg")
      no-repeat center center/cover !important;
  }

  #about-us-section .container {
    line-height: 22px !important;
    padding: 20px !important;
  }

  /* PRODUCTION */
  #production-section .row:last-child {
    margin-top: 20px !important;
  }

  #production-section .column {
    margin-right: 8px !important;
  }

    /* DEALERS */
    #dealers {
      background: url("../assets/images/headers/dealers-header-320.jpg") no-repeat
        center center/cover !important;
    }

  /* FOOTER */
  .footer .container {
    padding: 12px;
  }

  .footer-top {
    font-size: 12px !important;
  }

  .footer .logo {
    width: 60px !important;
  }

  .footer .social-media-links ul li {
    font-size: 14px !important;
  }

  .footer .social-media-links {
    height: 150px;
  }

  .footer .map {
    display: none !important;
  }

  /* PRODUCT OVERVIEW */
  .product-overview .container {
    padding: 0 6px;
  }
  .product-overview .row {
    display: block;
    margin: 0 0 10px 0;
  }

  .product-overview .row:last-child {
    margin: 0;
  }

  .product-overview .row .column {
    margin: 0 0 10px 0;
  }

  .product-overview .row .column:last-child {
    margin: 0;
  }

  .product-overview .product-img .content {
    font-size: 10px;
  }

  .product-overview .product-img .content .product-title {
    font-size: 14px;
  }

  .product-name {
    font-size: 14vw;
  }

  .product-comment {
    padding-top: 4% !important;
    padding-bottom: 6% !important;
  }

  .product-comment h3 {
    font-size: 4vw;
  }

  /* SELLER */

  #seller-section #default-form {
    display: none;
  }

  #seller-section #phone-form {
    display: block;
  }
}

@media screen and (min-width: 481px) and (max-width: 960px) {
  /* For Tablets */
  .container {
    width: 100%;
  }

  /* SLIDER */
  .slide:first-child {
    background-image: url("../assets/images/slider/main/cover-481.jpg") !important;
  }
  .slide:nth-child(2) {
    background-image: url("../assets/images/slider/0-481.jpg") !important;
  }
  .slide:nth-child(3) {
    background-image: url("../assets/images/slider/1-481.jpg") !important;
  }
  .slide:nth-child(4) {
    background-image: url("../assets/images/slider/2-481.jpg") !important;
  }
  .slide:nth-child(5) {
    background-image: url("../assets/images/slider/3-481.jpg") !important;
  }
  .slide:nth-child(6) {
    background-image: url("../assets/images/slider/4-481.jpg") !important;
  }
  .slide:nth-child(7) {
    background-image: url("../assets/images/slider/5-481.jpg") !important;
  }
  .slide:nth-child(8) {
    background-image: url("../assets/images/slider/6-481.jpg") !important;
  }
  .slide:nth-child(9) {
    background-image: url("../assets/images/slider/7-481.jpg") !important;
  }
  .slide:nth-child(10) {
    background-image: url("../assets/images/slider/8-481.jpg") !important;
  }

  /* NAV */
  #nav {
    background-color: rgba(255, 255, 255, 0.2) !important;
    position: static !important;
  }

  #nav .container {
    padding: 4px 20px !important;
  }

  .logo {
    width: 80px !important;
  }

  .menu {
    display: none !important;
  }

  #menu-open-btn {
    display: block !important;
    color: var(--black) !important;
  }

  #mobile-menu {
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    top: 0 !important;
    z-index: 999 !important;
    background-color: #fff !important;
  }

  #mobile-menu .content {
    overflow: auto !important;
    width: 100% !important;
    height: 100% !important;
    text-align: center !important;
    padding: 20px 0 !important;
  }

  #mobile-menu .mobile-menu-logo {
    display: block !important;
    width: 100% !important;
    margin-bottom: 18px !important;
  }

  #mobile-menu .mobile-menu-logo img {
    width: 25% !important;
  }

  #mobile-menu ul li {
    font-size: 16px !important;
    border-bottom: 1px dashed #cccccc !important;
    padding: 14px 0 !important;
  }

  #mobile-menu ul li:last-child {
    border-bottom: none !important;
  }

  .menu-item {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 2px solid #f0f0ec !important;
  }

  .menu-item:last-child {
    border-bottom: none !important;
  }

  /* HEADER */
  .slider {
    height: 50vw !important;
  }

  .slide .container {
    width: 75%;
  }

  .slide .content h1 {
    font-size: 60px !important;
    margin-bottom: 12px !important;
  }

  .slide .content p {
    font-size: 14px !important;
    text-shadow: 1px 1px black;
  }

  #agena-slide .container {
    width: 33% !important;
    padding: 12px !important;
    height: 100% !important;
    margin: 0 0 0 auto !important;
  }

  #agena-slide .content h1 {
    text-align: left !important;
    margin-bottom: 24px !important;
  }

  #agena-slide .content p {
    width: 100% !important;
    font-size: 12px !important;
  }

  /* ROOMS */
  .room .content {
    width: 90%;
  }

  .room .title {
    font-size: 24px;
  }

  .room .desc {
    margin-top: 6px;
    font-size: 16px;
  }

  #baby-room .column {
    animation: left-to-right 0.5s ease-out forwards, opacity 0.75s linear;
  }

  #baby-room .content-column {
    animation: right-to-left 0.5s ease-out forwards, opacity 0.75s linear;
  }

  #child-room .column {
    animation: right-to-left 0.5s ease-out forwards, opacity 0.75s linear;
  }

  #child-room .content-column {
    animation: left-to-right 0.5s ease-out forwards, opacity 0.75s linear;
  }

  #young-room .column {
    animation: left-to-right 0.5s ease-out forwards, opacity 0.75s linear;
  }

  #young-room .content-column {
    animation: right-to-left 0.5s ease-out forwards, opacity 0.75s linear;
  }

  /* STRETCH HEADER */
  .stretch-header {
    height: 100vh;
  }
  .stretch-header .content {
    padding: 20px;
    line-height: 26px;
  }
  .stretch-header-title {
    display: none;
  }

  /* PRODUCT */
  .product-link .product {
    flex-direction: row;
    height: 220px !important;
    max-height: 220px !important;
    min-height: 220px !important;
  }

  .product-link .content {
    width: 280px;
    text-align: center;
    padding: 0 12px;
  }

  .product-description {
    font-size: 12px;
  }

  .product-name {
    font-size: 10vw;
  }

  .product-comment {
    padding-top: 4% !important;
    padding-bottom: 6% !important;
  }

  .product-comment h3 {
    font-size: 2vw;
  }

  /* SECTION */
  .section {
    padding: 35px 0;
  }

  /* ABOUT US */
  #about-us {
    background: url("../assets/images/headers/about-us-header-481.jpg")
      no-repeat center center/cover !important;
  }

  /* CONTACT */
  #contact {
    background: url("../assets/images/headers/contact-header-481.jpg") no-repeat
      center center/cover !important;
  }

  #contact-section .container {
    padding: 0 12px;
  }

  #contact-section .informations td {
    font-family: Futura Bk BT !important;
  }

  /* ABOUT US */
  #about-us-section .container {
    line-height: 22px;
    padding: 20px;
  }

  /* PRODUCTION */
  #production-section .row:last-child {
    margin-top: 16px;
  }

  #production-section .column {
    margin-right: 6px;
  }

  /* FOOTER */
  .footer .container {
    padding: 12px;
  }

  .footer-top {
    font-size: 12px;
  }

  .footer .social-media-links {
    height: 145px;
  }

  .footer .social-media-links ul li {
    font-size: 16px;
  }

  .footer .map {
    width: 200px;
    height: 160px;
  }

  .footer-bottom {
    font-size: 10px;
  }

  /* PRODUCT */
  .product-overview .container {
    padding: 0 6px;
  }

  .product-overview .product-img .content .product-title {
    font-size: 12px;
  }

  .product-overview .product-img .content {
    font-size: 8px;
  }
}

@media screen and (orientation: portrait) and (min-width: 481px) and (max-width: 960px) {
  .stretch-header {
    height: 100vw;
  }
}

@media screen and (min-width: 961px) and (max-width: 1024px) {
  .container {
    width: 100% !important;
  }

  /* NAV */
  #nav .container {
    padding: 4px 20px !important;
  }

  /* HEADER */
  .slider {
    height: 50vw;
  }
  .slide .container {
    width: 76% !important;
  }

  /* STRETCH HEADER */
  .stretch-header .content {
    padding: 20px;
    line-height: 26px;
  }

  /* SECTION */
  .section {
    padding: 35px 0;
  }

  /* ABOUT US */
  #about-us-section .container {
    line-height: 22px;
    padding: 20px;
  }

  /* CONTACT */
  #contact-section .container {
    padding: 0 12px;
  }

  .footer .container {
    padding: 12px;
  }
  /* PRODUCT */
  .product-overview .container {
    padding: 0 6px;
  }
}

@media screen and (min-height: 900px) and (max-height: 1367px) {
  /* For high res tablets */
  .slider {
    height: 50vw !important;
  }
}

@media screen and (orientation: portrait) and (min-width: 1079px) {
  /* High res phone */
  .container {
    width: 100%;
  }

  /* SLIDER */
  .slider {
    height: 50vw !important;
  }

  /* NAV */
  #nav {
    background-color: rgba(255, 255, 255, 0.2) !important;
    position: static !important;
  }

  #nav .container {
    padding: 4px 20px !important;
  }

  .logo {
    width: 80px !important;
  }

  .menu {
    display: none !important;
  }

  #menu-open-btn {
    display: block !important;
    color: var(--black) !important;
  }

  #mobile-menu {
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    top: 0 !important;
    z-index: 999 !important;
    background-color: #fff !important;
  }

  #mobile-menu .content {
    overflow: auto !important;
    width: 100% !important;
    height: 100% !important;
    text-align: center !important;
    padding: 20px 0 !important;
  }

  #mobile-menu .mobile-menu-logo {
    display: block !important;
    width: 100% !important;
    margin-bottom: 18px !important;
  }

  #mobile-menu .mobile-menu-logo img {
    width: 40% !important;
  }

  #mobile-menu ul li {
    font-size: 16px !important;
    border-bottom: 1px dashed #cccccc !important;
    padding: 14px 0 !important;
  }

  #mobile-menu ul li:last-child {
    border-bottom: none !important;
  }

  .menu-item {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 2px solid #f0f0ec !important;
  }

  .menu-item:last-child {
    border-bottom: none !important;
  }

  /* ROOMS */
  .room .content {
    width: 90%;
  }

  .room .title {
    font-size: 24px;
  }

  .room .desc {
    margin-top: 6px;
    font-size: 16px;
  }

  #baby-room .column {
    animation: left-to-right 0.5s ease-out forwards, opacity 0.75s linear;
  }

  #baby-room .content-column {
    animation: right-to-left 0.5s ease-out forwards, opacity 0.75s linear;
  }

  #child-room .column {
    animation: right-to-left 0.5s ease-out forwards, opacity 0.75s linear;
  }

  #child-room .content-column {
    animation: left-to-right 0.5s ease-out forwards, opacity 0.75s linear;
  }

  #young-room .column {
    animation: left-to-right 0.5s ease-out forwards, opacity 0.75s linear;
  }

  #young-room .content-column {
    animation: right-to-left 0.5s ease-out forwards, opacity 0.75s linear;
  }

  /* STRETCH HEADER */
  .stretch-header .content {
    padding: 20px;
    line-height: 26px;
  }

  /* PRODUCT */
  .product-link .product {
    flex-direction: row;
    height: 220px;
  }

  .product-link .content {
    width: 280px;
    text-align: center;
    padding: 0 12px;
  }

  .product-description {
    font-size: 12px;
  }

  /* SECTION */
  .section {
    padding: 35px 0;
  }

  /* CONTACT */
  #contact-section .container {
    padding: 0 12px;
  }

  #contact-section .informations td {
    font-family: Futura Bk BT !important;
  }

  /* ABOUT US */
  #about-us-section .container {
    line-height: 22px;
    padding: 20px;
  }

  /* PRODUCTION */
  #production-section .row:last-child {
    margin-top: 16px;
  }

  #production-section .column {
    margin-right: 6px;
  }

  /* FOOTER */
  .footer .container {
    padding: 12px;
  }

  .footer-top {
    font-size: 12px;
  }

  .footer .social-media-links {
    height: 145px;
  }

  .footer .social-media-links ul li {
    font-size: 16px;
  }

  .footer .map {
    width: 200px;
    height: 160px;
  }

  .footer-bottom {
    font-size: 10px;
  }
  /* PRODUCT */
  .product-overview .container {
    padding: 0 6px;
  }
}

a.sonart {
  display: block;
  line-height: 1;
  width: 58px;
  margin: 10px auto auto;
}

.w-25{
  width: 25%;
  padding: 0 20px 0 0;
}

.w-75{
  width: 75%;
}

h3.sub-title {
  font-size: 20px;
  border-bottom: 1px solid #ccc;
  margin: 0 0 15px 0;
  padding: 8px 0;
  box-sizing: border-box;
  text-transform: uppercase;
}

select#type {
  width: 100%;
  padding: 10px;
}

strong{
  font-weight: bold;
}
.infos {padding: 10px;}
.infos h1{text-transform: uppercase; margin-bottom: 10px; font-size: 16px; border-bottom: 1px solid #ccc; padding-bottom: 5px;}
.infos span{margin-bottom: 6px; display: block;}

.gmnoprint{display: none;}