body,
html {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

body {
  padding-top: 110px;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 90px;
  }
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.hidden {
  visibility: hidden;
}

.swal2-container {
  z-index: 99999999;
}

nav {
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background-color: #fff;
}
nav .container {
  display: flex;
  align-items: center;
}
nav .container .navopenbtn {
  display: none;
}
@media screen and (max-width: 768px) {
  nav .container {
    justify-content: center;
  }
  nav .container .navopenbtn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  nav .container .navlogo {
    margin-right: auto;
  }
}
nav .container .navlogo img {
  height: 70px;
}
@media screen and (max-width: 768px) {
  nav .container .navlogo img {
    height: 50px;
  }
}
nav .container .navul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: auto;
}
nav .container .navul .navclosebtn {
  display: none;
}
@media screen and (max-width: 768px) {
  nav .container .navul {
    position: fixed;
    right: -150%;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    z-index: 99;
    align-items: flex-end;
    transition: 0.3s ease;
  }
  nav .container .navul.active {
    right: 0;
  }
  nav .container .navul .navclosebtn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-top: 25px;
  }
}
nav .container .navul li a {
  display: inline-block;
  margin: 0 5px;
  text-decoration: none;
  color: #2C3E50;
  font-weight: 500;
  padding: 5px 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  nav .container .navul li a {
    font-size: 20px;
  }
}
nav .container .navul li a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #2C3E50;
  bottom: 0;
  transition: 0.3s ease;
}
nav .container .navul li a:hover::before {
  width: 100%;
}
nav .container .navbtns {
  display: flex;
  align-items: center;
}
nav .container .navbtns a {
  position: relative;
  margin-left: 20px;
  text-decoration: none;
}
nav .container .navbtns a img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .container .navbtns a.cartbtn .cartcounter {
  position: absolute;
  background-color: #c80005;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  top: -5px;
  right: -5px;
  pointer-events: none;
}

#mainsec {
  width: 100%;
  height: 80vh;
  background: #0077B6;
  background: linear-gradient(45deg, #0077B6 0%, #90E0EF 100%);
  border-radius: 0 0 80px 80px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #mainsec {
    border-radius: 0 0 40px 40px;
  }
}
#mainsec #particles-js {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#mainsec .swiper {
  width: 100%;
  height: 100%;
}
#mainsec .swiper .mainsec-swiper-button-prev,
#mainsec .swiper .mainsec-swiper-button-next {
  color: #fff;
}
#mainsec .swiper .swiper-slide {
  padding: 50px 0;
}
#mainsec .swiper .swiper-slide .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
#mainsec .swiper .swiper-slide .container .mainsectitle {
  color: #fff;
  font-weight: 900;
  font-size: 50px;
  width: 600px;
  text-align: center;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #mainsec .swiper .swiper-slide .container .mainsectitle {
    font-size: 20px;
  }
}
#mainsec .swiper .swiper-slide .container .row {
  width: 100%;
}
#mainsec .swiper .swiper-slide .container .row .swiperimg {
  width: 100%;
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  animation-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  #mainsec .swiper .swiper-slide .container .row .swiperimg {
    margin: 20px 0;
    max-height: 200px;
  }
}
#mainsec .swiper .swiper-slide .container .row .mainsecslidertext {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  animation-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  #mainsec .swiper .swiper-slide .container .row .mainsecslidertext {
    font-size: 13px;
    text-align: center;
  }
}
#mainsec .swiper .swiper-slide .container .row .mainsecsliderbtns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
#mainsec .swiper .swiper-slide .container .row .mainsecsliderbtns > * {
  width: calc(50% - 10px);
  min-width: -moz-max-content;
  min-width: max-content;
  text-align: center;
  padding: 5px;
  border-radius: 50px;
  font-weight: 300;
  font-size: 18px;
  box-shadow: 10px 10px 85px -47px rgba(0, 0, 0, 0.24);
}
#mainsec .swiper .swiper-slide .container .row .mainsecsliderbtns .addtocartbtn {
  background-color: #48C774;
  color: #fff;
  border: none;
  outline: none;
  animation-delay: 1s;
}
#mainsec .swiper .swiper-slide .container .row .mainsecsliderbtns .detailbtn {
  background-color: #fff;
  color: #0077B6;
  border: none;
  outline: none;
  text-decoration: none;
  animation-delay: 1.4s;
}

#arasection {
  padding: 50px 0;
}
#arasection .container .row > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #arasection .container .row > div {
    margin: 20px 0;
  }
}
#arasection .container .row > div:nth-child(2) {
  animation-delay: 0.3s;
}
#arasection .container .row > div:nth-child(3) {
  animation-delay: 0.6s;
}
#arasection .container img {
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #arasection .container img {
    width: 70px;
    height: 70px;
  }
}
#arasection .container .arasectitle {
  font-size: 24px;
  color: #0077B6;
}
@media screen and (max-width: 768px) {
  #arasection .container .arasectitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #arasection .container p {
    font-size: 14px;
  }
}

#homeurunler {
  padding: 50px 0;
}
#homeurunler .container .sechead {
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  color: #0077B6;
}
@media screen and (max-width: 768px) {
  #homeurunler .container .sechead {
    font-size: 30px;
  }
}
#homeurunler .container .row .uruncard {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 50px;
  width: 100%;
  margin: 20px 0;
  animation-duration: 1s;
}
#homeurunler .container .row .uruncard.uruncard1, #homeurunler .container .row .uruncard.uruncard3 {
  animation-delay: 0.3s;
}
#homeurunler .container .row .uruncard img {
  height: 200px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  #homeurunler .container .row .uruncard img {
    height: 150px;
  }
}
#homeurunler .container .row .uruncard .productname {
  text-align: center;
  font-size: 25px;
  font-weight: 900;
  margin: 20px;
  color: #2C3E50;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  #homeurunler .container .row .uruncard .productname {
    font-size: 20px;
  }
}
#homeurunler .container .row .uruncard a {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #0077B6;
  color: #0077B6;
  text-decoration: none;
}
#homeurunler .container .row .uruncard.uruncardbigger img {
  height: 300px;
}
@media screen and (max-width: 768px) {
  #homeurunler .container .row .uruncard.uruncardbigger img {
    height: 150px;
  }
}

#productshowcase1 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  #productshowcase1 {
    padding: 30px 0;
  }
}
#productshowcase1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 90px);
  background: #303030;
  background: linear-gradient(90deg, #303030 0%, #000 100%);
}
@media screen and (max-width: 768px) {
  #productshowcase1::before {
    height: 100%;
  }
}
#productshowcase1 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #productshowcase1 .container {
    flex-direction: column;
  }
}
#productshowcase1 .container .imgholder {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #productshowcase1 .container .imgholder {
    height: 200px;
    margin-top: 20px;
  }
}
#productshowcase1 .container .imgholder img {
  height: 100%;
}
#productshowcase1 .container .imgholder a {
  position: absolute;
  bottom: 29.5%;
  left: 28%;
  background-color: #48C774;
  width: 6%;
  height: 5%;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
#productshowcase1 .container .imgholder a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #48C774;
  border-radius: 50%;
  position: absolute;
  animation-name: prodbtn1;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  pointer-events: none;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@keyframes prodbtn1 {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
#productshowcase1 .container .imgholder a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #48C774;
  border-radius: 50%;
  position: absolute;
  animation-name: prodbtn1;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-delay: 1s;
  pointer-events: none;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@keyframes prodbtn1 {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
#productshowcase1 .container .content {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #productshowcase1 .container .content {
    width: 100%;
  }
}
#productshowcase1 .container .content .prodname {
  color: #48C774;
  font-weight: 900;
  font-size: 80px;
}
@media screen and (max-width: 768px) {
  #productshowcase1 .container .content .prodname {
    font-size: 25px;
    text-align: center;
  }
}
#productshowcase1 .container .content .prodtext {
  color: #fff;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  #productshowcase1 .container .content .prodtext {
    font-size: 20px;
    text-align: center;
  }
}

#cescountersec {
  padding: 50px 0;
  padding-top: 0;
  width: 100%;
}
#cescountersec .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cescountersec .container .row {
  width: 100%;
}
#cescountersec .container .countbox {
  border: 1px solid #48C774;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  #cescountersec .container .countbox {
    -webkit-backdrop-filter: blur(0px) !important;
            backdrop-filter: blur(0px) !important;
    background-color: white;
    margin: 10px 0;
  }
}
#cescountersec .container .countbox .count {
  text-align: center;
  font-size: 65px;
  font-weight: 900;
  color: #48C774;
}
@media screen and (max-width: 768px) {
  #cescountersec .container .countbox .count {
    font-size: 30px;
  }
}
#cescountersec .container .countbox p {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #cescountersec .container .countbox p {
    margin-bottom: 0;
  }
}

.features-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 100px 0 50px 0;
  justify-content: center;
  background-image: url("../img/brainbg.webp");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  .features-section {
    padding: 50px 0;
  }
}
.features-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.features-section .container .feature-card {
  width: calc(50% - 20px);
  margin: 20px 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .features-section .container .feature-card {
    width: 100%;
    background-color: white;
  }
}
.features-section .container .feature-card:hover {
  transform: translateY(-10px);
}
.features-section .container .feature-card .icon {
  font-size: 55px;
  color: #48C774;
  margin-bottom: 10px;
}
.features-section .container .feature-card .icon i {
  display: inline-block;
}
.features-section .container .feature-card h3 {
  font-size: 18px;
  color: #2C3E50;
  margin: 10px 0;
  font-weight: bold;
}
.features-section .container .feature-card p {
  font-size: 14px;
  color: #2C3E50;
  line-height: 1.6;
}

#blogsec {
  padding: 50px 0;
}
#blogsec .container .sechead {
  text-align: center;
  font-size: 45px;
  color: #0077B6;
  font-weight: 900;
}
#blogsec .container .blogswiper {
  width: 100%;
  padding: 50px 0;
}
#blogsec .container .blogswiper .swiper-slide {
  width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #blogsec .container .blogswiper .swiper-slide {
    width: 100%;
  }
}
#blogsec .container .blogswiper .swiper-slide .swiper-slide-shadow-right,
#blogsec .container .blogswiper .swiper-slide .swiper-slide-shadow-left {
  border-radius: 30px;
}

.categorypagecard {
  text-decoration: none;
  background-color: #f1f1f1;
  border-radius: 30px;
  padding: 25px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}
.categorypagecard.innerpage {
  margin: 20px 0;
}
.categorypagecard:hover {
  transform: translateY(-10px);
}
.categorypagecard .blogtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #0077B6;
}
.categorypagecard img {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 10px 0;
}
.categorypagecard p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
  margin-top: 10px;
  color: #222;
}

#meridyensec {
  padding: 50px 0;
  position: relative;
  width: 100 #meridyensec;
  height: auto;
}
#meridyensec .container {
  position: relative;
  z-index: 2;
}
#meridyensec .container .meridyentitle {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  color: #0077B6;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #meridyensec .container .meridyentitle {
    font-size: 25px;
  }
}
#meridyensec .container .meridyenseccont {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #meridyensec .container .meridyenseccont {
    margin: 25px 0;
  }
}
#meridyensec .container .meridyenseccont p {
  text-align: center;
}
#meridyensec .container .meridyenseccont a {
  text-decoration: none;
  color: #0077B6;
  font-weight: 700;
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #f1f1f1;
  margin: 0 5px;
}
#meridyensec .container .meridyenseccont button {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #0077B6;
  border: none;
  outline: none;
  margin: 0 5px;
}

.promo-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
.promo-section .row > div {
  margin: 20px 0;
}
.promo-section .promo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.promo-section .promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.promo-section .promo-item .promo-icon {
  font-size: 50px;
  color: #0077B6;
  margin-bottom: 15px;
}
.promo-section .promo-item .promo-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}
.promo-section .promo-item .promo-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

footer {
  padding: 50px 0 0 0;
  background-color: #f1f1f1;
}
@media screen and (max-width: 768px) {
  footer .container .row > div {
    margin: 20px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
footer .footerlogo img {
  width: 140px;
}
footer .footerul {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  footer .footerul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
footer .footerul li a {
  color: #2C3E50;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  footer .footerul li a {
    text-align: center;
  }
}
footer .footercontact {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footercontact li > * {
  text-decoration: none;
  color: #2C3E50;
  display: flex;
  align-items: center;
}
footer .footercontact li > * i {
  font-size: 25px;
  color: #48C774;
  margin-right: 10px;
}
footer .footerbottom {
  padding: 10px;
  margin-top: 20px;
  background-color: #fff;
}
footer .footerbottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .footerbottom .container {
    flex-direction: column;
  }
}
footer .footerbottom .container span {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  footer .footerbottom .container span {
    margin-bottom: 15px;
  }
}
footer .footerbottom .container span a {
  color: #48C774;
}

#pageheader {
  padding: 75px 0;
  background: #0077B6;
  background: linear-gradient(45deg, #0077B6 0%, #90E0EF 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
#pageheader.innerpageheader {
  padding: 150px 0;
}
#pageheader.innerpageheader::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
#pageheader.innerpageheader.nobg::before {
  display: none;
}
#pageheader .container {
  position: relative;
}
#pageheader .container .pagetitle {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #pageheader .container .pagetitle {
    font-size: 25px;
  }
}
#pageheader .container .breadcrumbs {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
#pageheader .container .breadcrumbs li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  margin: 0 10px 0 5px;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #pageheader .container .breadcrumbs li a {
    font-size: 12px;
  }
}
#pageheader .container .breadcrumbs li a::before {
  content: "/";
  position: absolute;
  right: -10px;
}
#pageheader .container .breadcrumbs li:first-child a {
  margin-left: 0;
}
#pageheader .container .breadcrumbs li span {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  #pageheader .container .breadcrumbs li span {
    font-size: 12px;
  }
}

#aboutpage {
  padding: 75px 0;
}
#aboutpage .container .aboutustitle {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
#aboutpage .container .vizyon {
  margin: 50px 0;
}
#aboutpage .container .vizyon .vizyoncard {
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: #f3f3f3;
  border: 1px solid #0077B6;
  height: 100%;
  border-radius: 30px;
  transition: 0.3s ease;
}
#aboutpage .container .vizyon .vizyoncard:hover {
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
#aboutpage .container .vizyon .vizyoncard .vizyontitle {
  color: #0077B6;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}

#products {
  padding: 50px 0;
}
#products .container .productstitle {
  font-size: 50px;
  font-weight: 700;
  color: #0077B6;
  margin-bottom: 15px;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  #products .container .productstitle {
    font-size: 30px;
  }
}
#products .container .productcard {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 15px 0;
}
#products .container .productcard .productimg {
  width: 100%;
  height: 300px;
}
#products .container .productcard .productimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#products .container .productcard .productname {
  color: #2C3E50;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
}
#products .container .productcard .productcardbottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
#products .container .productcard .productcardbottom .productprices {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 75px;
}
#products .container .productcard .productcardbottom .productprices .productoldprice {
  margin-right: 5px;
  color: #c80005;
  text-decoration: line-through;
  font-size: 15px;
}
#products .container .productcard .productcardbottom .productprices .productprice {
  color: #48C774;
  font-weight: 600;
  font-size: 18px;
}
#products .container .productcard .productcardbottom .productcardcart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 75px;
}
#products .container .productcard .productcardbottom .productcardcart .quantity {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#products .container .productcard .productcardbottom .productcardcart .quantity button {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  outline: none;
  background-color: #48C774;
  color: #fff;
  font-weight: 700;
  padding-bottom: 2px;
}
#products .container .productcard .productcardbottom .productcardcart .quantity button.minus {
  padding-bottom: 4px;
}
#products .container .productcard .productcardbottom .productcardcart .quantity input {
  width: 40px;
  height: 25px;
  display: flex;
  align-items: center;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
}
#products .container .productcard .productcardbottom .productcardcart .addtocartbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #48C774;
  color: #fff;
  font-size: 15px;
  padding: 5px 15px;
  border-radius: 10px;
}

#productpage {
  padding: 50px 0;
}
#productpage .container .productimgswiper {
  margin-bottom: 25px;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
}
#productpage .container .productimgswiper .swiper-slide {
  padding: 25px;
}
#productpage .container .productimgswiper .swiper-slide img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  #productpage .container .productimgswiper .swiper-slide img {
    height: 300px;
  }
}
#productpage .container .productimgthumbswiper .swiper-slide {
  border: 1px solid #ccc;
  border-radius: 15px;
  overflow: hidden;
  padding: 10px;
  transition: 0.3s ease;
  cursor: pointer;
}
#productpage .container .productimgthumbswiper .swiper-slide.swiper-slide-thumb-active {
  background-color: #f1f1f1;
  border-color: #48C774;
}
#productpage .container .productimgthumbswiper .swiper-slide img {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  #productpage .container .productpagetop {
    margin-top: 25px;
    margin-bottom: 50px;
  }
}
#productpage .container .productpagetop .urunkodu {
  margin-bottom: 10px;
}
#productpage .container .productpagetop .productprices {
  margin-bottom: 25px;
}
#productpage .container .productpagetop .productprices .productoldprice {
  color: #c80005;
  text-decoration: line-through;
  font-size: 20px;
}
#productpage .container .productpagetop .productprices .productprice {
  color: #48C774;
  font-size: 30px;
  font-weight: 700;
}
#productpage .container .productpagetop .productcp {
  font-weight: 600;
  margin-bottom: 5px;
}
#productpage .container .productpagetop p {
  font-size: 15px;
  text-align: justify;
}
#productpage .container .productpagetop .quantity {
  display: flex;
  align-items: center;
}
#productpage .container .productpagetop .quantity input {
  width: 70px;
  height: 50px;
  text-align: center;
  border: none;
  outline: none;
  pointer-events: none;
}
#productpage .container .productpagetop .quantity .minus,
#productpage .container .productpagetop .quantity .plus {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  font-size: 30px;
  font-weight: 100;
  border-radius: 10px;
}
#productpage .container .productpagetop .quantity .minus.minus,
#productpage .container .productpagetop .quantity .plus.minus {
  padding-bottom: 7px;
}
#productpage .container .productpagetop .quantity .addtocartbtn {
  background-color: #48C774;
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 10px;
  height: 50px;
  margin-left: 20px;
}
#productpage .container .productpageside .productpagesidetitle {
  font-weight: 600;
  text-align: center;
}
#productpage .container .productpageside .productpagesideproducts {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
#productpage .container .productpageside .productpagesideproducts .product {
  display: flex;
  padding: 10px 0;
  position: relative;
  align-items: center;
  justify-content: center;
}
#productpage .container .productpageside .productpagesideproducts .product::before {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #e0e0e0;
  position: absolute;
  bottom: 0;
}
#productpage .container .productpageside .productpagesideproducts .product:last-child::before {
  display: none;
}
#productpage .container .productpageside .productpagesideproducts .product .productsideimg {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 15px;
  flex-shrink: 0;
}
#productpage .container .productpageside .productpagesideproducts .product .productsideimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#productpage .container .productpageside .productpagesideproducts .product .productright {
  width: 100%;
  padding: 10px;
}
#productpage .container .productpageside .productpagesideproducts .product .productright .productsidename {
  color: #2C3E50;
  text-decoration: none;
  font-size: 15px;
  line-height: 19px;
  display: flex;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#productpage .container .productpageside .productpagesideproducts .product .productright .productsideprices {
  margin-top: 5px;
}
#productpage .container .productpageside .productpagesideproducts .product .productright .productsideprices .productoldprice {
  color: #c80005;
  text-decoration: line-through;
  font-size: 13px;
}
#productpage .container .productpageside .productpagesideproducts .product .productright .productsideprices .productprice {
  color: #48C774;
  font-size: 15px;
  font-weight: 600;
}
#productpage .productpagedetails {
  margin-top: 100px;
}
#productpage .productpagedetails .detailtabbtns {
  border-bottom: 2px solid #48C774;
}
#productpage .productpagedetails .detailtabbtns .container {
  display: flex;
  align-items: flex-end;
}
#productpage .productpagedetails .detailtabbtns .container .detailtabbtn {
  padding: 10px 20px;
  border: none;
  outline: none;
  background-color: #f1f1f1;
  border-radius: 10px;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #2C3E50;
  transition: 0.3s ease;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
@media screen and (max-width: 768px) {
  #productpage .productpagedetails .detailtabbtns .container .detailtabbtn {
    padding: 10px 10px;
    font-weight: 500;
    font-size: 14px;
  }
}
#productpage .productpagedetails .detailtabbtns .container .detailtabbtn.active {
  background-color: #48C774;
  color: #fff;
}
#productpage .productpagedetails .detailtabs .detailtab {
  display: none;
  padding: 30px 0;
}
#productpage .productpagedetails .detailtabs .detailtab.active {
  display: flex;
}

#cartpage {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #cartpage {
    padding: 50px 0;
  }
}
#cartpage .cartsummary1 {
  display: none;
}
#cartpage .cartsummary1.active {
  display: block;
}
#cartpage .cartsummary2 {
  display: none;
}
#cartpage .cartsummary2.active {
  display: block;
}
#cartpage .cartsummarybackbtn {
  background-color: #0077B6;
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #cartpage .cartsummarybackbtn {
    padding: 10px 10px;
  }
}
#cartpage .sechead {
  font-size: 40px;
  font-weight: 700;
  color: #0077B6;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #cartpage .sechead {
    font-size: 30px;
  }
}
#cartpage .cartproduct {
  display: flex;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  margin-bottom: 25px;
}
#cartpage .cartproduct .productimg {
  display: flex;
  width: 200px;
  height: 200px;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #cartpage .cartproduct .productimg {
    width: 100px;
    height: 100px;
  }
}
#cartpage .cartproduct .productimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#cartpage .cartproduct .productcardright {
  width: 100%;
  padding: 20px;
}
#cartpage .cartproduct .productcardright .productcardtop {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
  justify-content: space-between;
}
#cartpage .cartproduct .productcardright .productcardtop .productname {
  color: #2C3E50;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  #cartpage .cartproduct .productcardright .productcardtop .productname {
    font-size: 13px;
    font-weight: 600;
  }
}
#cartpage .cartproduct .productcardright .productcardtop .productname:hover {
  color: #0077B6;
}
#cartpage .cartproduct .productcardright .productcardtop .productcartremove {
  color: #c80005;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
#cartpage .cartproduct .productcardright .productcardtop .productcartremove:hover {
  color: #920002;
}
#cartpage .cartproduct .productcardright .productprices {
  margin-top: 5px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
#cartpage .cartproduct .productcardright .productprices .productoldprice {
  color: #c80005;
  text-decoration: line-through;
  font-size: 16px;
}
#cartpage .cartproduct .productcardright .productprices .productprice {
  color: #48C774;
  font-size: 22px;
  font-weight: 600;
}
#cartpage .cartproduct .productcardright .quantitycartpage {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}
#cartpage .cartproduct .productcardright .quantitycartpage input {
  width: 40px;
  height: 30px;
  text-align: center;
  border: none;
  outline: none;
  pointer-events: none;
}
#cartpage .cartproduct .productcardright .quantitycartpage .minuscart,
#cartpage .cartproduct .productcardright .quantitycartpage .pluscart {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 100;
  border-radius: 10px;
}
#cartpage .cartproduct .productcardright .quantitycartpage .minuscart.minuscart,
#cartpage .cartproduct .productcardright .quantitycartpage .pluscart.minuscart {
  padding-bottom: 3px;
}
#cartpage .cartproduct .productcardright .quantitycartpage .addtocartbtn {
  background-color: #48C774;
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 10px;
  height: 50px;
  margin-left: 20px;
}

.cartsummary {
  padding: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
}
.cartsummary .cartsummarytitle {
  font-size: 25px;
  font-weight: 700;
  color: #0077B6;
  margin-bottom: 15px;
  text-align: center;
  margin-bottom: 35px;
}
.cartsummary .cartsummaryprice {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
}
.cartsummary .cartsummaryprice.cartsummarypricetotal {
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
.cartsummary .cartsummarybtn {
  margin-top: 20px;
  background-color: #0077B6;
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 10px;
  width: 100%;
}

.orderdetails .orderdetailstop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.orderdetails .orderdetailstop .orderdetailstitle {
  font-size: 25px;
  font-weight: 700;
  color: #0077B6;
}
@media screen and (max-width: 768px) {
  .orderdetails .orderdetailstop .orderdetailstitle {
    font-size: 20px;
  }
}
.orderdetails .orderdetailsinputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 20px;
}
.orderdetails .orderdetailsinputs .orderdetailsinput {
  margin-bottom: 10px;
}
.orderdetails .orderdetailsinputs .orderdetailsinput input,
.orderdetails .orderdetailsinputs .orderdetailsinput textarea,
.orderdetails .orderdetailsinputs .orderdetailsinput select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  margin-bottom: 10px;
}
.orderdetails .orderdetailsinputs .orderdetailsinput label {
  font-size: 15px;
}
.orderdetails .orderdetailsinputs .paymentmethod {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.orderdetails .orderdetailsinputs .paymentmethod .paymentmethodtitle {
  font-size: 15px;
}
.orderdetails .orderdetailsinputs .paymentmethod .paymentmethodoption {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
  margin-top: 10px;
}
.orderdetails .orderdetailsinputs .paymentmethod .paymentmethodoption label {
  margin-left: 10px;
  font-size: 15px;
}

.completeorderbtn {
  background-color: #48C774;
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 10px;
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .completeorderbtn.completeorderbtn2 {
    display: none;
  }
}

.contactform {
  padding: 100px 0;
}
.contactform input,
.contactform textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin: 15px 0;
  outline: none;
  box-shadow: none;
}
.contactform button {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border: none;
  outline: none;
  background-color: #0077B6;
  color: #fff;
}

#videologin {
  width: 100%;
  height: 100vh;
  background: #0077B6;
  background: linear-gradient(45deg, #0077B6 0%, #90E0EF 100%);
  display: flex;
}
#videologin .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#videologin .container .loginbox {
  width: 500px;
  max-width: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#videologin .container .loginbox .loginlogo img {
  width: 200px;
}
#videologin .container .loginbox input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 75px;
  outline: none;
}
#videologin .container .loginbox button {
  width: 100%;
  padding: 10px;
  background-color: #0077B6;
  border-radius: 10px;
  border: none;
  outline: none;
  box-shadow: none;
  margin-top: 15px;
  color: #fff;
}

.videopage video {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background-color: #222;
}

@media screen and (max-width: 768px) {
  .videopage video {
    height: 500px;
  }
}
.videosidebar {
  max-height: 620px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 5px;
}

.videopagebody {
  background-color: #222;
}

.videopage {
  padding: 30px 100px;
}

.videopage video {
  border-radius: 20px;
  border: none;
  outline: none;
  box-shadow: none !important;
}

.videocard {
  display: flex;
  align-items: flex-start;
  color: #fff;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
  background-color: #222;
  transition: 0.3s ease;
}

.videocard::before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  top: -2px;
  left: -2px;
  background: linear-gradient(75deg, #4f1bc5, #7b17c5) !important;
  border-radius: 10px;
  transition: 0.3s ease;
  opacity: 0;
}

.videocard.active {
  border-color: transparent;
  transition: 0.3s ease;
}

.videocard.active::before {
  opacity: 1;
}

.videocard img {
  width: 200px;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #333;
  border-radius: 10px;
}

.videocard .videocardright {
  padding: 15px 50px 15px 15px;
}

.videosidebar {
  scrollbar-width: auto;
  scrollbar-color: #4f1bc5 #222;
}

/* Chrome, Edge, and Safari */
.videosidebar::-webkit-scrollbar {
  width: 16px;
}

.videosidebar::-webkit-scrollbar-track {
  background: #222;
}

.videosidebar::-webkit-scrollbar-thumb {
  background-color: #4f1bc5 !important;
  border-radius: 10px;
  border: 3px solid #222;
}

.displayedvideoname {
  color: #ccc;
  text-align: center;
}

.ekursp {
  margin-top: 20px;
  text-align: center;
  color: #fff;
}

.ekursp a {
  color: #FFC107;
}

@media screen and (max-width: 1400px) {
  .videopage {
    padding: 30px 50px;
  }
  .videocardright {
    padding: 5px !important;
  }
  .videocard img {
    width: 150px;
    height: 100px;
  }
  .videosidebar {
    max-height: 450px;
  }
}
@media screen and (max-width: 1200px) {
  .videocard img {
    width: 120px;
    height: 80px;
  }
  .videocardright {
    font-size: 14px;
  }
  .videosidebar {
    max-height: 370px;
  }
}
@media screen and (max-width: 992px) {
  .videopagelogo img {
    height: 90px;
  }
  .videocard img {
    width: 170px;
    height: 120px;
  }
  .videocardright {
    font-size: 17px;
    padding: 10px !important;
  }
  .videosidebar {
    max-height: 570px;
  }
  .displayedvideoname {
    font-size: 25px;
  }
}
@media screen and (max-width: 670px) {
  .videopagelogo img {
    height: 70px;
  }
  .displayedvideoname {
    font-size: 20px;
  }
  .videopage {
    padding: 30px 10px;
  }
}
@media screen and (max-width: 460px) {
  .videocard img {
    width: 140px;
    height: 90px;
  }
  .videocardright {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */