/* Root */
:root {
}
/* Default Settings */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: 0.3s;
}
::placeholder {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #6e3624;
  color: #ffffff;
  font-family: "Tajawal";
  transition: 0s;
}

ul {
  list-style: none;
}
.container {
  padding: 0;
  margin: 0 auto;
}

img {
  -webkit-user-drag: none;
}
button {
  cursor: pointer;
}
button,
input {
  outline: 0;
}
a {
  text-decoration: none;
  color: unset;
}

.logo {
  height: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.logo img {
  height: 100%;
  margin-top: -75px;
}

.images-container {
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-buttons-con {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: -100px;
  margin-bottom: 50px;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}
.img-p-con {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}
.img-p-con img {
  width: 250px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  padding: 10px;
}
.img-p-con:hover {
  opacity: 0.8;
}

.img-con {
  width: 100%;
  position: relative;
}
.watermark {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
}
.img-con img {
  width: 100%;
}
.social-container {
  display: flex;
  gap: 20px;
  font-size: 50px;
  justify-content: center;
  margin-bottom: 50px;
}
/* Small */
@media (max-width: 768px) {
  .container {
    width: 100%;
  }
  .images-container {
    width: 100%;
  }
  .img-con {
    width: 100%;
  }
  .img-con img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* Ending Default Values */
