@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css?family=Poppins:100,300,400,500,600,700,800, 800i, 900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}
/**********************
*** HEADER SECTION ***
*********************/
.container {
  max-width: 1050px;
  width: 90%;
  margin: auto;
}
.navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
  height: 80px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .nav-container a:hover{
    font-weight: bolder;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 27px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #000;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 120px;
  background-color: #fff;
  height: 100vh;
  width: 110%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -40px;
  padding-left: 50px;
  transition: transform 0.5s ease-in-out;
  text-align: center;
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.logo {
  position: absolute;
  top: 23px;
  right: 15px;
  font-size: 1.2rem;
  color: #000;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo{
  display: none;
}


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

@media screen and (max-width: 567px) {
  html {
    display: flex;
  }
}

/**************************
*** END HEADER SECTION ***
************************/

/***********************
*** PRODUCT SECTION ***
**********************/
.container2 {
    position: relative;
  margin: 50px;
}

.container2 .card {
    position: relative;
    width: 320px;
    height: 475px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.container2 .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    clip-path: circle(150px at 80% 20%);
    transition: 0.5s ease-in-out;
}

.container2 .card:hover:before {
    clip-path: circle(300px at 80% -20%);
}

.container2 .card:after {
    content: "DUZVAER";
    position: absolute;
    top: 30%;
    left: -20%;
    font-size: 12em;
    font-weight: 800;
    font-style: italic;
    color: rgb(255 255 255 / 30%);
}

.container2 .card .imgBx {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 100%;
    height: 100%;
    transition: .5s;
}

.container2 .card:hover .imgBx {
    top: 0%;
    transform: translateY(-25%);
    /* bug  */
}

.container2 .card .imgBx img {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 176px;
}

.container2 .card .contentBx {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    text-align: center;
    transition: 1s;
    z-index: 90;
}

.container2 .card:hover .contentBx {
    height: 210px;
}

.container2 .card .contentBx h2 {
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

.container2 .card .contentBx .size,
.container2 .card .contentBx .color {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

.container2 .card:hover .contentBx .size {
    opacity: 1;
    visibility: visible;
    transition-delay: .5s;
}

.container2 .card:hover .contentBx .color {
    opacity: 1;
    visibility: visible;
    transition-delay: .6s;
}

.container2 .card .contentBx .size h3,
.container2 .card .contentBx .color h3 {
    color: white;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 10px;
}

.container2 .card .contentBx .size span {
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
    display: inline-block;
    color: #111;
    background: #fff;
    margin: 0 5px;
    transition: .5s;
    color: #111;
    border-radius: 4px;
    cursor: pointer;
}

.container2 .card .contentBx .size span:hover {  /* other bug */
    background: #B90000;
}

.container2 .card .contentBx .color span {
    width: 20px;
    height: 20px;
    background: #ff0;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.container2 .card .contentBx .color span:nth-child(2) {
     background: #000;
}

.container2 .card .contentBx .color span:nth-child(3) {
     background: #fff;
}

.container2 .card .contentBx .color span:nth-child(4) {
     background: #5c5c5cff;
}

.container2 .card .contentBx a {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    border-radius: 4px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    opacity: 0;
    transform: translateY(50px);
    transition: .5s;
}

.container2 .card:hover .contentBx a {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: .7s;
} 
.product{
  display: flex;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 1183px) {
  .product {
    display: grid;
  }
}
/***************************
*** END PRODUCT SECTION ***
**************************/

/*********************
*** ABOUT SECTION ***
********************/
.chi-siamo-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}

.abi {
  flex: 1;
  padding-right: 20px;
}

.abi img {
  max-width: 100%;
  height: auto;
  margin-left: 260px;
}

.abt {
  flex: 1;
  padding-left: 20px;
}

.abt h2 {
  font-size: 38px;
  color: #000;
  font-family: "Poppins", sans-serif;
}

.abt p {
  font-size: 16px;
  color: #666;
  margin-right: 350px;
  margin-top: 68px;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 1443px) {
  .abi img {
    margin-left: 42px;
  }
  .abt p{
    margin-right: 50px;
  }
}
@media screen and (max-width: 913px) {
  .chi-siamo-section {
    display: grid;
    align-items: center;
    justify-content: center;
  }
  .abi{
    display: flex;
    justify-content: center;
  }
  .abt h2{
    text-align: center;
  }
  .abt p{
    text-align: center;
    margin: 20px;
  }
}
/*************************
*** END ABOUT SECTION ***
***********************/

/**********************
*** FOOTER SECTION ***
*********************/
.footer{
  text-align: center;
  font-size: 18px;
  color: #000;
  margin: 55px;
}
/**************************
*** END FOOTER SECTION ***
*************************/

/***********************
*** GALLERY SECTION ***
**********************/ 
.pt{
  margin-top: 55px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.pt .imagept{
  height: 500px;
}
/*************************** 
*** END GALLERY SECTION ***
**************************/ 

/********************
*** GRID SECTION ***
*******************/ 

.grid{
  display: flex;
  text-align: center;
  justify-content: center;
}
.grid .imagegrid{
  height: 400px;
  margin: 50px;
}
@media screen and (max-width: 1320px) {
  .grid{
    display: grid;
  }
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 990px){
  .contact .info{
    margin-top: 30px;
  }
}

/************************
*** END GRID SECTION ***
***********************/ 

/******************************
*** FOOTER SOCIAL  SECTION ***
*****************************/ 

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

/**********************************
*** END FOOTER SOCIAL  SECTION ***
*********************************/ 

/*************************
*** CONTACT SECTION *****
************************/ 

*, *:before, *:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.background {
  display: flex;
  min-height: 70vh;
}

.container4 {
  flex: 0 1 700px;
  margin: auto;
  padding: 10px;
}

.screen {
  position: relative;
  background: #fff;
  border-radius: 15px;
}

.screen:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  z-index: -1;
}

.screen-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.screen-header-left {
  margin-right: auto;
}

.screen-header-button {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 8px;
  background: white;
}

.screen-header-button.close {
  background: #ed1c6f;
}

.screen-header-button.maximize {
  background: #e8e925;
}

.screen-header-button.minimize {
  background: #74c54f;
}

.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #000;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #000;
  font-size: 26px;
}

.app-title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 180px;
  height: 4px;
  background: #000;
}

.app-contact {
  margin-top: auto;
  font-size: 10px;
  color: #000;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #000;
  color: #000;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

.app-form-control::placeholder {
  color: #666;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  background: none;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  float: left;
  margin-top: 20px;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 5px;
}

.app-form-button:hover {
  color: #4a4a4a;
}

@media screen and (max-width: 520px) {
  .screen-body {
    flex-direction: column;
  }

  .screen-body-item.left {
    margin-bottom: 30px;
  }

  .app-title {
    flex-direction: row;
  }

  .app-title span {
    margin-right: 12px;
  }

  .app-title:after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .screen-body {
    padding: 40px;
  }

  .screen-body-item {
    padding: 0;
  }
}

/**************************
*** END CONTACT SECTION **
************************/
