@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap");

:root {
  --white-bg: #fff;
  --main-color: #47494e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Lora", Helvetica, Arial, sans-serif;
}

a {
  text-decoration: none;
}

/*? NAVBAR */
.navbar {
  display: flex;
  width: 100%;
  padding: 12px;
  position: absolute;
  top: 0;
  text-decoration: none;
  list-style-type: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: all 0.8s ease;
}

.navbar.sticky {
  margin: 0;
  padding: 0px 10px;
  position: fixed;
  height: 77px;
  background: rgba(255, 255, 255, 1);
  transition: all 0.6s ease;
  box-shadow: 0px 0px 3px 0px #49474e;
}

.navbar.sticky .nav-content li a {
  color: #000;
  padding-block: 26px;
}

.navbar.sticky .nav-logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar.sticky .nav-logo img {
  width: 55px;
  transition: all 0.6s ease;
}

.navbar .nav-content {
  width: 1007px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  margin-left: 0px;
  align-items: center;
}

.navbar .nav-content li a {
  text-decoration: none;
  list-style-type: none;
  color: rgb(230, 229, 229);
}

.navbar .nav-content .nav-left {
  display: flex;
  align-items: center;
}

.navbar .nav-content li {
  margin-inline: 20px;
  font-size: 18px;
  color: #fff;
  padding-block: 27px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  position: relative;
}

hr {
  width: 1px;
  height: 35px;
  background-color: rgba(250, 250, 250, 0.5);
  border: none;
}

.navbar.sticky hr {
  background-color: rgba(0, 0, 0, 0.5);
}

.navbar .nav-content li.active {
  color: #fff;
  font-weight: 600;
}

.navbar.sticky .nav-content li.active::after {
  opacity: 1;
}

.navbar .nav-content li::after {
  content: " ";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background: #000;
  opacity: 0;
  transition: all 0.6s ease;
}

.navbar.sticky .nav-content li:hover a {
  opacity: 1;
  color: #000;
}

.navbar.sticky .nav-content li:hover::after {
  opacity: 1;
}

.navbar .nav-content li:hover a {
  opacity: 1;
  color: #fff;
}

.navbar .nav-logo {
  position: absolute;
  top: 5px;
}

.navbar.sticky .nav-logo {
  top: 0px;
}

.navbar .nav-logo a img {
  transition: all 0.6s ease;
}

.navbar .nav-content .nav-right {
  display: flex;
  align-items: center;
}

.navbar .burger-menu {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}

.navbar .burger-menu .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
}

/*? NAVBAR END */

/*? HEADER */

.header {
  width: 100%;
  height: 880px;
  position: relative;
  /* background-image: url(../img/ege-somine.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  position: relative;
  animation: fade-in 0.7s ease forwards;
  animation-delay: 0.2s;
}

.header .swiper2 .swiper-slide2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.3;
}

.header .header-text {
  font-size: 80px;
  color: var(--white-bg);
  width: 100%;
  top: calc(50% - 104px);
  left: 0;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  z-index: 10;
  animation: fade-in 1.8s ease forwards;
  animation-delay: 0.6s;
  position: absolute;
  pointer-events: none;
}

.header .swiper2 {
  width: 100%;
  height: 100%;
}
.header .header-down {
  width: 63px;
  height: 63px;
  position: absolute;
  opacity: 0;
  bottom: 60px;
  animation: fade-slide-down 1.5s ease forwards;
  animation-delay: 1s;
  z-index: 1;
}

/*? HEADER END*/

/*? SLIDER */

.slider {
  width: 100%;
  height: 1000px;
  /* background: radial-gradient(#333, #777); */
  background-image: url(../img/home_tiles_contentslider_bg2.png);
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-size: cover;
  justify-content: center;
}

.slider .slider-title {
  font-size: 42px;
  color: var(--white-bg);
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider .slider-title hr {
  width: 70px;
  height: 1px;
  background-color: #fff;
  margin-bottom: 2px;
}

.slider .slider-title hr:first-of-type {
  margin-top: 12px;
}

.swiper {
  width: 1025px;
  height: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 30px;
  z-index: 1;
}

.swiper-slide img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.swiper-slide1 img {
  object-fit: contain;
}

.swiper2 {
  width: 100%;
}

.swiper2 {
  width: 100%;
  height: 100%;
}

.swiper-slide2 {
  background-position: center;
  background-size: cover;
}

.swiper-slide2 img {
  width: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.mySwiper .img-container {
  height: 340px;
}

.mySwiper .swiper-button-prev {
  color: #dcdcdc;
  padding: 23px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-out;
  background: rgba(250, 250, 250, 0.4);
}

.swiper-button-prev:after {
  margin-right: 5px;
  font-size: 25px !important;
}

.swiper-button-prev:hover {
  background-color: #fff;
  color: #2d2929;
  font-weight: bold;
}

.mySwiper .swiper-button-next {
  color: #dcdcdc;
  padding: 23px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-out;
  background: rgba(250, 250, 250, 0.4);
}

.swiper-button-next:after {
  margin-left: 5px;
  font-size: 25px !important;
}

.swiper-button-next:hover {
  background-color: #fff;
  color: #2d2929;
  font-weight: bold;
}

.mySwiper .swiper-pagination {
  width: 20px;
  height: 20px;
}

.slider .mySwiper .swiper-pagination {
  margin-bottom: 25px;
}

.mySwiper .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
}

.mySwiper .swiper-pagination-bullet-active {
  background: #000;
}

.slider .slider-text {
  text-align: center;
  color: #fff;
  height: 90px;
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slider .slider-text span {
  text-align: center;
  font-size: 24px;
}

.slider .slider-text p {
  text-align: center;
}

/*? SLIDER END */

/*? EXAMPLES */

.examples {
  width: 100%;
  height: 755px;
}

.examples .examples-title {
  height: 142px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.examples .examples-imgs {
  width: 100%;
  height: 612px;
  display: flex;
  flex-basis: 25%;
}

.examples-imgs .swiper {
  width: 100%;
  height: 645px;
}

.examples-imgs .swiper-wrapper {
  height: 92%;
}

.examples-imgs .swiper-wrapper .swiper-slide.swiper-slide3 img {
  object-fit: cover;
}

.swiper-slide.swiper-slide3 .examples-span {
  position: absolute;
  color: #fff;
  transition: opacity 0.4s ease-in-out;
  font-family: "Dancing Script", sans-serif;
  font-size: 32px;
  pointer-events: none;
  user-select: none;
  top: calc(50% - 17px);
  left: calc(50% - 108px);
}

.swiper-slide.swiper-slide3.swiper-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.3;
  transition: opacity 0.4s ease-in-out;
}

.swiper-slide.swiper-slide3.swiper-slide:hover:before {
  opacity: 0;
}

.swiper-slide.swiper-slide3.swiper-slide:hover span {
  opacity: 0;
}

.swiper-pagination3 {
  bottom: -20px;
}

/*? EXAMPLES END */

/*? HAKKIMIZDA */

.hakkimizda {
  width: 100%;
  height: 790px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -1px;
}

.hakkimizda .hakkimizda-content {
  height: 88%;
  width: 40%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
}

.hakkimizda .hakkimizda-content .hakkimizda-top {
  width: 4px;
  height: 130px;
  border-block: 0;
  border-inline: 1px solid #000;
  animation: fade-slide-down2 1.5s ease forwards;

}

.hakkimizda .hakkimizda-content .hakkimizda-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 194px;
  justify-content: space-between;
  margin-top: 0px;
}

.hakkimizda .hakkimizda-content .hakkimizda-text span {
  font-size: 17px;
  font-family: "Lora", Helvetica, Arial, sans-serif;
  letter-spacing: 4px;
}

.hakkimizda .hakkimizda-content .hakkimizda-text p {
  font-size: 30px;
}

.hakkimizda .hakkimizda-content button {
  padding: 13px 30px;
  border: 2px solid #000;
  background-color: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
}

.hakkimizda .hakkimizda-content button:hover {
  background-color: #000;
}

.hakkimizda .hakkimizda-content button:hover a {
  color: #fff;
}

.hakkimizda .hakkimizda-content button a {
  color: #000;
}

.hakkimizda .hakkimizda-content button i {
  transform: translateX(10px);
}

.hakkimizda .hakkimizda-content .hakkimizda-bottom {
  width: 4px;
  height: 130px;
  border-block: 0;
  border-inline: 1px solid #000;
  animation: fade-slide-up 1.5s ease forwards;
}
/*? HAKKIMIZDA END */

/*? ÜRÜN GRUPLARI */
.urun-gruplari {
  width: 100%;
  height: 425px;
  display: flex;
}

.urun-gruplari .ug-sol {
  width: 50%;
  height: 100%;
  background-image: url(../img/pexels-max-vakhtbovych-7045830.png);
  background-size: cover;
  padding: 120px 60px 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.urun-gruplari .ug-sol::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.urun-gruplari span {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 4px;
  z-index: 4;
}

.urun-gruplari h2 {
  font-size: 34px;
  font-weight: 400;
  z-index: 4;
}

.urun-gruplari a {
  z-index: 3;
}

.urun-gruplari button {
  padding: 10px 31px;
  border: 2px solid #fff;
  color: #fff;
  outline: none;
  background-color: transparent;
  transition: all 0.4s ease;
  cursor: pointer;
  z-index: 4;
}

.urun-gruplari button:hover {
  background-color: #555;
}

.urun-gruplari button i {
  transform: translateX(10px);
}

.urun-gruplari .ug-sag {
  width: 50%;
  height: 100%;
  background-image: url(../img/urun-gruplari2.jpg);
  background-size: contain;
  padding: 120px 228px 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}
/*? ÜRÜN GRUPLARI END */

/*? SOCIAL MEDIA */

.social-media {
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media .social-media-content {
  width: 1200px;
  height: 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-media .social-media-content .social-media-top {
  height: 29%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  font-size: 42px;
  letter-spacing: 1px;
}

.social-media .social-media-content .social-media-top .social-media-lines {
  width: 117px;
  height: 4px;
  border-block: 1px solid #000;
  border-inline: none;
}

.social-media .social-media-content .social-media-bottom {
  height: 55%;
  display: flex;
  justify-content: space-between;
}

.social-media .social-media-content .social-media-bottom .social-box {
  width: 28.5%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e8e8e8;
  transition: background-color 0.6s ease;
}

.social-media
  .social-media-content
  .social-media-bottom
  .social-box
  .social-btn {
  width: 50%;
  height: 20px;
  background-color: var(--main-color);
}

.social-media .social-media-content .social-media-bottom .social-box i {
  font-size: 20px;
  color: var(--main-color);
}

.social-media .social-media-content .social-media-bottom .social-box a {
  width: 59%;
  height: 35px;
  background-color: var(--main-color);
  text-decoration: none;
  color: #e8e8e8;
  margin-top: 20px;
}

.social-media
  .social-media-content
  .social-media-bottom
  .social-box
  .social-btn {
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  border: 1px solid #e8e8e8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.5s ease;
}

.social-media
  .social-media-content
  .social-media-bottom
  .social-box
  .social-btn
  p {
  z-index: 30;
}

.social-media
  .social-media-content
  .social-media-bottom
  .social-box
  .social-btn:hover {
  background: #e8e8e8;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

/*? SOCIAL MEDIA END  */

/*? FOOTER */

.footer {
  width: 100%;
  height: 430px;
  background-image: url(../img/home_tiles_header_bg.png);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}

.footer .footer-top {
  width: 1235px;
  height: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.footer .footer-top .footer-column {
  width: 23%;
  height: 69%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.footer .footer-top .footer-column:first-of-type {
  align-items: center;
  width: 15%;
  margin-right: -75px;
  margin-left: 60px;
}

.footer .footer-top .footer-column:nth-child(2) {
  width: 20%;
}

.footer .footer-top .footer-column:nth-child(3) {
  width: 14%;
}

.footer .footer-top .footer-column:nth-child(4) {
  width: 29%;
}

.footer .footer-top .footer-column span {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer .footer-top .footer-column li {
  list-style: none;
  padding-block: 6px;
  transition: all 0.2s ease;
  display: flex;
  justify-content: left;
  align-items: center;
}

.footer .footer-top .footer-column i {
  color: #dcdcdc;
  margin-right: 5px;
  font-size: 11px;
}

.footer .footer-top .footer-column li:hover a {
  text-decoration: underline;
  color: #fff;
}

.footer .footer-top .footer-column li a {
  color: #dcdcdc;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 15px;
}

.footer .footer-top .footer-column li:hover a {
  color: #fff;
}

.footer .footer-top .footer-column p {
  color: #adadad;
  font-size: 15px;
  padding-block: 5px;
  line-height: 23px;
}

.footer .footer-top .footer-column p span {
  color: #fff;
  font-size: 15px;
}

.footer .footer-top .footer-logo img {
  width: 100px;
}

.footer .footer-bottom {
  width: 100%;
  height: 20%;
  border-top: 1px solid rgba(119, 119, 119, 0.6);
  display: flex;
  justify-content: center;
}

.footer .footer-bottom .bottom-content {
  width: 1217px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 15px;
}

.footer .footer-bottom .bottom-content p {
  color: #dcdcdc;
}

.footer .footer-bottom .bottom-content .up-arrow {
  width: 45px;
  height: 45px;
  border: 1px solid #adadad;
  border-radius: 5px;
  font-size: 20px;
}

.footer .footer-bottom .bottom-content .up-arrow a {
  color: #adadad;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: translateY(-4rem) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-4rem);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-slide-down2 {
  0% {
    opacity: 0;
    transform: translateY(-6rem);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-slide-up {
  0% {
    opacity: 0;
    transform: translateY(6rem);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    height: 0;
  }
  100% {
    height: 265px;
  }
}

/****? RESPONSIVE ****/
@media only screen and (max-width: 1630px) {
  .hakkimizda .hakkimizda-content .hakkimizda-text {
    height: 235px;
  }
}

@media only screen and (max-width: 1540px) {
  .swiper {
    width: 905px;
  }

  .examples {
    height: 635px;
  }

  .examples .examples-imgs {
    height: 490px;
  }

  .examples-imgs .swiper {
    width: 100%;
    height: 520px;
  }

  .examples-imgs .swiper-wrapper {
    height: 91%;
  }

  .swiper-pagination3 {
    bottom: 0px !important;
  }

  .hakkimizda {
    margin-top: 20px;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text {
    height: 237px;
  }

  .urun-gruplari .ug-sag {
    padding: 120px 120px 90px;
  }
}

@media only screen and (max-width: 1450px) {
  .urun-gruplari .ug-sol {
    padding-inline: 0;
  }

  .urun-gruplari .ug-sag {
    padding: 120px 120px 90px;
  }
}

@media only screen and (max-width: 1300px) {
  .urun-gruplari .ug-sag {
    padding: 120px 75px 90px;
  }

  .urun-gruplari h2 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 1242px) {
  .navbar {
    align-items: center;
  }

  .navbar.sticky {
    position: absolute;
    background-color: transparent;
    box-shadow: none;
  }

  .navbar .nav-content {
    width: 300px;
    height: 265px;
    margin-left: 0;
    align-items: center;
    flex-direction: column;
    position: absolute;
    display: none;
    top: 115px;
    right: 160px;
    animation: slide-down 0.5s ease;
    background-color: var(--main-color);
    overflow: hidden;
  }

  .navbar .nav-content.active {
    transform-origin: top;
    display: flex;
  }

  .navbar .nav-content .nav-left {
    flex-direction: column;
  }

  .navbar .nav-content .nav-right {
    flex-direction: column;
  }

  .navbar .nav-content li {
    padding-block: 15px;
  }

  hr {
    display: none;
  }

  .navbar.sticky .nav-content li a {
    color: #fff;
    padding-block: 26px;
  }

  .navbar.sticky .nav-content li.active::after {
    opacity: 0;
  }

  .navbar .burger-menu {
    display: flex;
    top: 50px;
    right: 200px;
    position: absolute;
    transition: all 0.4s ease;
  }

  .navbar .burger-menu.open .line {
    transition: 0.4s ease;
  }

  .navbar .burger-menu.open .line:first-child {
    transform: rotate(310deg) translate(-5px, 6px);
    transition: 0.4s ease;
    margin-top: -1px;
  }

  .navbar .burger-menu.open .line:nth-child(2) {
    opacity: 0;
    transition: 0.4s ease;
  }

  .navbar .burger-menu.open .line:nth-child(3) {
    transform: rotate(51deg) translate(-5px, -6px);
    transition: 0.4s ease;
  }

  .examples-imgs .swiper {
    width: 100%;
    height: 460px;
  }

  .hakkimizda .hakkimizda-content {
    width: 53%;
  }

  .slider .slider-title {
    margin-bottom: 0;
  }

  .swiper {
    width: 700px;
    height: 470px;
  }

  .mySwiper .img-container {
    height: 286px;
  }

  .slider .slider-text {
    margin-top: 20px;
  }

  .mySwiper .swiper-button-prev3 {
    margin-top: 10px;
  }

  .mySwiper .swiper-button-next3 {
    margin-top: 10px;
  }

  .footer .footer-top {
    width: 1050px;
  }

  .footer .footer-top .footer-column:first-of-type {
    width: 15%;
    margin-right: 0px;
    margin-left: 35px;
  }

  .footer .footer-top .footer-column:nth-child(2) {
    width: 23%;
  }

  .footer .footer-top .footer-column:nth-child(3) {
    width: 17%;
  }

  .footer .footer-top .footer-column:nth-child(4) {
    width: 34%;
  }

  .footer .footer-bottom .bottom-content {
    width: 1030px;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar .burger-menu {
    right: 75px;
    width: 27px;
    height: 17px;
  }
}

@media only screen and (max-width: 1050px) {
  .navbar .nav-content {
    right: 50px;
  }

  .navbar .burger-menu {
    right: 75px;
    width: 27px;
    height: 17px;
  }

  .header {
    height: 730px;
  }

  .header .header-text {
    font-size: 50px;
  }

  .slider {
    width: 100%;
    height: 852px;
  }

  .examples {
    height: 575px;
  }

  .examples .examples-imgs {
    height: 372px;
  }

  .examples-imgs .swiper {
    width: 100%;
    height: 450px;
  }

  .hakkimizda .hakkimizda-content {
    width: 62%;
    height: 95%;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text {
    height: 230px;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text span {
    font-size: 15px;
  }

  .urun-gruplari .ug-sol {
    padding-inline: 25px;
  }

  .urun-gruplari .ug-sag {
    padding: 120px 35px 90px;
  }

  .social-media .social-media-content {
    width: 915px;
  }

  .footer .footer-top {
    width: 850px;
  }

  .footer .footer-top .footer-column:first-of-type {
    width: 15%;
    margin-right: 0px;
    margin-left: 0;
  }

  .footer .footer-top .footer-column:nth-child(2) {
    width: 28%;
  }

  .footer .footer-top .footer-column:nth-child(3) {
    width: 13%;
  }

  .footer .footer-top .footer-column:nth-child(4) {
    width: 33%;
  }

  .footer .footer-bottom .bottom-content {
    width: 950px;
  }
}

@media only screen and (max-width: 900px) {
  .examples {
    height: 620px;
  }

  .examples-imgs .swiper {
    width: 100%;
    height: 480px;
  }
}

@media only screen and (max-width: 850px) {
  .navbar .nav-content {
    right: 50px;
  }

  .navbar .burger-menu {
    right: 75px;
  }

  .header {
    height: 580px;
  }

  .header .header-text {
    font-size: 52px;
  }

  .slider {
    width: 100%;
    height: 737px;
  }

  .swiper {
    width: 550px;
    height: 339px;
  }

  .mySwiper .img-container {
    height: 220px;
  }

  .slider .mySwiper .swiper-pagination {
    margin-bottom: 8px;
  }

  .slider .slider-text p {
    text-align: center;
    font-size: 15px;
  }

  .hakkimizda .hakkimizda-content {
    width: 62%;
    height: 95%;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-top {
    width: 6px;
    height: 130px;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text {
    height: 276px;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-bottom {
    width: 6px;
    height: 130px;
  }

  .urun-gruplari h2 {
    font-size: 24px;
  }

  .social-media .social-media-content {
    width: 720px;
  }

  .social-media .social-media-content .social-media-bottom {
    height: 55%;
  }

  .footer .footer-top {
    width: 780px;
  }

  .footer .footer-top .footer-column:nth-child(2) {
    width: 27%;
  }

  .footer .footer-bottom {
    width: 92%;
  }
}

@media only screen and (max-width: 800px) {
  .navbar {
    align-items: center;
    background-color: var(--main-color);
    padding: 40px;
    position: relative;
    z-index: 98;
  }

  .navbar .nav-content {
    width: 100%;
    height: 265px;
    position: unset;
    margin-left: 0;
    align-items: center;
    flex-direction: column;
    background-color: var(--main-color);
    overflow: hidden;
    margin-top: 45px;
  }

  .navbar .nav-logo a img {
    transition: all 0.6s ease;
    width: 65px;
  }

  .navbar.sticky {
    background-color: var(--main-color);
    box-shadow: none;
    position: relative;
    padding: 40px;
  }

  .navbar.sticky .nav-content li a {
    color: #fff;
    padding-block: 26px;
  }

  .navbar.sticky .nav-content li.active::after {
    opacity: 0;
  }

  .navbar .burger-menu {
    top: 34px;
    width: 27px;
    height: 18px;
  }

  .header {
    height: 620px;
  }

  .header .header-text {
    font-size: 50px;
    margin-top: 70px;
  }

  .header .header-down {
    bottom: 50px;
    display: flex;
    justify-content: center;
    align-content: center;
    height: 45px;
  }

  .header-down a img {
    width: 41px;
  }

  .slider {
    width: 100%;
    height: 872px;
  }

  .slider .slider-title {
    font-size: 35px;
  }

  .swiper {
    width: 650px;
    height: 500px;
    margin-top: 0;
  }

  .mySwiper .img-container {
    height: 300px;
  }

  .slider .mySwiper .swiper-pagination {
    margin-bottom: 25px;
  }

  .slider .slider-text {
    height: 90px;
    width: 75%;
  }

  .slider .slider-text span {
    font-size: 20px;
  }

  .slider .slider-text p {
    font-size: 13px;
  }

  .examples {
    height: 850px;
  }

  .examples .examples-imgs {
    height: 82%;
    flex-direction: column;
  }

  .examples-imgs .swiper {
    width: 100%;
    height: 697px;
  }

  .examples-imgs .swiper-wrapper {
    height: 91%;
  }

  /* .examples .examples-imgs a {
    width: 100%;
    height: 25%;
  }

  .examples .examples-imgs a > .examples-img {
    width: 100%;
    height: 100%;
  } */

  .hakkimizda {
    height: 870px;
    margin-top: 0px;
  }

  .hakkimizda .hakkimizda-content {
    width: 48%;
    height: 95%;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text {
    height: 275px;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text p {
    font-size: 24px;
  }

  .urun-gruplari {
    width: 100%;
    height: 786px;
    flex-direction: column;
  }

  .urun-gruplari .ug-sol {
    width: 100%;
    height: 50%;
    padding: 130px 0px 100px;
  }

  .urun-gruplari h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .urun-gruplari .ug-sag {
    padding: 120px 90px 90px;
    width: 100%;
    height: 50%;
  }

  .social-media {
    height: 925px;
  }

  .social-media .social-media-content {
    width: 622px;
    height: 90%;
  }

  .social-media .social-media-content .social-media-top {
    font-size: 27px;
    height: 8%;
  }

  .social-media .social-media-content .social-media-bottom {
    height: 87%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }

  .social-media .social-media-content .social-media-bottom .social-box {
    width: 58.5%;
    height: 28%;
  }

  .footer {
    height: 1050px;
  }

  .footer .footer-top {
    width: 90%;
    height: 80%;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer .footer-top .footer-column:first-of-type {
    height: 15%;
    width: 100%;
    margin-right: 0px;
    margin-left: 0;
  }

  .footer .footer-top .footer-logo img {
    width: 100px;
  }

  .footer .footer-top .footer-column:nth-child(2) {
    width: 60%;
    height: 18%;
  }

  .footer .footer-top .footer-column span {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .footer .footer-top .footer-column li a {
    font-size: 14px;
  }

  .footer .footer-top .footer-column p {
    color: #adadad;
    font-size: 14px;
    padding-block: 5px;
    line-height: 23px;
  }

  .footer .footer-top .footer-column:nth-child(3) {
    width: 42%;
    height: 23%;
  }

  .footer .footer-top .footer-column:nth-child(4) {
    width: 90%;
    height: 22%;
  }

  .footer .footer-top .footer-column p span {
    color: #fff;
    font-size: 13px;
  }

  .footer .footer-bottom {
    width: 100%;
    height: 13%;
    justify-content: center;
    align-items: center;
  }

  .footer .footer-bottom .bottom-content {
    width: 730px;
    height: 80px;
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 650px) {
  .examples {
    height: 675px;
  }

  .examples-imgs .swiper {
    width: 100%;
    height: 100%;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text {
    height: 300px;
  }
}

@media only screen and (max-width: 685px) {
  .navbar .burger-menu {
    top: 34px;
    width: 23px;
    height: 16px;
    right: 15px;
  }

  .header {
    height: 380px;
  }

  .header .header-text {
    font-size: 24px;
  }

  .swiper-button-prev.swiper-button-prev {
    margin-top: 0px;
    padding: 15px;
    margin-left: 0px;
    height: 33px;
  }

  .swiper-button-prev.swiper-button-prev:after {
    font-size: 20px !important;
  }

  .swiper-button-next.swiper-button-next {
    margin-top: 0px;
    padding: 15px;
    margin-right: 0px;
    height: 33px;
  }

  .swiper-button-next.swiper-button-next:after {
    font-size: 20px !important;
  }

  .header .header-down {
    bottom: 35px;
    height: 40px;
  }

  .header-down a img {
    width: 35px;
  }

  .slider {
    width: 100%;
    height: 702px;
  }

  .slider .slider-title {
    font-size: 26px;
  }

  .swiper {
    width: 400px;
    height: 342px;
  }

  .mySwiper .img-container {
    height: 175px;
  }

  .slider .slider-text span {
    font-size: 17px;
  }

  .examples .examples-imgs a {
    width: 100%;
    height: 25%;
  }

  .examples .examples-imgs a > .examples-img {
    width: 100%;
    height: 100%;
  }

  .hakkimizda {
    margin-top: 0px;
  }

  .hakkimizda .hakkimizda-content {
    width: 93%;
    height: 77%;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text {
    height: 137px;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text span {
    font-size: 11px;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text p {
    font-size: 20px;
  }

  .urun-gruplari {
    width: 100%;
    height: 786px;
    flex-direction: column;
  }

  .urun-gruplari .ug-sol {
    width: 100%;
    height: 50%;
    padding: 130px 0px 100px;
  }

  .urun-gruplari h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .urun-gruplari .ug-sag {
    padding: 120px 90px 90px;
    width: 100%;
    height: 50%;
  }

  .social-media {
    height: 807px;
  }

  .social-media .social-media-content {
    width: 700px;
    height: 90%;
  }

  .social-media .social-media-content .social-media-top {
    font-size: 27px;
    height: 8%;
  }

  .social-media .social-media-content .social-media-bottom {
    height: 87%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }

  .social-media .social-media-content .social-media-bottom .social-box {
    width: 58.5%;
    height: 28%;
  }

  .footer .footer-top .footer-column:first-of-type {
    height: 15%;
    width: 100%;
    margin-right: 0px;
    margin-left: 0;
  }

  .footer .footer-top .footer-logo img {
    width: 100px;
  }

  .footer .footer-top .footer-column:nth-child(2) {
    width: 67%;
    height: 18%;
  }

  .footer .footer-top .footer-column span {
    font-size: 15px;
  }

  .footer .footer-top .footer-column li a {
    font-size: 13px;
  }

  .footer .footer-top .footer-column:nth-child(3) {
    width: 42%;
    height: 22%;
  }

  .footer .footer-top .footer-column:nth-child(4) {
    width: 86%;
    height: 31%;
  }

  .footer .footer-top .footer-column span {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
  }

  .footer .footer-bottom {
    width: 100%;
    height: 13%;
    justify-content: center;
    align-items: center;
  }

  .footer .footer-bottom .bottom-content {
    width: 730px;
    height: 80px;
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 500px) {
  .examples {
    height: 860px;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text {
    height: 153px;
  }
}

@media only screen and (max-width: 400px) {
  .swiper {
    width: 330px;
    height: 300px;
  }

  .mySwiper .img-container {
    height: 160px;
  }

  .mySwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .examples {
    height: 730px;
  }

  .hakkimizda .hakkimizda-content {
    width: 93%;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text {
    height: 173px;
  }

  .urun-gruplari h2 {
    font-size: 17px;
    line-height: 25px;
  }

  .urun-gruplari .ug-sag {
    padding: 120px 70px 90px;
  }

  .social-media .social-media-content .social-media-top {
    font-size: 23px;
    height: 8%;
  }

  .footer .footer-top {
    width: 90%;
    height: 80%;
    flex-direction: column;
    margin-left: 0;
  }

  .footer .footer-top .footer-column:nth-child(2) {
    width: 77%;
    height: 18%;
  }

  .footer .footer-top .footer-column:nth-child(3) {
    width: 42%;
    height: 22%;
  }

  .footer .footer-top .footer-column:nth-child(4) {
    width: 100%;
    height: 31%;
  }
}

@media only screen and (max-width: 360px) {
  .header h1 {
    font-size: 22px;
  }

  .swiper {
    width: 315px;
    height: 300px;
  }

  .examples .examples-title {
    font-size: 32px;
  }

  .hakkimizda .hakkimizda-content {
    width: 85%;
    height: 77%;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text {
    height: 220px;
  }

  .hakkimizda .hakkimizda-content .hakkimizda-text p {
    font-size: 20px;
  }

  .urun-gruplari .ug-sag {
    padding: 120px 37px 90px;
  }

  .social-media .social-media-content {
    width: 315px;
    height: 90%;
  }

  .social-media
    .social-media-content
    .social-media-bottom
    .social-box
    .social-btn
    p {
    font-size: 13px;
  }

  .footer .footer-top .footer-column:nth-child(2) {
    width: 96%;
    height: 18%;
  }

  .footer .footer-top .footer-column:nth-child(3) {
    width: 45%;
    height: 22%;
  }

  .footer .footer-top .footer-column:nth-child(4) {
    width: 95%;
    height: 31%;
  }

  .footer .footer-bottom .bottom-content {
    width: 163px;
    height: 96px;
    text-align: center;
  }

  .footer .footer-bottom .bottom-content p {
    font-size: 15px;
  }
}

@media only screen and (max-width: 320px) {
  .slider .slider-title {
    font-size: 23px;
  }

  .swiper {
    width: 280px;
    height: 290px;
  }

  .mySwiper .img-container {
    height: 140px;
  }

  .slider .mySwiper .swiper-pagination {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 300px) {
  .swiper {
    width: 280px;
    height: 300px;
  }

  .slider .slider-text {
    height: 101px;
    width: 75%;
  }
}
