/* |||   ===   RESET CSS   ===   ||| */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
  scroll-behavior: smooth;
}
.sc-7dvmpp-1 {
  display: none !important;
}
.dfBDQI {
  display: none !important;
}

/* |||   ===   WHATSAPP BUTONU   ===   ||| */

.whatsappButton {
  position: fixed;
  color: white;
  bottom: 20px;
  right: 30px;
  z-index: 10;
  transition: 0.3s ease;
  bottom: -70px;
}
.whatsappButton:hover {
  transform: scale(1.1);
}
.whatsappButton a img {
  width: 70px;
  height: auto;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.452));
}

/* |||   ===   SCROLLBAR   ===   ||| */

::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track-piece {
  background: linear-gradient(rgb(164, 165, 163), rgb(96, 99, 95));
}
::-webkit-scrollbar-thumb {
  background: rgb(255, 255, 255);
}

/* |||   ===   sınıflar   ===   ||| */

:root {
  --primary: #0044ff;
  --primaryhover: blue;
  --secondary: rgb(185, 185, 185);
  --tertiary: white;
  --fourth: black;
  --sectionmargin: 65px;
  --boxshadow: rgba(0, 0, 0, 0.178);
  --green: #1c5435;
  --greenhover: #1d7746;

  /* fonts s */
  --font-1: 30px;
  --font-2: 24px;
  --font-3: 20px;
  --font-4: 16px;
  --font-5: 14px;
  --buttonFont: 16px;
}
::selection {
  background-color: var(--greenhover);
}
.hoverBlack,
.hoverWhite {
  transition: 0.2s;
}
.hoverBlack:hover {
  color: rgb(39, 39, 39);
}
.hoverWhite:hover {
  color: var(--secondary);
}
.title {
  font-size: var(--font-1);
  margin-bottom: 20px;
  color: var(--secondary);
  padding: 10px;
  letter-spacing: 2px;
}
section {
  width: 100%;
  position: relative;
}
.container {
  width: 80%;
  margin: auto;
  height: 100%;
  padding: 10px;
}
.d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
a {
  color: #3b3b3b;
  text-decoration: none;
}
.active {
  font-weight: 800;
  color: rgb(255, 255, 255) !important;
}

/* |||   ===   etiketler   ===   ||| */

#hizmetlerimiz {
  height: 10px;
  width: 20px;
  position: absolute;
  top: -122px;
}
#urunler {
  position: absolute;
  width: 10px;
  height: 30px;
  top: -100px;
}
#hakkimizda {
  position: absolute;
  top: -100px;
  width: 20px;
  height: 20px;
}
#iletisim {
  position: absolute;
  width: 20px;
  height: 20px;
  top: -100px;
}

/* |||   ===   TOP NAVİGASYON   ===   ||| */

nav {
  height: 100px;
  width: 100%;
  border-bottom: 1.5px solid var(--secondary);
  position: fixed;
  top: 0;
  left: 0;
  color: var(--tertiary);
  z-index: 6;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  /* background-color: rgba(0, 0, 0, 0.212); */
  background: linear-gradient(90deg, white -20%, rgba(0, 0, 0, 0.253));
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
}
/* LOGO  */
.logo {
  transition: 0.3s ease;
  cursor: default;
  position: relative;
}

/* .logo::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 70px;
  background: linear-gradient(rgb(0, 102, 255), rgb(2, 118, 153));
  border-radius: 100%;
  height: 100%;
  transition: 0.3s;
} */

/* .logo:hover::after {
  width: 100%;
  border-radius: 0;
  height: 2px;
  top: 100%;
  bottom: 0;
  top: none;
} */

/* .logo span {
  font-weight: 600;
  letter-spacing: 0;
} */

/* .logoName {
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 1.3px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.336);
} */

.logoName {
  transition: 0.3s;
  /* background-color: red; */
}

.logoName:hover {
  transform: scale(1.1);
}

.logoName img {
  width: 200px;
  height: auto;
}

/* NAV ELEMANLARI  */
.navElements {
  width: 600px;
  display: flex;
  justify-content: space-between;
}

.navElements a {
  border-right: 1px solid var(--secondary);
  flex: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.719);
  letter-spacing: 1px;
  font-size: var(--font-5);
  text-decoration: none;
  transition: 0.2s ease;
}

.dropdown {
  position: relative;
}

.dropdown-block {
  position: absolute;
  left: 20%;
  width: 50%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: var(--tertiary);
  display: none;
}

.dropdown-item {
  color: var(--secondary);
  margin: 6px;
}

.dropdown-item:hover {
  color: black;
}

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

.navElements a:last-child {
  border: none;
}

.navElements a:hover {
  color: var(--tertiary);
}

.navElements a:active {
  color: var(--green);
}
/* BURGER  */
.burgerMenu {
  display: none;
}

.burgerMenu .burger {
  width: 100%;
  height: 4px;
  background-color: var(--tertiary);
  border-radius: 2px;
}

.headerBar {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  padding: 10px;
}

/* |||   ===   SECTION - 1 - HERO   ===   ||| */

.section-1 {
  height: 700px;
  position: relative;
}

.bgFull {
  position: absolute;
  z-index: 0;
  background: linear-gradient(rgb(69, 255, 78), rgb(0, 158, 21));
  background-image: url(/img/wpson.jpg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 65% 96%, 50% 100%, 35% 96%, 0 96%);
  height: 700px;
  width: 100%;
}

.section-1 > .bgFull > .container {
  position: absolute;
  z-index: 3;
  height: max-content;
  /* margin-top: 70px; */
}

.section-1 > .bgFull > .container .textHero {
  color: var(--tertiary);
  font-size: var(--font-3);
}

.textHero p {
  font-size: var(--font-4);
}

.buttonHero {
  width: fit-content;
}

.button1 {
  background-color: var(--green);
  color: var(--tertiary);
  width: 200px;
  padding: 20px;
  border: none;
  border-radius: 7px;
  transition: 0.3s;
  font-size: var(--buttonFont);
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.432);
}

.button1:hover {
  background-color: var(--greenhover);
  cursor: pointer;
}

.imageSection-1 img {
  width: 30vw;
  float: right;
  transform: rotate(10deg);
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
  min-width: 300px;
  max-width: 400px;
}

.imageSection-1 {
  position: relative;
  bottom: 30px;
}

/* |||   ===   SECTION - 2 - HİZMETLER   ===   ||| */

.section-2 {
  margin-top: var(--sectionmargin);
}

.section-2 > .container {
  border-bottom: 2px solid rgba(0, 0, 0, 0.267);
}

.cards {
  margin-top: 50px;
  padding: 10px 0;
}

.cards > .container {
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  background: linear-gradient(-45deg, #ee7752, #00ff6a, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  width: 350px;
  height: 350px;
  box-shadow: 5px 5px 11px 0px rgba(0, 0, 0, 0.219);
  transition: 0.5s;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  margin: 10px;
  animation: gradient 10s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
      


.iconCard {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

.iconCard i {
  transition: 0.2s ease-in-out;
  color: var(--tertiary);
  font-size: 50px;
  
}

.titleCard {
  margin-bottom: 10px;
  position: relative;
}
.titleCard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: white;
  transition: 0.4s ease-in-out;
}

.textCard {
  color: var(--tertiary);
  font-size: var(--font-5);
}
.contentCard {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  height: 50%;
}

.titleCard h3 {
  color: var(--tertiary);
  font-size: 24px;
}

.card:hover {
  animation-play-state: paused;
  box-shadow: 5px 5px 11px 0px rgba(0, 0, 0, 0.521);
}

.card:hover .iconCard i {
  transform: scale(1.07);
  filter: drop-shadow(5px 5px 5px rgba(34, 34, 34, 0.336));
  opacity: 55%;
  animation-play-state: paused;
}

.card:hover .titleCard::after {
  width: 100%;
}

/* |||   ===   SECTION - 3 - ÜRÜNLER   ===   ||| */

.products {
  margin: 50px 0 0 0;
  width: 100%;
  height: 600px;
  position: relative;
  background-color: rgb(241, 241, 241);
  padding: 60px 0;
}

.products .container {
  height: 100%;
  background-color: var(--tertiary);
  position: relative;
  padding: 10px 0;
  /* overflow: hidden; */
}

.products .container::after,
.products .container::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100px;
  background: linear-gradient(
    90deg,
    rgb(241, 241, 241) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(1px);
}

.products .container::before {
  right: -1px;
  left: unset;
  transform: rotate(180deg);
}

.products .titleProduct {
  text-align: center;
  font-size: var(--font-1);
}

.owl-carousel {
  height: 250px;
  /* background-color: red; */
}

.products .owl-carousel:nth-child(1) {
  background-color: green;
}

.owl-nav button {
  width: 30px;
}

.owl-nav span {
  font-size: var(--font-4);
}

.products .item {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /* background-color: red; */
}

.overlay {
  /* background-color: red; */
  color: var(--green);
}

.item img {
  height: auto;
  max-width: 40%;
}

/* |||   ===   MAĞAZAYA GİT   ===   ||| */

.shopBar {
  background-color: rgb(241, 241, 241);
  margin-bottom: var(--sectionmargin);
  /* height: 300px; */
  display: flex;
  align-items: center;
}

.shopBar .container {
  display: flex;
  align-items: center;
  height: 150px;
  justify-content: space-around;
  width: 1000px;
  font-size: var(--font-3);
  background-color: white;
  border-radius: 20px 20px 0 0;
}

.buttonColorful {
  width: 300px;
  background: linear-gradient(-45deg, #00ff6a, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.buttonColorful:hover {
  transform: scale(1.03);
}

.buttonColorful i {
  position: absolute;
  right: 20px;
}

.shopBar .textBar {
  color: rgb(110, 110, 110);
}

/* |||   ===   SECTION - 4 - HAKKIMIZDA   ===   ||| */

.section-4 {
  position: relative;
  height: 700px;
  /* margin-top: 100px; */
  background-image: url(/img/wpson.jpg);
  background-attachment: fixed;
  background-size: cover;
}

.titleAbout {
  color: var(--tertiary);
  margin-bottom: 40px;
}

.section-4 .container .contentAbout {
  display: flex;
  justify-content: space-between;
  height: 450px;
}

.content-1-about {
  width: 40%;
}

.content-2-about {
  width: 55%;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.568);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--tertiary);
}

.titleContentAbout {
  font-size: var(--font-1);
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.textContentAbout {
  font-size: var(--font-4);
}

.imageContentAbout {
  width: 100%;
  height: 100%;
  background-color: var(--tertiary);
  border-radius: 35px;
  overflow: hidden;
}

.imageAbout {
  width: 100%;
  height: 100%;
  background-image: url(/img/pasifik.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s ease-in;
  filter: saturate(2);
}

@media only screen and (max-width: 1540px) {
  .imageAbout {
    background-position: -90px;
  }
}
.imageContentAbout:hover .imageAbout {
  transform: scale(1.3);
  filter: saturate(5);
  transition: 3s ease-out;
}

/* |||   ===   SECTION - 5 - İLETİŞİM   ===   ||| */

.section-5 {
  height: max-content;
  padding: 50px 0;
}

.section-5 .container {
  display: flex;
  align-items: center;
}

.section-5 .container .contact {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  padding: 10px;
}

.section-5 .contentContact {
  width: 45%;
  padding: 0 5px;
  display: flex;
}

.section-5 .textContact {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.section-5 .textContact .iconsContact {
  height: 100%;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: var(--font-3);
}

.cardContact a:hover {
  color: var(--greenhover);
  text-decoration: underline;
}

.cardContact:nth-last-child(2) a:hover {
  color: var(--secondary);
  text-decoration: none;
}

.section-5 .iconsContact i {
  font-size: 25px;
  width: 30px;
  margin-right: 15px;
  color: var(--green);
}

.cardContact a i:hover {
  color: var(--greenhover);
}

.section-5 .googleMap {
  height: 100%;
  width: 55%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.411);
}

.section-5 .googleMap iframe {
  width: 100%;
  height: 500px;
}

/* |||   ===   SECTION - 6 - HARİTA   ===   ||| */

.section-6 {
  background-color: rgba(0, 0, 0, 1);
  margin-top: var(--sectionmargin);
  color: var(--tertiary);
  height: 62vh;
  background-image: url(/img/wmap4.svg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 130%;
  background-position: center;
}

.worldMapsvg {
  height: 100%;
}

.section-6 .container h2 {
  text-align: center;
  font-size: 50px;
  padding: 30px;
  font-weight: 200;
  width: 100%;
}

.section-6 .container h2::selection {
  background-color: var(--green);
}

/* |||   ===   FOOTER   ===   ||| */

footer {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 1);
  padding: 20px 0;
}

footer .container {
  padding: 10px;
}

.tab,
.tab1,
.tab2,
.tab2 a {
  color: var(--tertiary);
}

.tab1 {
  border-bottom: 1px solid var(--tertiary);
  padding: 30px 0;
}

/* .tab .logoFooter p {
  font-size: calc(var(--font-1) + 15px);
  letter-spacing: 2px;
  font-weight: 300;
}

.tab .logoFooter span {
  font-weight: 700;
  letter-spacing: 0;
} */

.tab .logoFooter {
  position: relative;
  border-bottom: 1px solid var(--tertiary);
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.pasifikLogo img {
  width: 350px;
}

.tab .contactFooter {
  font-size: var(--font-5);
}

.tab .contactFooter p {
  width: 75%;
  line-height: 25px;
}

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

.linksFooter {
  display: flex;
  width: 40%;
  justify-content: space-between;
}

.socialFooter {
  display: flex;
  border: 0;
  font-size: var(--font-1);
  width: 150px;
  justify-content: space-around;
}

.iconSocial a {
  color: var(--tertiary);
}

.iconSocial:nth-child(1) a:hover {
  color: var(--primary);
}

.iconSocial:nth-child(2) a:hover {
  /* color: rgb(132, 0, 255); */
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.iconSocial:nth-child(3) a:hover {
  color: var(--primary);
}

.iconSocial:nth-child(4) a:hover {
  color: #02da5c;
}

.copyFooter h3 {
  font-weight: 200 !important;
}

/* |||   ===   TABLET   ===   ||| */

@media only screen and (max-width: 1050px) {
  :root {
    /* fonts s */
    --font-1: 20px;
    --font-2: 16px;
    --font-3: 14px;
    --font-4: 14px;
    --font-5: 13px;
    --buttonFont: 16px;
  }
  .container {
    width: 95%;
  }

  /* TOP NAVIGATION */

  nav {
    height: 70px;
    overflow: hidden;
    transition: 0.3s;
    background: linear-gradient(180deg, white -20%, rgba(0, 0, 0, 0.253));
  }

  .logoName:hover {
    transform: scale(1.1);
  }

  .logoName img {
    width: 100px;
  }

  .h-200 {
    height: 230px;
  }

  .show {
    display: flex;
  }

  .burgerMenu {
    height: 20px;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
  }

  .headerBar {
    flex-direction: column;
    position: relative;
    /* border: 3px solid red; */
  }

  .navElements {
    position: absolute;
    top: 75px;
    transition: 0.6s;
    flex-direction: column;
    /* margin-top: 20px; */
    margin-bottom: 10px;
    /* border: 2px solid red; */
    width: 100%;
    display: none;
  }

  .dropdown {
    display: none;
  }

  .navElements a {
    border: 0;
    transition: 0.5s;
  }

  .show {
    display: flex;
  }

  /* SECTION-1 */

  .section-1 > .bgFull > .container .textHero {
    font-size: var(--h1-second);
  }

  /* SECTION-3-ÜRÜNLER */

  .products {
    height: 600px;
  }

  /* SECTION-5-İLETİŞİM  */

  .section-5 .container .contact {
    flex-direction: column;
    justify-content: space-around;
  }

  .section-5 .contentContact {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .iconsContact a {
    font-size: var(--font-4);
  }

  .section-5 .textContact .iconsContact {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 20px;
    height: 200px;
  }

  .section-5 .googleMap {
    width: 100%;
    height: 300px;
  }

  .section-5 .googleMap iframe {
    height: 300px;
  }

  .lineContact {
    width: 60%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.514);
    margin: 30px 0;
    border-radius: 50%;
  }

  /* SECTION-4-HAKKIMIZDA  */

  .section-4 {
    height: 800px;
    background-size: auto 100%;
    background-attachment: scroll;
  }

  .section-4 .container .contentAbout {
    flex-direction: column;
    height: 85%;
    justify-content: space-around;
    /* border: 2px solid red; */
  }

  .content-1-about,
  .content-2-about {
    width: 60%;
  }

  .imageContentAbout {
    height: 200px;
  }

  .imageAbout {
    background-position: center;
  }

  /* SECTION-6-HARİTA */

  .section-6 .container h2 {
    font-size: 2em;
    padding: 30px;
    font-weight: 200;
    width: 100%;
  }

  /* FOOTER */

  footer {
    height: 100%;
  }
}

@media only screen and (max-width: 870px) {
  #hizmetlerimiz {
    top: -60px;
  }

  #urunler {
    top: 0px;
  }

  .navElements .nav-item {
    margin: 3px 0;
  }

  .bgFull {
    /* -webkit-background-size: cover; */
    background-size: auto 100%;
    background-attachment: scroll;
    height: 650px;
  }

  .section-1 > .bgFull > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: 2px solid red; */
  }

  .imageSection-1 {
    display: none;
  }

  .section-4 .container {
    width: 100%;
  }

  .content-1-about,
  .content-2-about {
    width: 100%;
    margin: 10px 0;
  }

  .products .container::after,
  .products .container::before {
    width: 60px;
  }
  
  .shopBar {
    background-color: rgb(241, 241, 241);
    margin-bottom: none;
    /* height: 300px; */
    display: flex;
    align-items: center;
  }

  .shopBar .container {
    flex-direction: column;
    align-items: center;
    height: 180px;
    justify-content: space-evenly;
    border-radius: 25px 25px 0 0;
  }

  .textBar {
    padding: 0 20px;
    text-align: center;
  }

  .buttonColorful {
    width: 270px;
  }

  .item img {
    height: auto;
    max-width: 150px;
  }

  .section-6 .container {
    width: 100%;
  }
  .section-6 {
    background-attachment: scroll;
  }

  /* === FOOTER ===  */

  footer .container {
    flex-direction: column;
  }
  footer .tab {
    width: 100%;
    height: 100%;
  }
  .pasifikLogo img {
    width: 250px;
  }
  .tab2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 200px;
  }
  .tab .contactFooter p {
    width: 100%;
    line-height: 25px;
  }
  .linksFooter {
    width: 80%;
    flex-wrap: wrap;
    padding: 4px;
  }
  .link-footer {
    margin: 4px 3px;
    flex-grow: 1;
    min-width: 50%;
  }

  .whatsappButton {
    bottom: 5px;
    right: 10px;
    z-index: 10;
  }
  .whatsappButton a img {
    width: 50px;
  }
}
