* {
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
}
body {
  background-color: #ffffff;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none !important;
}

.container {
  max-width: 1200px;
}
input,
textarea,
select {
  outline: none !important;
  box-shadow: none !important;
}

.p-relative {
  position: relative;
}

@media (min-width: 768px) {
  #nav-icon1,
  #nav-icon2,
  #nav-icon3,
  #nav-icon4 {
    display: none;
  }
}

#nav-icon1,
#nav-icon2,
#nav-icon3,
#nav-icon4 {
  min-width: 30px;
  min-height: 30px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 1101;
}

#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 82%;
  background: #000;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 7px;
}

#nav-icon1 span:nth-child(3) {
  top: 14px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  z-index: 9999999;
  transition: 0.6s ease;
}
body.loaded .loading {
  top: -100%;
  transition: 0.6s ease;
}
.loading .loading-logo img {
  width: 180px;

  -webkit-animation: LoadingAnimation 5s ease infinite;
  -moz-animation: LoadingAnimation 5s ease infinite;
  -o-animation: LoadingAnimation 5s ease infinite;
  animation: LoadingAnimation 5s ease infinite;
}

@keyframes LoadingAnimation {
  0% {
    filter: drop-shadow(0 0 3px transparent);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
    transform: scale(1.2);
  }
  100% {
    filter: drop-shadow(0 0 3px transparent);
    transform: scale(1);
  }
}
.swal-text {
  line-height: 1.6 !important;
  text-align: center !important;
}

.header-top {
  padding: 20px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.header-top .logo-box {
  margin-right: 50px;
}
.header-top .logo-box img {
  width: 100px;
}
.header-top .search-box {
  margin-left: 2rem;
}
.header-top .search-box form {
  position: relative;
  width: 500px;
}
.header-top .search-box input {
  display: block;
  border: none;
  border-radius: 50px;
  background-color: #d1d1d1;
  color: #ffffff;
  width: 100%;
  padding: 10px;
}
.header-top .search-box button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 20px;
  color: #7e7e7e;
  border: none;
  background-color: transparent;
}

.right-box ul {
  display: flex;
  align-items: end;
}
.right-box a {
  color: #000000;
  font-weight: 600;
  margin-right: 20px;
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
}
.right-box a i {
  font-size: 20px;
}
.text-button {
  border: 1px solid #000000;
  padding: 5px 20px;
  color: #ffffff;
}
.bg-button {
  padding: 5px 20px;
  text-align: center;
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff !important;
}

.header-bottom {
  border-top: 1px solid #ab6b6a;
  border-bottom: 1px solid #ab6b6a;
  display: flex;
  justify-content: space-around;
  padding: 3px 0;
}
.header-bottom ul {
  display: flex;
}
.header-bottom ul li {
  margin-right: 50px;
}
.header-bottom ul li:last-child {
  margin-right: 0;
}
.header-bottom ul li a {
  color: #000000;
  display: block;
  font-size: 22px;
  font-family: "Roboto";
}

.footer-logo {
  display: block;
}
.footer-logo img {
  width: 150px;
}

footer.footer {
  background-color: #002a3a;
  padding: 50px 0;
  margin-top: 100px;
}
footer .footer-menu li a {
  color: #ffffff;
  font-family: "Roboto";
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  padding-left: 10px;
}
.mb-40 {
  margin-bottom: 40px;
}
footer hr {
  color: #ffffff;
  background-color: #ffffff;
}

.section-list .section-list-image {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
  display: block;
}
.section-list .section-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-list h6 {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.section-list h6 a {
  display: -webkit-box;
  color: #000000;
  height: 45px;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  word-wrap: break-word;
  font-weight: 400;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
}
.section-list span {
  font-size: 12px;
  font-weight: 300;
  display: block;
}
.section-list-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-right: 20px;
}
.section-list-detail .section-list-price {
  font-weight: 500;
  font-size: 18px;
}
.section-list-buy {
  padding: 5px 10px;
  background-color: #000000;
  color: #ffffff;
}
.section-list-buy:hover {
  color: #000000;
  background-color: #ffffff;
}
.section-list-star {
  display: flex;
  margin-top: 5px;
}
.swiper-wrapper {
  height: auto;
}

.section {
  padding: 50px 0;
}
.section .section-image {
  box-shadow: 0 0 10px #000000;
  margin-bottom: 3rem;
}
.section .section-image img {
  width: 100%;
}
.section .section-body {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.section-title h2 {
  margin: 0;
  text-align: center;
}
.section-title {
  margin-bottom: 50px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 50px;
}
.footer-social li a img {
  width: 50px;
  position: relative;
}
.footer-social li {
  margin-right: 30px;
  position: relative;
}
.footer-social li:last-child {
  margin-right: 0;
}
.footer-social li a {
  position: relative;
  display: block;
}

.footer-app {
  text-align: right;
  margin-bottom: 100px;
}
.footer-app a {
  display: block;
}
.footer-app img {
  width: 120px;
}
.footer-app a + a {
  margin-top: 10px;
}
.footer-lang {
  text-align: right;
}
.footer-lang a {
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  padding: 5px;
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #ffffff;
}
.footer-lang a i {
  padding-right: 5px;
  font-size: 14px;
}

.ema-login-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  min-height: 100vh;
}
.login-left {
  width: 55%;
  background-color: red;
  height: auto;
  display: flex;
  align-items: end;
  padding: 7rem 5rem;
  position: relative;
  background-image: url("../jpg/login-bg.jpg");
  background-size: cover;
  background-position: center center;
}
.login-left:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
}
.login-right {
  width: 45%;
  height: auto;
}
.login-left .logo-box {
  position: absolute;
  top: 50px;
  left: 50px;
}
.login-left .logo-box img {
  width: 180px;
}
.login-hash {
  color: #ffffff;
  position: relative;
}
.login-hash h3 {
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.login-hash h1 {
  font-size: 4rem;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.login-right {
  position: relative;
  background-color: #ffffff;
  padding: 10vh;
}
.login-right:before {
  content: "";
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  border-style: solid;
  border-width: 0 0 100vw 150px;
  border-color: transparent transparent #ffffff transparent;
  transform: translateX(-100%);
  position: absolute;
}
.login-tabs {
  display: flex;
  margin-bottom: 10px;
}
.login-tabs li a {
  padding: 20px 10px 10px 10px;
  display: block;
  border: 1px solid gray;
  color: #000000;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 1px;
}
.login-tabs li {
  margin-right: 10px;
}
.login-tabs li.active a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: gray;
}

.login-form {
  border-top: 1px solid #000000;
  padding-top: 50px;
}
.login-form .form-group {
  margin-bottom: 20px;
}
.fill-button {
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff;
  border-radius: 0.33rem;
  padding: 8px 10px;
  text-align: center;
  width: 100%;
  display: block;
}
.outline-button {
  border: 1px solid #000000;
  background-color: transparent;
  color: #000000 !important;
  border-radius: 0.33rem;
  padding: 8px 10px;
  text-align: center;
  width: 100%;
  display: block;
}
.login-form input,
.login-form select {
  border: 1px solid #000000 !important;
  font-weight: 500;
  letter-spacing: 0.1px;
  padding: 10px;
}
.login-form input::placeholder,
.login-form select {
  color: #b0b0b0 !important;
}
.login-form .form-check {
  display: flex;
  align-items: center;
}
.login-form .form-check label {
  padding-left: 10px;
  font-size: 11.5px;
  font-family: "Roboto", sans-serif;
}
.login-form .form-check input {
  border-radius: 0;
  background: #000;
}
.info-checkbox {
  font-size: 11.5px;
  margin-top: 20px;
  display: block;
}

.social-login-container {
  margin-top: 50px;
}
.social-login-content {
  border-bottom: 1px solid #000000;
  display: inline-flex;
  margin-bottom: 20px;
}

.social-login-content .icon {
  background-color: #ffffff;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 50px;
}
.social-login-content .title {
  padding: 10px 20px;
  align-items: center;
  display: flex;
  color: #ffffff;
  width: 150px;
}
.social-login-content.social-login-facebook .title {
  background-color: #000000;
}
.social-login-content.social-login-windows .title {
  background: rgb(255, 208, 113);
  background: linear-gradient(
    180deg,
    rgba(255, 208, 113, 1) 0%,
    rgba(253, 182, 17, 1) 100%
  );
}
.social-login-content.social-login-google .title {
  background: rgb(216, 29, 38);
  background: linear-gradient(
    180deg,
    rgba(216, 29, 38, 1) 0%,
    rgba(162, 22, 28, 1) 100%
  );
}
.social-login-content.social-login-apple .title {
  background-color: #000000;
}

.social-login-content.social-login-facebook .icon {
  color: #000000;
}
.social-login-content.social-login-windows .icon {
  color: rgb(253, 182, 17);
}
.social-login-content.social-login-google .icon {
  color: red;
}
.social-login-content.social-login-apple .icon {
  color: #000000;
}
.bottom-logo-box {
  top: inherit !important;
  bottom: 350px;
}

.header-profile,
.header-profile i {
  color: #ffffff !important;
  position: relative;
}
.header-profile:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: red;
  border-radius: 50%;
  width: 180%;
  height: 150%;
  background: rgb(0, 178, 250);
  background: linear-gradient(
    289deg,
    rgba(0, 178, 250, 1) 0%,
    rgba(0, 112, 250, 1) 100%
  );
}
.section-list-image {
  margin-bottom: 5px;
}

.section-slider-content {
  display: flex;
  align-items: center;
}

.section-slider-content .section-slider-image {
  width: 60%;
}
.section-slider-content .section-slider-image img {
  width: 100%;
}
.section-slider-content .section-slider-info {
  width: 40%;
  padding: 5rem;
  text-align: center;
}
.section-slider-content .section-slider-info a {
  display: inline-block;
  background-color: #f4f4f4;
  border-radius: 10px;
  color: #494949;
  padding: 10px 20px;
  text-align: center;
  margin-top: 50px;
}
.swiper-one-slider {
  box-shadow: 0 0 10px rgb(0 0 0 / 45%);
  position: relative;
}
.swiper-pagination-bullet-active {
  background-color: #000000;
}

.detail-teacher-top {
  display: flex;
  align-items: center;
}
.detail-teacher-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.detail-teacher-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-teacher-top .detail-teacher-info h6 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.detail-teacher-top .detail-teacher-info span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}
.detail-teacher-text {
  margin-top: 30px;
}
.detail-teacher-text p {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-style: italic;
}

.detail-header {
  background-color: #002a3a;
  padding: 100px 0 50px 0;
}
.detail-header h2,
.detail-header p,
.detail-header .detail-header-specials li {
  color: #ffffff;
}
.detail-header h2 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
}
.detail-header p {
  font-size: 12px;
}
.detail-header-specials {
  display: flex;
  align-items: center;
}
.detail-header-specials li {
  margin-right: 50px;
}
.detail-header-specials li:last-child {
  margin-right: 0;
}
ul.star {
  display: flex;
}
ul.star li {
  margin-right: 5px;
}
ul.star li:last-child {
  margin-right: 0;
}
.fs-20 {
  font-size: 16px;
}
.fs-30 {
  font-size: 20px;
}
.detail-header-specials li {
  font-family: "Roboto", sans-serif;
}
.border-panel-header h5 {
  font-size: 1.6rem;
  font-weight: bolder;
  margin-bottom: 30px;
  font-family: "Roboto", sans-serif;
}
.border-panel-body {
  padding: 2.5rem 5rem;
  border: 1px solid #000000;
}
.mt-50 {
  margin-top: 50px;
}

h5.border-panel-body-header,
.detail-general-information h5 {
  font-size: 2rem;
  font-weight: bolder;
  margin-bottom: 30px;
  font-family: "Roboto", sans-serif;
}
h6.border-panel-body-header {
  font-size: 1rem;
  font-weight: bolder;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}
.border-panel-body p {
  margin-bottom: 30px;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
}
.border-panel-body.fs-20 p {
  font-size: 18px;
}
.border-panel-body p:last-child {
  margin-bottom: 0;
}

.detail-general-information ul,
.detail-general-information p {
  margin-bottom: 30px;
}
.detail-general-information ul li {
  margin-bottom: 10px;
  position: relative;
  font-size: 14px;
}
.detail-general-information p {
  font-size: 14px;
}
.detail-general-information ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #000000;
}

.detail-sidebar {
  padding-top: 50px;
  position: sticky;
  top: 0;
}

.detail-sidebar-in {
  border-radius: 20px;
  border: 1px solid #000000;
  overflow: hidden;
  background-color: #ffffff;
  transition: 0.5s ease;
}
.is-affixed .detail-sidebar-in {
  transform: translateY(0);
}

.detail-image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 300px;
  position: relative;
}
.detail-video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  color: #ffffff;
  opacity: 0.7;
}
.detail-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.p-20 {
  padding: 20px;
}
.fs-20 {
  font-size: 20px;
}
.addToBasket {
  border: 1px solid #002a3a;
  background-color: #002a3a;
  color: #ffffff !important;
  padding: 8px 10px;
  text-align: center;
  width: 100%;
  display: block;
  font-family: "Roboto", sans-serif;
  line-height: normal;
  letter-spacing: 0.5px;
  font-size: 20px;
  font-weight: bold;
}
.addToFavorite {
  border: 1px solid #002a3a;
  background-color: #ffffff;
  color: #002a3a !important;
  padding: 7px;
  text-align: center;
  width: 100%;
  display: block;
  font-family: "Roboto", sans-serif;
  line-height: normal;
  font-size: 20px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.addToFavorite.favorited i {
  color: red;
}
.fastSign {
  border: 1px solid #002a3a;
  background-color: #002a3a;
  color: #688691 !important;
  padding: 8px 10px;
  text-align: center;
  width: 100%;
  display: block;
  font-family: "Roboto", sans-serif;
  line-height: normal;
  letter-spacing: 0.5px;
  font-size: 20px;
  margin-top: 10px;
  font-weight: bold;
}
.pr-0 {
  padding-right: 0;
}
.fs-12 {
  font-size: 12px;
}
.mt-10 {
  margin-top: 10px;
}
.detail-sidebar-matter-container h6 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
.detail-sidebar-matter-container ul li {
  font-size: 12px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.detail-sidebar-matter-container ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: #000000;
}
.detail-sidebar-matter-container ul li:last-child {
  margin-bottom: 0;
}
.detail-sidebar-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.detail-sidebar-buttons a {
  font-size: 14px;
  font-weight: bold;
  color: #000000 !important;
  font-family: "Roboto", sans-serif;
}

.header-basket {
  position: relative;
}
.header-basket span {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: red;
  color: #ffffff;
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-slider-content {
  display: flex;
  align-items: center;
}
.section-slider-content .section-slider-image {
  width: 60%;
  height: 400px;
}
.section-slider-content .section-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-slider-content .section-slider-info {
  width: 40%;
  padding: 5rem;
  text-align: center;
}
.section-slider-content .section-slider-info a {
  display: inline-block;
  background-color: #f4f4f4;
  border-radius: 10px;
  color: #494949;
  padding: 10px 20px;
  text-align: center;
  margin-top: 50px;
}
.swiper-one-slider {
  box-shadow: 0 0 10px rgb(0 0 0 / 45%);
  position: relative;
}
.swiper-pagination-bullet-active {
  background-color: #000000;
}

.duyuru-content {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #cccccc;
}
.duyuru-content:last-child {
  border-bottom: none;
}
.duyuru-tarih {
  text-align: center;
  width: 100px;
  border: 1px solid #cccccc;
  padding: 5px;
  margin-right: 10px;
}
.duyuru-tarih span {
  font-size: 14px;
  color: #000000;
}
.duyuru-baslik {
  font-size: 14px;
  color: #000000;
}
.duyuru-content h3 {
  color: #000000;
}

.breadcrumbs {
  margin-top: 20px;
  margin-bottom: 20px;
}
.breadcrumbs > ul {
  display: flex;
  align-items: center;
}
.breadcrumbs > ul > li {
  display: flex;
  align-items: center;
  padding-right: 30px;
  position: relative;
}
.breadcrumbs > ul > li::before {
  content: "\f054";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  color: #000000;
  font-size: 12px;
}
.breadcrumbs > ul > li:last-child::before {
  display: none;
}
.breadcrumbs > ul > li > a {
  color: #000000;
  font-size: 12px;
}
.breadcrumbs > ul > li > span {
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 400;
}

.ws-menu-title {
  font-weight: 500;
  color: #011f2d;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 1.5px;
}
.ws-menu li a {
  color: #000000 !important;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 0;
  letter-spacing: 0.3px;
  display: block;
}
.ws-menu li.active a {
  color: var(--main-color) !important;
}

.contact-body-form .form-group {
  margin-bottom: 10px;
}
.contact-body-form .form-group label {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 5px;
}
.contact-body-info {
  font-size: 12px;
}
.contact-body-info a {
  color: #000000;
}

/* mobil menu*/

#toggle {
  position: absolute;
  z-index: 3;
  width: 2.3em;
  height: 2.3em;
  top: 0;
  left: 0;
  margin: 15px 0 0 15px;
  cursor: pointer;
}

#toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.2em;
  margin: 1.25em 0 0 0;
  background: #000;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#toggle span:before,
#toggle span:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 0.2em;
  background: #000;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#toggle span:before {
  margin: -1em 0 0 0;
}

#toggle span:after {
  margin: 1em 0 0 0;
}

#toggle.open span {
  background-color: transparent;
}

#toggle.open span:before,
#toggle.open span:after {
  margin: 0;
  background: #ffffff;
}

#toggle.open span:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}

#toggle.open span:after {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

#menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#menu.opened {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#menu span#title {
  display: block;
  line-height: 1em;
  margin: 20px 0 0.5em 0;
  font-size: 42px;
  color: #ffffff;
}

#menu ul {
  list-style: none;
  margin: 0 auto;
}

#menu ul li {
  display: block;
  width: 90%;
  height: 65px;
  margin: 0 auto 0.5em auto;
}

#menu ul li:after {
  content: " ";
  position: absolute;
  width: 0%;
  height: 65px;
  margin: -65px 0 0 5%;
  left: 0;
  background: rgba(232, 197, 58, 0.45);
  border-radius: 0.25em;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#menu ul li:hover:after {
  width: 90%;
}

#menu ul li a {
  position: relative;
  z-index: 4;
  display: block;
  width: 100%;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 0.2em;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#menu ul li a:hover {
  color: #333;
  border-color: #e8c53a;
}

#menu ul li a span {
  font-size: 1.66667em;
}

#menu ul li a i {
  position: absolute;
  padding: 0 1.25em 0 0;
  font-size: 2em;
}

/*sidebar menu*/

.accordion {
  margin: auto;
  width: 100%;
}
.accordion input {
  display: none;
}
.box {
  position: relative;
  background: white;
  height: 64px;
  transition: all 0.15s ease-in-out;
}
.box::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px rgba(0, 0, 0, 0.12),
    0 2px 4px rgba(0, 0, 0, 0.24);
}
header.box {
  background: #00bcd4;
  z-index: 100;
  cursor: initial;
  box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px -2px rgba(0, 0, 0, 0.12),
    0 2px 4px -4px rgba(0, 0, 0, 0.24);
}
header .box-title {
  margin: 0;
  font-weight: normal;
  font-size: 16pt;
  color: white;
  cursor: initial;
}
.box-title {
  width: calc(100% - 40px);
  height: 64px;
  line-height: 64px;
  padding: 0 20px;
  display: inline-block;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.box-content {
  width: calc(100% - 40px);
  padding: 30px 20px;
  font-size: 11pt;
  color: rgba(0, 0, 0, 0.54);
  display: none;
}
.box-close {
  position: absolute;
  height: 64px;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}
input:checked + .box {
  height: auto;
  margin: 16px 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.32);
}
input:checked + .box .box-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
input:checked + .box .box-content,
input:checked + .box .box-close {
  display: inline-block;
}
.arrows section .box-title {
  padding-left: 44px;
  width: calc(100% - 64px);
}
.arrows section .box-title:before {
  position: absolute;
  display: block;
  content: "\203a";
  font-size: 18pt;
  left: 20px;
  top: -2px;
  transition: transform 0.15s ease-in-out;
  color: rgba(0, 0, 0, 0.54);
}
input:checked + section.box .box-title:before {
  transform: rotate(90deg);
}

.swiper-slide {
  padding: 0 !important;
}

.nav-v2-logo {
  left: -30%;
  z-index: 99999;
}
.nav-v2-main {
  position: relative;
  left: -30%;
}

/* Masaüstü CSS */

@media (min-width: 992px) {
  .footer-social {
    right: 105% !important;
  }
}

@media (min-width: 768px) {
  .footer-app {
    display: flex;
  }
  .footer-app a + a {
    margin-top: 0;
  }
  .footer-app a {
    margin-right: 10px;
  }
  .footer-lang {
    padding-top: 3px;
  }
  .footer-social {
    position: relative;
    bottom: -85px;
    right: 20%;
  }
}

/* Tablet CSS */
@media (max-width: 992px) {
  .login-hash h3 {
    font-size: 2rem;
  }
  .login-hash h1 {
    font-size: 3rem;
  }
  .login-right:before {
    display: none;
  }
  .login-form {
    padding-top: 10px;
  }
  .login-form .col-md-4.col-12 {
    padding-right: 0;
  }
  .login-left {
    width: 100%;
  }
  .login-right {
    width: 60%;
  }
  .login-left .logo-box img {
    width: 150px;
    left: 5px;
    position: absolute;
  }
  .login-hash {
    top: 90px;
  }
  .border-panel-body {
    padding: 30px 15px;
  }
  .detail-general-information ul {
    padding: 18px !important;
  }
  .detail-general-information ul li:before {
    width: 15px;
    height: 15px;
  }
  .detail-general-information ul li:last-child {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .login-left {
    width: 50%;
  }
  .login-left.uyeol {
    width: 70%;
  }
  .bottom-logo-box {
    top: 35%;
  }
  .login-left .logo-box img {
    width: 150px;
  }
  .login-right {
    padding: 20px;
  }
  .login-form .col-md-4.col-12 {
    padding-right: 10px;
    margin-bottom: 10px;
  }
  .section-slider-content .section-slider-info {
    padding: 1rem;
  }
}

/* Mobil CSS */

@media (max-width: 575px) {
  .section-slider-content {
    flex-direction: column;
  }
  .section-slider-content .section-slider-info {
    width: 100% !important;
  }
  .section-slider-content .section-slider-image {
    width: 100% !important;
  }
  .swiper-one-slider .swiper.sliderOne1 .swiper-wrapper .swiper-slide {
    padding-bottom: 0 !important;
  }
  .border-panel-body {
    padding: 20px 10px;
  }
  .detail-header h2 {
    font-size: 30px;
  }
  .border-panel-body.fs-20 p {
    font-size: 13px !important;
  }
  .border-panel-header h5,
  h5.border-panel-body-header,
  .detail-general-information h5 {
    margin-bottom: 10px;
  }
  h6.border-panel-body-header {
    font-size: 1.5rem !important;
  }
  .inner-wrapper-sticky {
    height: 330px;
  }
  .login-left,
  .login-left.uyeol {
    width: 100%;
  }
  .login-right {
    width: 100%;
  }
  .ema-login-container {
    display: grid;
  }
  .login-left .logo-box img {
    width: 105px;
    top: -30px;
    position: absolute;
    left: 14px;
  }
  .login-left .logo-box img {
    top: 25px;
  }
  footer .footer-menu li a {
    text-align: center;
  }
  .footer-logo img {
    width: 115px;
  }
  .footer-social li {
    margin-right: 10px;
  }
  .footer-social {
    display: flex;
    position: absolute;
    right: 25px;
    margin-top: 10px;
  }
  .footer-social li a img {
    width: 40px;
  }
  .footer-app {
    position: relative;
    bottom: -10px;
    right: 0px;
    margin-bottom: 50px;
    margin-right: 20px;
  }
  .footer-lang {
    position: relative;
    top: 30px;
  }
  #toggle {
    width: 30px !important;
    height: 30px !important;
  }
  .header-basket i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #toggle {
    margin: 0 !important;
    top: 31%;
    transform: translateY(-50%);
    left: 77px;
  }

  .nav-v2-logo {
    padding-right: 12px;
  }

  /*  .nav-v2-dynamic__login {
    margin-top: 10px;
  } */

  .ozelul .nav-v2-main__item {
    margin-left: 0 !important;
  }
  ul.nav-v2-main__list.ozelul {
    /*  position: absolute;
    right: 150px;
    bottom: 30%; */
  }
  .section {
    padding: 10px 0;
  }

  .footer .yeni_footer {
    display: flex;
  }
}

@media (max-width: 460px) {
  .nav-v2-logo img {
    position: relative;
    position: relative;
    left: 154px;
    top: 3px;
  }
  ul.nav-v2-main__list.ozelul {
    right: 85px;
  }
}

@media (max-width: 430px) {
  .login-left .logo-box img {
    width: 110px;
    top: -30px;
    position: absolute;
    left: 200px;
  }
  .login-hash.uyeol {
    left: -30px;
  }
  ul.nav-v2-main__list.ozelul {
    right: 70px;
    bottom: 30%;
  }
}

@media (max-width: 360px) {
  .header-basket {
    width: 30px !important;
    height: 30px !important;
  }
  .header-basket i {
    font-size: 12px;
    bottom: 8px;
  }
  .ozelul .nav-v2-main__item a {
    margin-right: 3px !important;
  }
}

@media (max-width: 300px) {
  .login-left .logo-box img {
    left: 100px;
  }
  .login-hash h1 {
    font-size: 2rem;
  }

  .nav-v2-logo img {
    left: 9px;
    width: 70px !important;
  }
}
