/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #BC6C25;
  --secondary-color:              #399ee9;
  --section-bg-color:             #004b83;
  --custom-btn-bg-color:          #004b83;
  --custom-btn-bg-hover-color:    #004b83;
  --dark-color:                   #000000;
  --p-color:                      #717275;

  --body-font-family:             'Plus Jakarta Sans', sans-serif;

  --h1-font-size:                 68px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --form-btn-font-size:           18px;
  --menu-font-size:               16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.skiptranslate{display: none !important;}
body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
  top: 0!important;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000;

}

a:hover {
  color: #004a83ce;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--white-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay + .container {
  position: relative;
  z-index: 22;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--custom-btn-bg-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}

.custom-border-btn:hover {
  background: rgba(255, 255, 255, 0.911);
  color: var(--custom-btn-bg-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
/*header start*/
.navbar{
  background: transparent;
  padding-top: 20px;
  padding-bottom: 0;
  position: fixed;
  z-index: 999999;
  top: 0px;
  right: 0px;
  left: 0px;
}
.navbar>.container-fluid{padding-right: 45px;padding-left: 45px;background: #fff;
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;}

  @media (min-width: 576px) {
    .navbar>.container-fluid {
        max-width:540px
    }
}

@media (min-width: 768px) {
  .navbar>.container-fluid {
        max-width:720px
    }
}

@media (min-width: 992px) {
  .navbar>.container-fluid {
        max-width:960px
    }
}

@media (min-width: 1200px) {
  .navbar>.container-fluid {
        max-width:1140px
    }
}

@media (min-width: 1400px) {
  .navbar>.container-fluid {
        max-width:1320px;
    }
}
.navbar-brand{
  font-weight: 500;
  color: #ffa8ed;
  font-size: 24px;
  transition: 0.3s color;
}

.login-button{
  background-color: #ffa8ed;
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s background-color;
}

.login-button:hover{
  background-color: #ffcdf5;
}

.navbar-toggler{
  border: none!important;
  font-size: 1.25rem;
}

.navbar-toggler:focus, .btn-close:focus{
  box-shadow: none!important;
  outline: none;
}

.nav-link{
  color: #666777;
  font-weight: 500;
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  font-family: Nunito, sans-serif;
}

.nav-link:hover, .nav-link.active{
  color: #000;
}
.nav-link::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #004b83!important;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

.nav-link:hover::before, .nav-link.active::before{
  width: 100%;
  visibility: visible;
}
.offcanvas-body .footer-icons{display: none;}
.dilBtnWrap .dropdown-toggle::after{display: none;}
.dilBtnWrap .dropdown-menu{min-width: 100px!important;right: -50px!important;}
@media (min-width:991px){
  .nav-link::before{
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background-color: #ffa8ed;
      visibility: hidden;
      transition: 0.3s ease-in-out;
  }

  .nav-link:hover::before, .nav-link.active::before{
      width: 100%;
      visibility: visible;
  }
 
}

.navbar.shrink {
  height: 92px;
  transition: height 0.3s ease;
}

.navbar.shrink .navbar-brand {
  font-size: 20px;
}

.navbar.shrink .login-button {
  font-size: 12px;
  padding: 6px 16px;
}
.navbar .navbar-brand img {
  height: auto;
  width: 125px;
}
@media (max-width: 880px) {
  .login-button {
      display: none;
  }
  .navbar>.container-fluid {
    padding-right: 5px!important;
    padding-left: 5px!important;
  }
  .navbar .navbar-brand img {
    height: auto;
    width: 90px;
  }
  .navbar>.container-fluid{margin-right: 10px;margin-left: 10px;}
  .dilBtnWrap .dropdown-menu {
    width: 115px;
    right: 0;
    left: -69px;
  }
  .offcanvas-body .footer-icons {
    margin-top: 5px;
    display: block;
  }
  .offcanvas-body .footer-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: #004b83;
    border-radius: 25px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 29px;
    margin-right: 3px;
    margin-bottom: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .offcanvas-body .footer-icons a i{font-size: 16px;}
  .offcanvas-body .canvasContact {
    display: block!important;
  }
  .dilBtnWrap .dropdown-toggle img{width: 23px;}
  #aboutHeader{height: 250px!important;}
}
.offcanvas.offcanvas-end {
  width: 100%;
}
.offcanvas-body .nav-link{
  display: block;
  padding: 0.5rem!important;
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.offcanvas-body .nav-item li{
  color: #666777;
  font-weight: 500;
  position: relative;
  font-size: 15px;
  text-transform: uppercase;
  font-family: Nunito, sans-serif;
}
.offcanvas-body .canvasContact {
  display: none;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.canvasContact a {
  display: block;
  color: #555;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.canvasContact a:hover {
  color: #1f4874;
}

.canvasContact p {
  margin: 10px 0;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.canvasContact p label {
  color: #004b83;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 700;
}

/*header end*/


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  text-align: center;
}

.hero-section::after {
  background-image: url(../images/elmas2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    position: absolute;
    top: 30%;
    /* left: 50%; */
    /* transform: translate(-50%, -50%) rotate(45deg); */
    width: 529px;
    height: 455px;
    pointer-events: none;
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: 100vh;
  }
}

.hero-section h1 {
  color: var(--white-color);
  font-size: 55px;
    font-weight: 700;
}

.small-text {
  color: var(--secondary-color);
}

.hero-section .custom-border-btn {
  border-color: transparent;
}

.hero-section .container {
  position: relative;
  z-index: 9;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: absolute !important;
}

.opening-hours-list {
  margin: 0;
  padding: 0;
}

.opening-hours-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  margin-bottom: 10px;
}

.opening-hours-list li .underline {
  background-color: rgba(255, 255, 255, 0.75);
  width: 35%;
  height: 1px;
  margin: auto 15px 0 15px;
}


/*---------------------------------------
  HAKKIMIZDA START            
-----------------------------------------*/
.text-blk {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  line-height: 20px;
  color: rgb(0, 0, 0);
  font-size: 14px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bigContainer {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(238, 238, 238);
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin: 0 0 0 0;
}

.responsive-container-block.Container {
  max-width: 1320px;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
}

.responsive-container-block.leftSide {
  width: auto;
  align-items: flex-start;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
  flex-direction: column;
  position: static;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  max-width: 300px;
}

.text-blk.heading {
  font-size: 44px;
  line-height: 64px;
  font-weight: 900;
  color: #2279bb;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.text-blk.btn {
  color: #fa7900;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(160, 121, 0, 0.2) 0px 12px 35px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  padding-top: 20px;
  padding-right: 50px;
  padding-bottom: 20px;
  padding-left: 50px;
  cursor: pointer;
}

.responsive-container-block.rightSide {
  width: 675px;
  position: relative;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  display: flex;
  height: 700px;
  min-height: auto;
}

.number1img {
  margin-top: 39%;
  margin-right: 80%;
  margin-bottom: 29%;
  margin-left: 0px;
  height: 32%;
  width: 20%;
  position: absolute;
  object-fit: cover;
}

.number2img {
  margin-top: 19%;
  margin-right: 42%;
  margin-bottom: 42%;
  margin-left: 23%;
  width: 35%;
  height: 39%;
  position: absolute;
  object-fit: cover;
}

.number3img {
  width: 13%;
  height: 21%;
  position: absolute;
  margin-top: 62%;
  margin-right: 64%;
  margin-bottom: 30%;
  margin-left: 23%;
  object-fit: cover;
}

.number4vid {
  width: 34%;
  height: 33%;
  position: absolute;
  margin-top: 62%;
  margin-right: 27%;
  margin-bottom: 0px;
  margin-left: 39%;
  object-fit: cover;
}

.number5img {
  position: absolute;
  width: 13%;
  height: 21%;
  margin-top: 38%;
  margin-right: 27%;
  margin-bottom: 41%;
  margin-left: 60%;
  object-fit: cover;
}

.number6img {
  position: absolute;
  margin-top: 0px;
  margin-right: 3%;
  margin-bottom: 67%;
  margin-left: 62%;
  width: 35%;
  height: 33%;
  object-fit: cover;
}

.number7img {
  position: absolute;
  width: 25%;
  margin-top: 40%;
  margin-right: 0px;
  margin-bottom: 18%;
  margin-left: 75%;
  height: 42%;
  object-fit: cover;
}
.number8img {
  position: absolute;
  margin-top: 0px;
  margin-right: 3%;
  margin-bottom: 67%;
  margin-left: 62%;
  width: 35%;
  height: 33%;
  object-fit: cover;
}

.text-blk.subHeading {
  font-size: 14px;
  line-height: 25px;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }

  .text-blk.heading {
    text-align: center;
    max-width: 370px;
  }

  .text-blk.subHeading {
    text-align: center;
  }

  .responsive-container-block.leftSide {
    align-items: center;
    max-width: 480px;
  }

  .responsive-container-block.rightSide {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 100px;
    margin-left: auto;
  }

  .responsive-container-block.rightSide {
    margin: 0 auto 70px auto;
  }
}

@media (max-width: 768px) {
  .responsive-container-block.rightSide {
    width: 450px;
    height: 450px;
  }

  .responsive-container-block.leftSide {
    max-width: 450px;
  }
  .fiberMedya{float: none!important;margin-bottom: 30px;}
  .footer-distributed .footer-right {
    align-items: center!important;
  }
  .responsive-container-block.Container {
    margin-bottom: 10px;
    margin-top: 40px;
  }
}

@media (max-width: 500px) {
  .number1img {
    display: none;
  }

  .number2img {
    display: none;
  }

  .number3img {
    display: none;
  }

  .number5img {
    display: none;
  }

  .number6img {
    display: none;
  }

  .number7img {
    display: none;
  }

  .responsive-container-block.rightSide {
    width: 100%;
    height: 250px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .number4vid {
    position: static;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    width: 100%;
    height: 100%;
  }

  .text-blk.heading {
    font-size: 25px;
    line-height: 40px;
    max-width: 370px;
    width: auto;
  }

  .text-blk.subHeading {
    font-size: 14px;
    line-height: 25px;
  }

  .responsive-container-block.leftSide {
    width: 100%;
  }
}



.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

/*---------------------------------------
  HAKKIMIZDA END            
-----------------------------------------*/

/*---------------------------------------
  OUR MENU              
-----------------------------------------*/
.menu-section {
  background-image: url('../images/sliderfoto1.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-block-wrap {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.menu-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.menu-block h6 {
  color: var(--white-color);
}

.menu-block small {
  color: rgba(255, 255, 255, 0.35);
}

.menu-block strong {
  color: var(--secondary-color);
}

.menu-block-image {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  display: block;
  margin: auto;
  cursor: pointer;
}

.badge {
  background-color: var(--primary-color);
  font-size: 12px;
  position: relative;
  bottom: 4px;
  padding-bottom: 6px;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--primary-color);
}


/*---------------------------------------
  BOOKING SECTION              
-----------------------------------------*/
.booking-section {
  background-image: url('../images/sliderfoto2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.booking-form-wrap {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.booking-form {
  padding: 55px 65px;
}

.booking-form-image-wrap {
  position: relative;
  height: 100%;
}

.booking-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form-text span {
  color: var(--white-color);
  font-size: var(--btn-font-size);
}

.reservation-page .custom-border-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.reservation-page .custom-border-btn:hover {
  border-color: transparent;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  border-radius: var(--border-radius-small);
  margin-bottom: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--primary-color);
  border-color: transparent;
}

.custom-form .form-label {
  color: var(--white-color);
  font-style: italic;
  margin-bottom: 15px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.contact-form .form-control,
.booking-form .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.booking-form .form-control {
  color: var(--white-color);
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
   color: var(--white-color);
}

.booking-form input:-moz-placeholder,
.booking-form textarea:-moz-placeholder {
  color: var(--white-color);
}



/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-section {
    padding-top: 99px;
    padding-bottom: 100px;
    height: 100vh;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h5-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-bottom: 0;
  }

  .navbar .custom-btn {
    margin-bottom: 10px;
  }

  .booking-form {
    padding: 45px;
  }

  .contact-section .container {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
    padding: 35px;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .menu-block-wrap,
  .reviews-block-image-wrap,
  .reviews-block-info {
    padding: 20px;
  }
  .navbar-nav .nav-item {
  border-right: none;
  
}
}


@media screen and (max-width: 578px) {
  .navbar .container,
  .sticky-wrapper.is-sticky .container {
    margin-right: 10px;
    margin-left: 10px;
  }
}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .hero-section::after {
    width: 354px;
    height: 305px;
    top: 39%!important;
  }
  .hero-section h1{font-size: 40px;}
  .booking-form {
    padding: 35px;
  }

  .opening-hours-list li {
    font-size: 12px;
  }

  .reviews-block-image-wrap {
    flex-direction: column;
  }

  .reviews-block-image {
    margin-bottom: 15px;
  }
}


* {
  font-family: Nunito, sans-serif;
}


/*---------------------------------------
  ÜRÜNLER START            
-----------------------------------------*/

.card-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 100px;
}

.card{
  width: 325px;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.5s ease;
}

.card:hover{
  transform: translateY(-20px);
}


.card img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-content{
  padding: 20px;
}

.card-content h1{
  font-size: 24px;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}

.card-content img{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-content p{
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.card-button{
  display: inline-block;
  background-color: #004b83;
  color: #fff!important;
  text-decoration: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
}

.urun-baslik h1 {
  text-align: center;
  margin-top: 50px;
  display: inline-block; /* Yazının genişliğine göre ayarlanması için */
  border-bottom: 3px solid #2279bb; /* Çizginin kalınlığı ve rengi */
  padding-bottom: 10px; /* Başlık ile çizgi arasındaki boşluk */
}

.urun-baslik {
  text-align: center; /* Başlığı merkeze almak için */
}

/*---------------------------------------
  ÜRÜNLER END            
-----------------------------------------*/


/*---------------------------------------
  KATALOG START            
-----------------------------------------*/
.section-catalog{
  padding-top: 90px;
  padding-bottom: 60px;
}

.heading-is{
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 20px auto;
}

.heading-is h1{
  font-size: 70px;
  color: white;
  margin-bottom: 25px;
  position: relative;
  font-weight: 700;
}

.heading-is h1::after{
  content:"";
  position: absolute;
  width: 100%;
  height: 4px;
  display: block;
  margin: 0 auto;
  background-color: var(--orange);
}

.heading-is p{
  font-size: 18px;
  color: white;
  margin-bottom: 35px;
  font-weight: 500;
}

@media screen and (max-width: 768px){
  .heading-is h1{
    font-size: 50px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
  }
}

.heading-is .button-hbrlr{text-align: center;}
.heading-is .button-hbrlr a{
  text-decoration: none;
  display: inline-block;
  background-color: #004b83;
  padding: 11px 35px !important;
  color: #fff;
  margin-bottom: 20px;
  border-radius: 40px;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  font-weight: 600;
}

.heading-is .button-hbrlr a:hover{
  background-color: #399ee9;
}


/*---------------------------------------
  KATALOG END            
-----------------------------------------*/


/*---------------------------------------
  HABERLER START            
-----------------------------------------*/

.blog-section{
  width: 100%;
  background-color: rgb(238, 238, 238);
  padding-top: 30px;
  padding-bottom: 30px;
}

.blog-section .section-content{
  width: 85%;
  margin: 20px auto;
}

.blog-section .section-content .title{
  width: 60%;
  text-align: center;
  margin: auto;
}

.blog-section .section-content .title h2{
  font-size: 40px;
  display: inline-block; /* Yazının genişliğine göre ayarlanması için */
  border-bottom: 3px solid #2279bb; /* Çizginin kalınlığı ve rengi */
  padding-bottom: 10px; /* Başlık ile çizgi arasındaki boşluk */
}
.blog-section .section-content .title p{
  font-size: 18px;
  color: #6a6a6a;
  margin-top: 20px;
}

.blog-section .section-content .cards-hbr{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  margin: 25px auto;
}

.blog-section .section-content .cards-hbr .card-hbr{
  width: 100%;
  background-color: #f7f7f7;
  position: relative;
  border-radius: 22px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog-section .section-content .cards-hbr .card-hbr:hover{
  opacity: 1px 0px 4px;
}

.blog-section .section-content .cards-hbr .card-hbr img{
  width: 100%;
  height: auto;
  cursor: pointer;
}

.blog-section .section-content .cards-hbr .card-hbr .article{
  padding: 15px 20px;
  cursor: pointer;
}

.blog-section .section-content .cards-hbr .card-hbr .article h4{
  font-size: 24px;
  color: #4a4a4a;
}

.blog-section .section-content .cards-hbr .card-hbr .article p{
  font-size: 16px;
  margin: 10px 0px;
  color: #6a6a6a;
}

.blog-section .section-content .cards-hbr .card-hbr .button-hbr{
  text-decoration: none;
  display: inline-block;
  background-color: #373a3a;
  padding: 8px 15px;
  margin-left: 20px;
  color: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  border-radius: 20px;
  font-size: 13px;
}
.card-hbr .newsBtn{display: block;text-decoration: none;}
.blog-section .section-content .cards-hbr .card-hbr .button-hbr:hover{
  background-color: #004a83ce;
}

.blog-section .section-content .cards-hbr .card-hbr .posted-date p{
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 6px 15px;
  color: #fff;
  border-bottom-right-radius: 20px;
  cursor: pointer;
}

@media screen and (max-width: 992px){
  .blog-section .section-content .cards-hbr{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px){
  .blog-section .section-content .cards-hbr{
    grid-template-columns: 1fr;
  }
}

.blog-section .button-hbrlr{text-align: center;}
.blog-section .button-hbrlr a{
  text-decoration: none;
  display: inline-block;
  background-color: #004b83;
  padding: 8px 90px!important;
  margin-left: 20px;
  color: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog-section .button-hbrlr a:hover{
  background-color: #004a83ce;
}


/*---------------------------------------
  HABERLER END            
-----------------------------------------*/

/*---------------------------------------
  İLETİŞİM START            
-----------------------------------------*/

.contact-in{
  width: 100%;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 3px 0px #b7b5b5;
  margin-top: 50px;
  margin-bottom: 50px;
}

.contact-map{
  width: 100%;
  height: auto;
  flex: 50%;
}

.contact-map iframe{
  width: 100%;
  height: 100%;
}

.contact-form{
  width: 100%;
  height: auto;
  flex: 50%;
  padding: 30px;
  text-align: center;
}

.contact-form h1{
  margin-bottom: 34px;
  font-size: 34px;
}

.contact-form-txt{
  width: 100%;
  height: 40px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 50px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
}

.contact-form-txt::placeholder{
  color: #aaa;
}

.contact-form-textarea{
  width: 100%;
  height: 200px;
  color: #000;
  border: 1px solid #414141;
  border-radius: 10px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
}

.contact-form-textarea::placeholder{
  color: #aaa;
}


.contact-form-btn{
  width: 100%;
  border: none;
  outline: none;
  border-radius: 50px;
  background: #004b83;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 0;
  cursor: pointer;
  font-size: 16px;
}

.contact-form-btn:hover{
  background-color: #004a83ce;
  transition: 0.5s;
}

#aboutHeader {
  height: 300px;
  padding: 100px 100px;
  background-size: cover;
  background-position: center center;
}

#aboutHeader h1 {
  color: white;
  text-align: center;
  margin-top: 80px;
  font-weight: 700;
  font-size: 47px;
}

@media screen and (max-width: 768px){
  #aboutHeader h1 {
    color: white;
    text-align: center;
    margin-top: 80px;
    font-weight: 700;
    font-size: 23px;
  }
}


/*---------------------------------------
  FOOTER START            
-----------------------------------------*/

footer {
  position: relative;
  bottom: 0;
}

@media (max-height:800px) {
  footer {
      position: static;
  }
  header {
      padding-top: 40px;
  }
}

.footer-distributed {
  background-color: rgba(0, 0, 0, 0.88);
  color: #fff;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: 16px sans-serif;
  padding: 50px 80px 50px 80px;
  display: flex; /* Flexbox kullanarak sütunları hizalar */
  justify-content: space-between; /* Sütunlar arasında boşluk bırakır */
}

.footer-distributed .footer-left, 
.footer-distributed .footer-center, 
.footer-distributed .footer-right {
  flex: 1; /* Eşit genişlik sağlar */
  padding: 0 20px; /* Kenarlara iç boşluk ekler */
}

/* Footer left */
.footer-distributed .footer-left {
  display: flex;
  flex-direction: column;
}

.footer-distributed .footer-center {
  text-align: center;
}

.footer-distributed .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* İcon ve text hizalaması */
.footer-distributed .footer-left .left-icon {
  display: flex;
  align-items: center;
}

.footer-distributed .footer-left .left-icon i {
  background-color: #004a83ce;
    color: #ffffff;
    font-size: 13px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin: 7px 13px;
    vertical-align: middle;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    flex-shrink: 0;
}
.footer-distributed .footer-left p a{color: #fff;} 
.footer-distributed .footer-left p a:hover{color: #1d649bce;}
.footer-distributed .footer-right .footer-company-about {
  text-align: right;
  margin-bottom: 20px;
}

/* Sosyal medya ikonları */
.footer-distributed .footer-icons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-left: 13px;
  
}
.footer-distributed .footer-icons a {
  display: inline-block;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background-color: #004a83ce;
  border-radius: 25px;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  line-height: 28px;
  margin-right: 3px;
  margin-bottom: 5px;
  box-sizing: 1px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
/* Footer links */
.footer-center {
  display: flex;
  flex-direction: column; /* Dikey hizalama için */
  align-items: center; /* Ortaya hizalama */
}
.footer-distributed .footer-links {
  color: #fff;
  margin: 0;
  text-align: center;
  display: flex; /* Yan yana yerleştirmek için flexbox kullanıyoruz */
    flex-direction: column; /* Dikey olarak hizalansın */
    align-items: flex-start; /* Sol tarafa hizala */
    padding: 0; /* Varsayılan padding'i kaldır */
    list-style: none;
  
}

.footer-distributed .footer-links a {
  display: flex; /* İkon ve metin için flexbox kullan */
    align-items: center; /* İkon ve metni ortala */
    text-decoration: none; /* Alt çizgiyi kaldır */
    color: inherit; /* Renk mirası al */
    margin: 5px 0;  
}
.footer-distributed .footer-links a i {
  margin-right: 10px; /* İkon ile metin arasına boşluk ekle */
}
.footer-distributed .footer-company-name {
  color: #5a5a5a;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
/* Responsive düzen */
@media (max-width: 880px) {
  .footer-distributed {
      flex-direction: column; /* Kolonları üst üste getirir */
      padding: 50px 50px 40px 50px;
  }
  .footer-distributed .footer-left, 
  .footer-distributed .footer-center, 
  .footer-distributed .footer-right {
      width: 100%; /* Her sütun tam genişlik alır */
      text-align: center;
      padding: 10px 0;
  }
  .footer-distributed .footer-right .footer-company-about {
      text-align: center;
  }
  .footer-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 17px;
}
}   


.container-heading{
  width: 75%;
  margin: 0 auto;
  margin-bottom: 60px;
}

.about {
  /*display: flex;
  justify-content: space-between;
  align-items: flex-start;  Center'dan flex-start'a değiştirdim
  flex-wrap: wrap;*/
  margin-top: 60px;
}
.about-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
  flex-wrap: wrap;
  margin-top: 60px;
}
.about-news {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 60px;
}
.about-image,
.about-content {
  flex: 1 1 45%; /* Her iki elemanın da genişliklerini kontrol eder */
  min-width: 300px; /* Minimum genişlik belirleyerek hizalanmayı sağlar */
}

.about-image {
  margin-right: 50px;
  overflow: hidden;
  border-radius: 27px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: 0.5s ease;
  border-radius: 27px;
}

.about-image:hover img {
  transform: scale(1.2);
}

.about-content {
  flex: 1 1 45%; /* Aynı ayarı burada da uyguladım */
}

.about-content h2 {
  font-size: 23px;
  margin-bottom: 15px;
  color: #333;
}

.about-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

.about-content .read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffa8ed;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 15px;
  transition: 0.3s ease;
}

.about-content .read-more:hover {
  background-color: #ffcdf5;
}

@media screen and (max-width: 768px){
  .heading{
      padding: 0px 20px;
  }
  .heading h1{
      font-size: 36px;
  }
  .heading p{
      font-size: 17px;
      margin-bottom: 0px;
  }
  .container-heading{
      padding: 0px;
  }
  #proDetail .div-1{order: 2;width: 100%;margin-bottom: 20px;}
  #proDetail .div-2{ order: 1;width: 100%;}
  .about{
      flex-direction: column;
      align-items: center;
  }
  .about-image{
      margin-right: 0px;
      margin-bottom: 20px;
  }
  .about-content h2{margin-top: 15px;}
  .about-content p{
      padding: 0px;
      font-size: 16px;
  }
  .about-content .read-more{
      font-size: 16px;
  }
  .about-image,
  .about-content {
    flex: none;
    width: 100%;
    max-width: 500px;
    margin: 0;
  }
  .navbar-brand-image{width: 90px;height: auto;}
  
}

/*hakkimizda end*/
/* Mobil görünümdeki ürün satırı stili */
.mobile-product-row {
  display: none; /* Varsayılan olarak gizle */
    flex-direction: row;
    align-items: center;
    border: 1px solid #ddd; /* Çerçeve */
    border-radius: 8px; /* Köşeleri yuvarla */
    padding: 8px; /* İç boşluk */
    margin-bottom: 5px; /* Satırlar arasındaki boşluk */
    box-shadow: 0 4px 6px rgba(0, 0, 0 / 5%); /* Hafif gölge */
    background-color: #fff; /* Beyaz arka plan */
}

/* Resim boyutu */
.mobile-product-image {
  width: 50px; /* Resmin genişliği */
  height: 50px; /* Orantıyı korumak için */
  object-fit: cover;
  margin-right: 10px; /* Resim ile metin arasındaki boşluk */
  border-radius: 5px;
}

/* Mobil bilgi alanı */
.mobile-product-info {
  display: flex;
    flex-direction: column;
    justify-content: center; /* Metni ortalar */
    flex-grow: 1; /* Metin kısmının genişlemesine izin ver */
    margin-right: 20px;
}

/* Mobil başlık boyutu */
.mobile-product-title {
  font-size: 15px; /* Başlık boyutu */
    font-weight: bold;
    margin-bottom: 5px;  /* Başlık boyutu */
}

/* Mobil stok durumu */
.mobile-product-stock {
  background-color: white; /* Arka plan rengi */
  color: green; /* Yazı rengi */
  padding: 2px 10px; /* İç boşluk */
  border-radius: 12px; /* Yuvarlatılmış kenarlar */
  font-size: 12px; /* Yazı boyutu */
  display: inline-block; /* Badge olarak görünmesi için */
  margin-top: 5px; 
  border: 1px green solid;
}
.mobile-product-stock-out{
  background-color: white;
  color: red;
  padding: 2px 10px; /* İç boşluk */
  border-radius: 12px; /* Yuvarlatılmış kenarlar */
  font-size: 12px; /* Yazı boyutu */
  display: inline-block; /* Badge olarak görünmesi için */
  margin-top: 5px; 
  border: 1px red solid;
}
#productHeader{height: 300px;
  padding: 100px 100px;
  background-size: cover;
  background-position: center center;
}
#productHeader h1 {
  color: white;
  text-align: center;
  margin-top: 80px;
  font-weight: 700;
  font-size: 47px;
}

/* Medya sorgusu: Sadece mobilde görünüm */
@media (max-width: 768px) {
  .card-article {
      display: none!important; /* Masaüstü görünümünü gizle */
  }

  .mobile-product-row {
      display: flex; /* Mobilde göster */
  }
  .card-services{display: block!important;}
  .services{
    display: block!important;
    place-items: center;
    padding-block: 15px!important;
    margin-right: 15px;
    margin-left: 15px;
  }
  .navbar{padding-top: 10px!important;}
  #productHeader{    
    height: 250px!important;
    padding: 80px 80px!important;
    background-size: cover;
    background-position: center center;
  }
  #productHeader h1 {
    color: white;
    text-align: center;
    margin-top: 80px;
    font-weight: 700;
    font-size: 32px;
  }
  .card-container{margin-bottom: 50px;}
  .navbar-nav .dropdown-menu {
    display: none;
  }
  
  .navbar-nav .dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
  }
}


/*Projeler start*/

.services{
    display: grid;
    place-items: center;
    padding-block: 5rem;
}

.services h1{
    font-size: 40px;
    color: var(--dark-blue);
    margin-bottom: 25px;
    position: relative;
}

.services h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: var(--orange);
}

.card-services{
    display: grid;
    row-gap: 3.5rem;
}

.card-article{
    position: relative;
    overflow: hidden;
}

.card-img{
    width: 328px;
    border-radius: 1.5rem;
    border: .5px #8080802b solid;
}

.card-data{
    width: 280px;
    background-color: #00000094;;
    padding: 1.1rem;
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
    border-radius: 1rem;
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    opacity: 1;
    transition: opacity 1s 1s;
}
.card-data a{text-decoration: none;}
.card-description{
    display: block;
    font-size: 12px;
    margin-bottom: .25rem;
}

.card-title{
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: .75rem;
}

.card-article .block-a{display: block;}
/*animations in hover*/
/* .card-article:hover .card-data{
    animation: show-data 1s forwards;
    opacity: 1;
    transition: opacity .3s;
}

.card-article:hover{
    animation: remove-overflow 2s forwards;
}

.card-article:not(:hover){
    animation: show-overflow 2s forwards;
}

.card-article:not(hover) .card-data{
    animation: remove-data 1s forwards;
} */

/*card animation*/
@keyframes show-data{
    50%{
        transform: translateY(-10rem);
    }
    100%{
        transform: translateY(-7rem);
    }
}

@keyframes remove-overflow{
    to{
        overflow: initial;
    }
}

@keyframes remove-data{
    0%{
        transform: translateY(-7rem);
    }
    50%{
        transform: translateY(-10rem);
    }
    100%{
        transform: translateY(.5rem);
    }
}

@keyframes show-overflow{
    0%{
        overflow: initial;
        pointer-events: none;
    }
    50%{
        overflow: hidden;
    }
}

/*for small devices*/
@media screen and (max-width: 340px){
    .services{
        margin-inline: 1rem;
    }

    .card-data{
        width: 250px;
        padding: 1rem;
    }
    .services h1{
        font-size: 2.5em;
        font-weight: 600;
    }
}

/*for medium devices*/
@media screen and (min-width: 768px){
    .card-services{
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1.5rem;
    }
    
}

/*for large devices*/
@media screen and (min-width: 1120px){
    
    .card-services{
        grid-template-columns: repeat(3, 1fr);
    }
    .card-img{
      width: 348px;
      height: 250px;
      object-fit: cover;
    }
    .card-data{
        width: 316px;
        padding-inline: 2.5rem;
    }
}

/*Projeler end*/

/*katalog sayfası detay*/

.catalog-container-1{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
}
    
.catalog-container{
  width: 314px;
    padding: 37px 90px 37px 90px;
}

.catalog-container img{
  width: 130px;
}

.catalog-container h3{
  margin-top: 27px;
  font-size: 15px;
  margin-left: 5px;
  display: flex;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .catalog-container-1 {
    display: grid;
    height: auto!important;
  }
  .why-us {
    display: flex;
    flex-direction: column;
  }
  .cont-box .card{margin-bottom: 10px;}
  .pf-info hr {
    display: none;
  }
  .card-container{gap: 0!important;}
  #urunHome .card{margin-bottom: 10px;}
  .contact-map{height: 300px;flex: auto;}
  .wp-bottom-menu{display: flex!important;}
  /* .navbar .dropdown:hover .dropdown-menu {opacity: 1;margin-top: 0;pointer-events: auto;left: -90px;} */
  .product-image img{max-width: 85%!important;}
  .tabs-nav-side .tabs-nav{width: 100%!important;}
  .card-container{margin-top: 10px;}
}


.card-button2 {
  display: inline-block;
  background-color: #004b83;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  padding: 7px 12px;
  font-size: 12px;
}

.card-button2:hover{
  color: #fff;
  background: #399ee9;
}

.catalog-btn {
  display: inline-block;
  background-color: #004b83;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 13px;
}

.catalog-btn:hover{
  color: #fff;
  background: #399ee9;
}

.cont-box .card{background-color: #fff!important;padding: 20px;color: #004b83;}
.cont-box .card:hover{background-color: #fff!important;color: #000!important;}
.cont-box .why-us{padding-bottom: 0!important;}
.why-us {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 75px auto;
  text-align: center;
  padding-bottom: 74px;
}
.cont-box .card .icon {
  font-size: 35px;
  margin-bottom: 10px;
}
.cont-box .card h2 {
  font-size: 28px;
  color: #000;
  margin-bottom: 20px;
}
.cont-box .card p {
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1;
  color: #000;
}
.tabs-nav-shadowed .tabs-nav {
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  background-color: #fff;
padding-top: 0;
}

.tabs-nav-title {
    background: #23397f;
background: -moz-linear-gradient(left, #23397f 0%, #88acec 100%);
background: -webkit-linear-gradient(left, #23397f 0%,#88acec 100%);
background: linear-gradient(to right, #23397f 0%,#88acec 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#23397f', endColorstr='#88acec',GradientType=1 );
  color: #fff;
  padding: 20px 40px !important;
}

.tabs-nav-title h4 {
  color: #fff;
}


.tabs-nav li.active a, .tabs-nav li a:hover, .tabs-nav li a:focus {
  color: #23397f;
  background-color: transparent;
  text-decoration: none;
}

.breadcrumb.inline-nav > li + li {
  margin-left: 0;
}

.tabs-nav-side {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: stretch;
  justify-content: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  flex-wrap: wrap;
}
.tabs-nav-side .tabs-nav {
  width: 87%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    flex-wrap: inherit;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin-top: 62px;
}
.tabs-nav-side .tabs-nav li {
  width: 100%;
  -webkit-box-pack: start;
  justify-content: flex-start;
  font-size: 16px;
  text-align: left;
  -webkit-transition: font-weight 0.3s;
  transition: font-weight 0.3s;
}
.tabs-nav li {
  padding: 0;
  margin: 0;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: inherit;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  justify-content: center;
}
.tabs-nav-side .tabs-nav a {
  width: 100%;
  -webkit-box-flex: 1;
  flex: 1 auto;
  padding: 9px 40px;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-decoration: none;
  color: #a7a9b8;
  background-color: transparent;
  text-decoration: none;
}

.product-image{
  margin-right: 50px;
  overflow: hidden;
  border-radius: 27px;
}

.product-image img{
  max-width: 100%;
  height: auto;
  display: block;
  transition: 0.5s ease;
  border-radius: 27px;
  width: 300px;
}

.product-image:hover img{
  transform: scale(1.2);
}
.overlay {
  position: relative;
  z-index: 0;
}
.overlay::before {
  position: absolute;
  content: "";
  background-color: #0000004d;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pf-info {
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  font-size: 16px;
  line-height: 1.2em;
}
.about-content .pf-info hr {
  width: 50px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border-color: #181b31;
}
.footer-distributed .footer-center div{display: flex;align-items:center;margin-bottom: 10px;}

/* MOBİL SABİT MENÜ CSS */

:root{--wpbottommenu-font-size:12px;--wpbottommenu-icon-size:24px;
  --wpbottommenu-text-color:rgb(217 128 141);
  --wpbottommenu-h-text-color:rgb(217 128 141);
  --wpbottommenu-icon-color:rgb(217 128 141);
  --wpbottommenu-h-icon-color:rgb(217 128 141);
  --wpbottommenu-bgcolor:#ffffff;
  --wpbottommenu-zindex:999990;
  --wpbottommenu-cart-count-bgcolor:rgb(217 128 141);
  --wpbottommenu-wrapper-padding:10px 0}

.wp-bottom-menu{
  display:none;
  background:var(--wpbottommenu-bgcolor);
  width:100%;position:fixed;bottom:0;left:0;justify-content:space-around;padding:var(--wpbottommenu-wrapper-padding);box-shadow:0 -5px 10px rgba(0,0,0,.1);z-index:9999999;transition:all 200ms}
.wp-bottom-menu-item{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;height:auto;flex:1;font-size:var(--wpbottommenu-font-size);color:#000!important;cursor:pointer;user-select:none;text-decoration:none!important;transition:color 200ms;border-right:1px solid #ddd}
.wp-bottom-menu-icon-wrapper{position:relative;line-height:0}
.wp-bottom-menu-item i{font-size:var(--wpbottommenu-icon-size);color:#004b83;transition:color 200ms}
.wp-bottom-menu-item span{margin-top:5px;color:inherit!important}

.footerLogo img{width: 120px;height: auto;}
.fiberMedya{float: right;}
.sertifika-row img{width: 100%;height: 400px;}
#selectedFlag2{width: 23px;vertical-align: text-bottom;}
#urunDropdown .dropdown-menu{top: 50px;right: -1px;}
#dilButon .dropdown-menu{top: 26px!important;right: -30px!important;}
.footer-center .appLink{flex-direction: column;}
.wrapper {
  position: fixed;
  bottom: 15px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 15px;
  transition: right 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 5px 10px rgb(0 0 0 / 22%);
  z-index: 10;
  opacity: 0;
}
.wrapper.show {
  right: 20px;
  opacity: 1;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  color: #004b83;
  font-size: 28px;
}
header h2 {
  color: #004b83;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 0;
}
.wrapper .data {
  margin-top: 8px;
}
.wrapper .data p {
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
}
.data p a {
  color: #004b83;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 4px 0;
  border-radius: 4px;
  background: #004b83;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
  pointer-events: auto;
}
.buttons #acceptBtn:hover {
  background-color: #4070f4;
}
#declineBtn {
  border: 2px solid #004b83;
  background-color: #fff;
  color: #004b83;
}
#declineBtn:hover {
  background-color: #4070f4;
  color: #fff;
}
@media (max-width: 768px) {
  .wrapper {
    right: 20px;
    left: 20px;
    bottom: 75px;
    width: auto;
    max-width: none;
    padding: 10px 15px;
  }
  .wrapper.show{left: 20px!important;}
  header h2 {
    font-size: 22px;
  }
  header i {
    font-size: 24px;
  }
  .wrapper .data p {
    font-size: 12px;
  }
  .buttons .button {
    padding: 6px 0;
  }
  .contact-in {
    display: flex;
    flex-direction: column;
  }
  #urunDrop .dropdown-menu{border: 0!important}
  .footer-center .appLink{flex-direction: row;}
  .footer-center .appLink .googlePlay{margin-bottom: 0!important;margin-right: 1rem;}
}
.button-product{background-color: #004a83ce;color: #fff;border: 1px #004a83ce solid;}
.button-product:hover{color: #004a83ce;border: 1px #004a83ce solid;}
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
      display: block;
  }
}

/* Mobilde dropdown menüsü başlangıçta gizli olacak */
@media (max-width: 991px) {
  .dropdown-menu {
      display: none;
  }
}