/* @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Belanosima&display=swap"); */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
  --primary: #f1c27b;
  --secondary: #ffd89c;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}



.whatsapp-button a{
  display: inline-block;
}

.whatsapp-button{
  position: fixed;
  bottom: 40px;
  left: 25px;
  display: none;
  z-index: 999;
}
.whatsapp-button-effect{
  position: fixed;
  bottom: 44px;
  left: 25px;
  display: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  opacity: .55;
  animation: whatsappIconAnimation infinite 1.25s alternate;
  z-index: 998;
  
}

@keyframes whatsappIconAnimation{
  from{
    background-color: none;
    transform: scale(none);
  }
  to{
    background-color: rgb(57, 243, 57);
    transform: scale(1.15);
    
  }
  
}

/* NAVBAR START*/

nav {
  background: linear-gradient(180deg, rgba(223,177,108,1) 0%, rgba(241,194,123,1) 55%, rgba(208,167,105,1) 100%);
  padding: 10px;
  z-index: 9;
  width: 100%;
}

.nav-container {
  /* width: 1200px; */
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  width: 20%;
}

.nav-link-parent {
  display: flex;
  justify-content: space-between;
  width: 58%;
}

.nav-link {
  color: black;
  font-size: 19px;
  transition: all 0.2s;
}

.nav-link:hover {
  transform: scale(1.1);
}

.nav-link:active {
  transform: scale(0.95);
}

.nav-sidebar-button {
  display: none;
  font-size: 35px;
  cursor: pointer;
}
.sidebar-open {
  padding: 10px;
}

.sidebar {
  display: block;
  background-color: var(--secondary);
  width: 250px;
  padding: 75px 0px 22px 31px;
  position: fixed;
  height: 100%;
  z-index: 99;
  top: 0;
  right: -265px;
}

.sidebarOn {
  display: block !important;
  animation: sidebarAnimation 0.35s forwards ease-out;
}

.sidebar-close {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 7px;
  font-size: 35px;
  cursor: pointer;
  color: white;
}

.sidebar-link {
  color: white;
  font-size: 26px;
  transition: all 0.2s;
  display: inline-block;
  margin-bottom: 20px;
}

.sidebar-link:hover {
  transform: scale(1.1);
}
.sidebar-link:active {
  transform: scale(0.95);
}

.darkness {
  display: none;
  z-index: 98;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #111;
  opacity: 0.5;
}

.darknessOn {
  display: block !important;
}

@keyframes sidebarAnimation {
  from {
    right: -265px;
  }
  to {
    right: 0px;
  }
}

/* NAVBAR END */

/* ENTRANCE START */

.entrance {
  margin-top: 30px;
}

.main-title {
  text-align: center;
  margin-top: 50px;
}

.line {
  width: 100%;
  /* background-color: rgb(216, 216, 216); */
  background-color: gray;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
  height: 1px;
  margin: 0 auto;
  border-radius: 8px;
}

.section-container {
  width: 85%;
  margin: 0 auto;
}

.section-title {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 30px;
}

.introduction {
  margin-top: 20px;
}

.introduction-text {
  font-size: 21px;
  letter-spacing: 0.4px;
  line-height: 28px;
  /* text-indent: 25px; */
  text-align: center;
  margin-bottom: 30px;
}

.down-icon {
  text-align: center;
  display: block !important;
  font-size: 35px;
  margin-top: 90px;
}

.down-icon-link{
  color: black;
}

/* ENTRANCE END */

/* PRODUCT FEATURES START */

.product-features {
  margin-top: 125px;
  background-color: #f7f7f7;
  padding: 30px 0;
  position: relative;
}

.product-box-container {
  display: flex;
  justify-content: space-evenly;
}

.product-img-box {
  width: 35%;
  text-align: center;
}

.product-features-lb, .product-features-rb{
  font-size: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.product-features-lb{
  left: 3%;
}
.product-features-rb{
  right: 3%;
}

.product-features-title{
  font-weight: 400;
  font-size: 26px;
}

.product-information-box {
  width: 32%;
}

.product-img {
  width: 245px !important;
  height: 436px !important;
}

.features {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.features a{
  color: blue;
  text-decoration: underline;
  display: inline-block;
  margin-top: 12px;
  font-size: 18px;
}


.product-name-title{
  font-size: 22px;
  font-weight: 400 ;
  margin-bottom: 15px;
}

.feature-title{
  font-size: 19px;
  margin-right: 5px;
}
.feature-text{
  font-size: 16px;
  color: black;
}

.feature-text a{
  color: black;
  text-decoration: underline;
  display: inline-block;
  transition: all .2s;
}

.feature-text a:hover{
  transform: scale(1.05);
}

.product-feature-code{
  font-size: 18px;
  display: inline-block;
  margin-bottom: 40px;
}

/* .slide-in {
  animation: slideIn 1.25s ease-out;
}

.slideOut{
  animation: slideOut 1.25s ease-in;
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideOut{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(100%);
  }
} */


/* PRODUCT FEATURES END */

/* INFORMATION START */

.information {
  margin-top: 80px;
}

.information-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info {
  font-size: 22px;
  text-align: center;
}

/* .catalog-btn {
  background-color: var(--secondary);
  color: black;
  padding: 26px 66px;
  font-size: 28px;
  border-radius: 32px;
  transition: all .2s;
}

.catalog-btn:hover {
  background-color: black;
  color: var(--secondary);
}

.catalog-btn i {
  margin-right: 10px;
} */

/* INFORMATION END */

/* PRODUCTS START */

.products {
  margin: 70px 0;
}

.products-container {
  width: 90%;
  margin: 0 auto;
}

.products-title {
  text-align: center;
}

.products-content {
  display: grid;
  grid-template-columns: auto auto auto;
  row-gap: 50px;
  justify-content: space-between;
}

.product-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  width: 420px;
  padding: 16px 13px;
}

.product-box-image {
  width: 275px !important;
  height: 490px !important;
  margin-bottom: 30px;
}

.product-code {
  align-self: flex-start;
  margin-left: 10px;
  margin-bottom: 25px;
  font-size: 15px;
}

.product-line {
  background-color: gray;
  width: 100%;
  height: 1px;
  border-radius: 8px;
}

.product-name {
  margin: 20px 0 5px;
  font-size: 18px;
  text-align: center;
}

.product-info-button {
  background-color: var(--secondary);
  color: black;
  padding: 8px 0;
  width: 85%;
  text-align: center;
  border-radius: 8px;
  margin-top: 14px;
  transition: all 0.2s;
  cursor: pointer;
}

.product-info-button:hover {
  background-color: #111;
  color: var(--secondary);
}

/* PRODUCTS END */

/* PHOTOS START */

.photos {
  margin-top: 60px;
}

.photos .section-title {
  text-align: center;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.photo-img {
  width: 341px;
  object-fit: contain;
  max-width: 100%;
}

/* PHOTOS END */

/* LIST START */

.list{
  /* background-color: #f5d4a3; */
  background-color: var(--secondary);
  padding: 15px;
  /* border-bottom: 2px solid white; */
}

.akustik-list{
  display: flex;
  justify-content: space-between;
}
.tavanpanel, .duvarpanel{
  width: 32%;
  display: flex;
  flex-direction: column;
}

.tavanpanel h2, .duvarpanel h2{
  margin-bottom: 15px;
  font-size: 28px;
  text-decoration: underline;
}



.tavanpanel a, .duvarpanel a{
  font-size: 18px;
  color: black;
  transition: all .2s;
  display: inline-block;
  margin-bottom: 5px;
  line-height: 26px;
}

.tavanpanel a:hover, .duvarpanel a:hover{
  transform: scale(1.1);
}



/* LIST END */

/* FOOTER START*/

footer {
  background: linear-gradient(180deg, rgba(223,177,108,1) 0%, rgba(241,194,123,1) 55%, rgba(208,167,105,1) 100%);
  padding: 10px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-img {
  width: 25%;
}

.social-icons {
  display: flex;
  justify-content: space-between;
  column-gap: 25px;
  width: 25%;
  margin-right: 25px;
}

.social-icon {
  color: rgb(51, 51, 51);
  font-size: 35px;
  transition: all 0.2s;
}

.brand-icon{
  object-fit: contain;
  width: 60% !important;
}

.social-icon:hover {
  transform: scale(1.1);
}
.social-icon:active {
  transform: scale(0.95);
}

.footer-gsm a{
  font-size: 32px;
  font-weight: bold;
  color: rgb(51, 51, 51);
}

.sticky-footer{
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* FOOTER END */

/* ABOUT US START */


.about-us {
  margin-top: 60px;
  margin-bottom: 63px;
}

.about-us-container {
  display: flex;
  justify-content: space-between;
}

.about-us-image-section {
  width: 42%;
}

.about-us-image-section img {
  object-fit: contain;
  width: 100%;
}

.about-us-text-section {
  width: 55%;
}

.about-us-text-section p {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.45px;
  text-indent: 15px;
}

/* .about-footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
} */

/* ABOUT US END */

/* CONTACT START */

.contact-title {
  font-weight: 400;
  font-size: 46px;
  text-align: center;
  margin: 30px 0;
}

.contact {
  margin-top: 70px;
}

.contact-text,
.contact-info-text {
  font-size: 20px;
  text-align: center;
  margin: 20px 0;
}

.contact-info-text {
  font-size: 25px;
}

.contact-form {
  width: 500px;
  margin: 90px auto;
}

.contact-form div {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.contact-form div label {
  font-size: 22px;
  margin-bottom: 5px;
}

.contact-form div input {
  font-family: 'Montserrat', sans-serif;
  padding: 8px;
  outline: none;
  border: 1px rgb(192, 190, 190) solid;
  font-size: 16px;
}

.contact-form div textarea {
  font-family: 'Montserrat', sans-serif;
  height: 120px;
  padding: 8px;
  outline: none;
  border: 1px rgb(192, 190, 190) solid;
  font-size: 16px;
  resize: none;
}

.contact-form button {
  background-color: var(--secondary);
  outline: none;
  border: none;
  color: black;
  padding: 16px 42px;
  border-radius: 8px;
  font-size: 22px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: all .2s;
}

.contact-form button:hover {
  color: var(--secondary);
  background-color: #111;
}

/* CONTACT END */

/* GALLERY START */

.section-title.gallery-title{
  text-align: center;
  margin-top: 30px;
}

.gallery-section{
  margin-top: 50px;
  margin-bottom: 80px;
}

.gallery-img{
  height: 200px;
  object-fit: contain;
  justify-self: center;
  cursor: pointer;
  transition: all .5s;
}

.gallery-pop-up-img{
  height: 400px;
  object-fit: contain;
}

.gallery-img:hover{
  transform: scale(1.1);
}

.pop-up-gallery{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999999999;
  display: none;
}

.pop-up-gallery-content{
  position: relative;
  width: 800px;
  text-align: center;
}

.gallery-rb, .gallery-lb{
  color: white;
  font-size: 36px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 15px;
}

.gallery-lb{
  left: -100px;
}

.gallery-rb{
  right: -100px;
}

.gallery-pop-up-close-icon{
  font-size: 32px;
  color: white;
  padding: 10px;
  position: absolute;
  cursor: pointer;
  right: -50px;  
  top: -60px;
}



/* GALLERY END */

/* POP UP START */

.pop-up{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999999999;
  padding: 20px;
  background-color: rgb(250, 245, 245);
  border-radius: 4px;
  width: 50%;
  display: none;
}

.pop-up-on{
  display: block !important;
}


.pop-up-close-icon{
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
}


.pop-up-darkness{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999998;
  padding: 20px;
  width: 100vw;
  height: 100vh;
  background-color: #222;
  opacity: .65;
  display: none;
}

.pop-up-darkness-on{
  display: block !important;
}

.pop-up-container{
  width: 95%;
  margin: 0 auto;
  position: relative;
}
.pop-up-title{
  text-align: center;
  font-weight: 400;
  font-size: 30px;
}
.pop-up-main{
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.pop-up-image-part, .pop-up-content-part{
  width: 42%;
}

.pop-up-content-part{
  margin-top: 35px;
}

.pop-up-content-title{
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
}

.pop-up-code-title{
  font-size: 18px;
  font-weight: bold;

}
.pop-up-code-name{
  font-size: 15px;
}

.pop-up-product-features-title{
  font-weight: 400;
  font-size: 20px;
  margin: 15px 0 12px;
  font-weight: bold;

}

.pop-up-product-feature-title{
  font-size: 18px;
  font-weight: bold;

}

.pop-up-product-feature-name{
  font-size: 16px;
}

.pop-up-feature-link{
  color: black;
  text-decoration: underline;
}

.pop-up-product-feature-parent{
  margin-bottom: 7px;
}




/* POP UP END */

@media (min-width: 1660px){
  .gallery-img{
    height: 280px;
  }
}

@media (max-width: 1550px) {
  .product-box {
    width: 350px;
  }

  .product-box-image {
    width: 255px !important;
    height: 453px !important;
  }

  .product-name {
    font-size: 17px;
  }

  .about-us-text-section p{
    font-size: 18px;
  }
}

@media (max-width: 1400px) {
  .contact-info {
    font-size: 20px;
  }

  /* .catalog-btn {
    padding: 16px 40px;
    font-size: 24px;
  } */
}

@media (max-width: 1300px) {
  /* .nav-container {
    width: 950px;
  } */
  .nav-link-parent {
    width: 70%;
  }

  .nav-link {
    font-size: 18px;
  }

  .product-box {
    width: 350px;
  }

  .product-box-image {
    width: 230px !important;
    height: 412px !important;
  }

  .product-name {
    font-size: 17px;
  }
}

@media (max-width: 1280px) {
  .products-content {
    grid-template-columns: auto auto;
    justify-content: space-evenly;
  }

  .product-box {
    width: 350px;
  }

  .product-box-image {
    width: 275px !important;
    height: 453px !important;
  }

  .product-name {
    font-size: 16px;
  }
}

@media (max-width: 1175px) {
  .information-container {
    flex-direction: column;
    row-gap: 40px;
  }

  .about-us-image-section {
    width: 55%;
  }

  .about-us-text-section {
    width: 70%;
  }

  .about-us-text-section .section-title {
    text-align: center;
    margin-top: 20px;
  }

  .about-us-text-section p {
    font-size: 17px;
    line-height: 24px;
    text-indent: 0;
  }

  .about-us-container {
    flex-direction: column;
    align-items: center;
  }
  .about-footer {
    position: static;
    width: none;
    bottom: none;
    margin-top: 50px;
  }

  .duvarpanel, .tavanpanel{
    width: 40%;
  }

}

@media (min-width: 1025px) {
  .sidebar {
    display: none !important;
  }
  .darkness {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .nav-link-parent {
    display: none;
  }

  /* .nav-container {
    width: 95%;
  } */

  .nav-sidebar-button {
    display: block;
  }

  .introduction-text {
    font-size: 19px;
    line-height: 25px;
  }

  .section-title {
    font-size: 36px;
  }

  .product-img {
    width: 192.5px !important;
    height: 343px !important;
  }



  .product-feature-code{
    font-size: 17px;
  }

  .social-icon {
    font-size: 30px;
  }

  /* .akustik-list{
    display: flex;
    justify-content: space-between;
  }
  .tavanpanel, .duvarpanel{
    width: 40%;
    display: flex;
    flex-direction: column;
  }
  
  .tavanpanel h2, .duvarpanel h2{
    margin-bottom: 15px;
    font-size: 28px;
  }
  
  .tavanpanel a, .duvarpanel a{
    font-size: 18px;
    color: black;
    transition: all .2s;
    display: inline-block;
    margin-bottom: 5px;
  }
  
  .tavanpanel a:hover, .duvarpanel a:hover{
    transform: scale(1.1);
  }
  
  .list-line{
    height: 100%;
    width: 1px;
    background-color: gray;
  } */

  .pop-up-title{
    font-size: 25px;
  }

  .pop-up{
    width: 60%;
  }

  .pop-up-main{
    margin-top: 10px;
  }

  .pop-up-content-title{
    font-size: 18px;
  }

  .pop-up-code-title{
    font-size: 16px;
  }

  .pop-up-code-name{
    font-size: 14px;
  }
  
  .pop-up-product-features-title{
    font-size: 18px;
  }

  .pop-up-product-feature-parent{
    margin-bottom: 7px;
  }

  .pop-up-product-feature-title{
    font-size: 16px;
  }

  .pop-up-product-feature-name{
    font-size: 14px;
  }

  .gallery-pop-up-img{
    height: 350px;
  }

  .pop-up-gallery-content{
    width: 700px;
  }



}

@media(max-width: 960px){
  .pop-up{
    width: 55%;
  }
}

@media (max-width: 928px){
  .duvarpanel h2, .tavanpanel h2{
    font-size: 23px;
  }
  .duvarpanel a, .tavanpanel a{
    font-size: 16px;
  }

  .gallery-pop-up-img{
    height: 300px;
  }

  .pop-up-gallery-content{
    width: 600px;
  }
}



@media (max-width: 880px) {
  .product-box-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
  }

  .product-information-box {
    width: 90%;
  }
  
  .product-name-title{
    text-align: center;
  }

  .product-feature-code{
    display: block;
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
  }

  .product-information-box .section-title {
    text-align: center;
  }

  .product-box {
    width: 300px;
  }

  .product-code {
    font-size: 14px;
  }

  .product-box-image {
    width: 230px !important;
    height: 412px !important;
  }

  .product-name {
    font-size: 15px;
  }

  .product-info-button {
    font-size: 15px;
  }

  .pop-up{
    width: 70%;
  }
}

@media (max-width: 830px){
  .pop-up-gallery-content{
    width: 490px;
  }
  .gallery-pop-up-img{
    height: 260px;
  }
}

@media (max-width: 768px) {
  .section-container {
    width: 90%;
  }

  .nav-container{
    width: 90%;
  }

  /* .line{
    width: 90%;
  } */

  .introduction-text {
    font-size: 17px;
  }

  .products-content {
    grid-template-columns: auto;
    row-gap: 30px;
  }

  .product-box {
    width: 420px;
  }

  .product-box-image {
    width: 275px !important;
    height: 490px !important;
  }

  .product-code {
    font-size: 15px;
  }

  .product-name {
    font-size: 18px;
  }

  .product-info-button {
    font-size: 16px;
  }

  .footer-gsm{
    width: 50%;
  }

  .social-icons {
    width: 50%;
  }

  .social-icon {
    font-size: 35px;
  }

  .footer-img {
    display: none;
  }

  .akustik-list{
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }

  .tavanpanel, .duvarpanel {
    width: 80%;
    align-items: center;
  }

  .tavanpanel h2, .duvarpanel h2 {
    text-align: center;
  }

  .tavanpanel a, .duvarpanel a {
    text-align: center;
  }

  
  .pop-up-product-features-title{
    margin: 15px 0 20px;
  }

  .pop-up-close-icon{
    top: 0;
    right: 0;
  }

  .gallery-img{
    height: 170px;
  }
}

@media (max-width: 720px) {

  .product-information-box {
    width: 90%;
  }

  .product-information-box .section-title {
    text-align: start;
  }


  .about-us-image-section {
    width: 60%;
  }

  .about-us-text-section {
    width: 80%;
  }

  .about-us-text-section p {
    font-size: 16px;
  }

  .pop-up-gallery-content{
    width: 400px;
  }

  .gallery-pop-up-img{
    height: 210px;
  }
  
}

@media (max-width: 610px){
  .pop-up-title{
    margin-top: 15px;
  }

  .pop-up-close-icon{
    top: -25px;
    right: -3px;
  }

  .pop-up-product-features-title{
    margin: 20px 0;
  }
  .pop-up{
    width: 90%;
  }

  .pop-up-gallery-content{
    width: 310px;
  }

  .gallery-pop-up-img{
    height: 160px;
  }
  .gallery-img{
    height: 250px;
  }
}

@media (max-width: 555px){
  .whatsapp-button{
    bottom: 80px;
  }
  .whatsapp-button-effect{
    bottom: 84px;
  } 
}


@media (max-width: 510px) {
 

  .product-box {
    width: 340px;
  }

  .product-box-image {
    width: 230px !important;
    height: 412px !important;
  }

  .product-code {
    font-size: 14px;
  }

  .product-name {
    font-size: 16px;
  }

  .product-info-button {
    font-size: 15px;
  }

  .social-icon {
    font-size: 30px;
  }

  .about-us-image-section {
    width: 70%;
  }

  .about-us-text-section {
    width: 90%;
  }

  .about-us-text-section p {
    font-size: 15px;
  }

  .pop-up-product-feature-parent{
    margin-bottom: 13px;
  }
  .pop-up-content-title{
    font-size: 17px;
  }

  .pop-up-gallery-content{
    width: 230px;
  }

  .gallery-pop-up-img{
    height: 130px;
  }

  .gallery-img{
    height: 220px;
  }
  
}

@media (max-width: 460px){
  .pop-up-image-part{
    display: none;
  }

  .pop-up-main{
    justify-content: center;
  }
  .pop-up-content-part{
    width: 100%;
  }
}

@media (max-width: 440px){
  .contact-form {
    width: 100%;
    margin: 90px auto;
  }

  .pop-up-content-part{
    width: 80%;
  }

  .pop-up-gallery-content{
    width: 180px;
  }

  .gallery-pop-up-img{
    height: 110px;
  }

  .gallery-img{
    height: 190px;
  }
}

@media(max-width: 395px){
  .pop-up-gallery-content{
    width: 90%;
  }

  .gallery-img{
    height: 180px;
  }
}
