@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

body {
  font-family: "Poppins", sans-serif;
  line-height: normal;
}

html {
  scroll-behavior: smooth;
}


/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 20px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li,
.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  position: relative;
}

.content-wrapper p {
  margin-bottom: 16px;
}

.content-wrapper h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.content-wrapper h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.content-wrapper h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.content-wrapper h5 {
  font-size: 18px;
  margin-bottom: 20px;
}

.content-wrapper h6 {
  font-size: 17px;
  margin-bottom: 20px;
}

.content-wrapper img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  height: auto;
  margin: 20px 0;
}

.content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.content-wrapper table th,
.content-wrapper table td {
  border: 1px solid black;
  padding: 10px;
  text-align: left;
}
/* CONTENT WRAPPER END */

/* general */

.mobile-nav {
  display: none;
}

.mobile-close-menu {
  display: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
  z-index: 9999;
}

.alert-danger {
  background-color: #f44336;
  border: none;
}

.alert-success {
  background-color: #4caf50;
  border: none;
}

.alert {
  width: 100%;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 4px;
}

.fly-alert {
  position: fixed;
  top: 100px;
  right: 50px;
  z-index: 9999;
  margin: 0;
  font-size: 18px;
  display: inline-block;
  width: auto;
}

@media (min-width: 992px) {
  .header-mobile {
    display: none;
  }
}

@media (max-width: 992px) {
  .fly-alert {
    top: 30px;
    left: 10px;
    right: 10px;
    font-size: 16px;
    text-align: center;
  }
  .mobile-header-icons {
    display: flex;
  }

  .mobile-header-icons .i {
    font-size: 22px;
  }

  .mobile-header-icons a i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  .mobile-header-icons a i.fa-solid.fa-location-dot {
    margin-left: 15px;
    background-color: green;
  }

  .mobile-header-icons a i.fa-solid.fa-phone {
    background-color: blue;
  }

  .mobile-header-hamburger .hamburger-toggle {
    background: transparent;
    padding: 0px;
    margin: 0 10px;
    border: none;
    display: flex;
    align-items: center;
    outline: none;
    color: #222;
  }

  .mobile-header-hamburger .hamburger-toggle i {
    font-size: 30px;
    margin-left: 10px;
  }

  /* mobil menÃ¼ - 1 */

  .mobile-nav {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    width: 100%;
    -webkit-animation: fadeOutLeft 0.5s ease-in-out;
    animation: fadeOutLeft 0.5s ease-in-out;
  }

  .mobile-nav-content {
    padding-top: 20px;
    background: #1d1e1f;
    width: 75%;
    height: 100%;
    cursor: copy;
  }

  .mobile-nav-logo {
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 20px;
  }

  .mobile-nav-logo-content {
    position: relative;
  }

  .mobile-nav-logo-content i {
    display: block;
    margin: 0 auto 10px;
    max-width: 30px;
    line-height: 32px;
    font-size: 30px;
  }

  .mobile-nav-logo-content a {
    color: #b5bbc2;
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-nav-logo > a {
    display: block;
    padding: 30px 60px;
  }

  .mobile-nav-logo > a img {
    width: 100%;
  }

  .mobile-nav-menu ul li {
    padding: 10px 25px;
    width: 100%;
  }

  .sub-menu ul {
    background-color: #28292a;
  }

  .mobile-nav-menu ul li .sub-menu-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mobile-nav-menu ul li i {
    font-size: 14px;
    fill: #b5bbc2;
    color: #b5bbc2;
  }

  .mobile-nav-menu ul li a {
    color: #b5bbc2;
    font-weight: 600;
    font-size: 14px;
  }

  .mobile-nav-menu ul li ul {
    display: none;
    margin-top: 10px;
    margin-right: -25px;
    margin-left: -25px;
    padding-left: 25px;
  }

  .mobile-nav-login a {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #b5bbc2;
    padding-left: 25px;
    padding-bottom: 20px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mobile-nav-login a svg {
    font-size: 18px;
    margin-right: 5px;
  }

  .mobile-nav.open {
    display: block;
    -webkit-animation: fadeInLeft 0.5s;
    animation: fadeInLeft 0.5s;
  }

  .cta-link {
    line-height: 40px;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    display: block;
    color: #fff;
    border-radius: 3px;
    background: #2196f3;
    text-align: center;
    margin: 20px;
    margin-bottom: 10px;
  }

  .mobile-close-menu {
    position: fixed;
    top: 18px;
    right: 20px;
    display: none;
    z-index: 99999;
  }

  .mobile-close-menu i {
    color: #fff;
    font-size: 25px;
  }

  ul.mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    list-style: none;
  }

  ul.mobile-menu-social li + li {
    margin-left: 15px;
  }

  ul.mobile-menu-social li a {
    border: 1px solid #2196f3;
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
  }

  .mobile-nav-menu ul {
    padding: 0px;
  }

  .header-mobile {
    display: block;
  }

  .header-mobile-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-mobile .header-mobile-logo img {
    max-width: 120px;
  }
}

a:hover {
  text-decoration: none;
  transition: all 0.3s ease;
}

#scroll-top {
  position: fixed;
  right: 10px;
  bottom: 80px;
  margin: 0;
  text-decoration: none;
  z-index: 9999999999999999;
}

#scroll-top button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  background-color: #ed1a24;
  color: #fff;
  display: block;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  border: none;
}

#scroll-top button i {
  font-size: 30px;
}

.section-title {
  text-transform: uppercase;
  font-size: 30px;
  color: #ed1a24;
  letter-spacing: 0.07em;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  top: 40px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #ed1a24;
}

.section-desc {
  text-align: center;
  font-weight: lighter;
  margin-bottom: 50px;
}

.button-w a {
  display: inline-block;
  border: 1px solid #ed1a24;
  text-transform: uppercase;
  font-size: 14px;
  color: #221e20;
  line-height: 25px;
  min-height: 35px;
  min-width: 195px;
  padding: 5px 35px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.button-w a:hover {
  background-color: #ed1a24;
  color: white;
  transition: transform 0.3s ease;
}

.container-75 {
  width: 75%;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

@media (max-width: 992px) {
  .section-title {
    font-size: 20px;
  }
}

/* header */

.header-berk {
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 300;
  background: white;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 2px #ed1a24;
}

.header-berk .header-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-berk .menu-area {
  display: flex;
  justify-content: end;
  align-items: center;
}

.header-berk .header-area img {
  max-width: 130px;
}

.header-berk .header-area ul {
  display: flex;
  margin: 0px;
  padding: 0px;
}

.header-berk .header-area ul li {
  list-style: none;
}

.header-berk .header-area ul li a {
  color: black;
  font-size: 15px;
  font-weight: 500;
  padding: 28px 20px;
}

.header-berk .header-area ul li a:hover {
  color: #ed1a24;
  transition: transform 0.3s ease;
}

.header-berk .header-area ul ul {
  display: none;
  position: absolute;
  top: 30px;
  width: auto;
  transition: all 0.3s ease;
}

.header-berk .header-area ul li:hover ul {
  display: block;
  background: rgba(255, 255, 255, 0.75);
  z-index: 10;
  margin: 0px;
  margin-left: -20px;
  top: 64px;
  border-left: solid 2px #ed1a24;
  border-right: solid 2px #ed1a24;
  border-bottom: solid 2px #ed1a24;
  transition: all 0.3s ease;
}

.header-berk .header-area ul li:hover ul li {
  margin: 0px;
  transition: all 0.3s ease;
  border: none;
}

.header-berk .header-area ul li:hover ul li a {
  color: black;
  display: block;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 10px 40px;
}

.header-berk .header-area ul li:hover ul li a:hover {
  text-decoration: none;
  color: #ed1a24;
  transition: all 0.3s ease;
}

/* 1️⃣ Varsayılan (masaüstü: 992px ve üstü) */
.header-berk .header-area ul li.has-children > .menu-item-wrapper a:after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f107";
  margin-left: 3px;
  display: inline-block; /* masaüstünde ikon görünsün */
}

.header-berk .header-area ul li .submenu-toggle {
  display: none; /* buton gizli */
}

/* 2️⃣ 992px altı (mobil görünüm) */
@media (max-width: 991px) {
  .header-berk .header-area ul li.has-children > .menu-item-wrapper a:after {
    display: none; /* masaüstü ikonunu gizle */
  }

  .header-berk .header-area ul li .submenu-toggle {
    display: inline-flex; /* mobilde buton görünsün */
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0 6px;
    font-size: 14px;
    color: inherit;
    cursor: pointer;
  }
}

.header-berk .lang img {
  margin-top: -3px;
}

.header-berk .lang a img {
  margin-top: -3px;
}

.header-area.fixed-header {
  background-color: white;
  border-bottom: solid 2px #ed1a24;
  padding: 5px 0 5px;
  justify-content: space-around;
}

.header-area.fixed-header ul li:hover ul {
  background: white;
  border-left: solid 2px #ed1a24;
  border-right: solid 2px #ed1a24;
  border-bottom: solid 2px #ed1a24;
}

@media (max-width: 992px) {
  .header-berk {
    display: none;
  }
}

/* mobile header */
.mobile-header-icons a i.fa-solid.fa-phone {
  background-color: #221e20;
}

.mobile-header-icons a i.fa-solid.fa-location-dot {
  margin-left: 15px;
  background-color: #ed1a24;
}

.cta-link {
  background: #ed1a24;
}

ul.mobile-menu-social li a {
  border: 1px solid #ed1a24;
}

.header-mobile.fixed-header {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

/* slider */

.slider-berk {
  position: relative;
  background: url(../img/slider1.jpg);
  height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-berk .slider-area {
  height: 700px;
  align-items: center;
}

.slider-berk .slider-area .text-area {
  padding-left: 100px;
}

.slider-berk .slider-area .picture-area {
  padding-left: 100px;
  padding-right: 100px;
}

.slider-berk .slider-area .title {
  font-size: 30px;
  color: white;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 10px;
}

.slider-berk .slider-area .desc {
  color: white;
  margin-bottom: 20px;
}

.slider-berk .slider-area .button a {
  display: inline-block;
  border: 1px solid white;
  text-transform: uppercase;
  font-size: 14px;
  color: white;
  line-height: 25px;
  min-height: 35px;
  min-width: 195px;
  padding: 5px 35px;
  text-align: center;
  border-radius: 5px;
}

.slider-berk .slider-area .button a:hover {
  background-color: #ed1a24;
  color: white;
  transition: transform 0.3s ease;
}

.slider-berk .swiper-button-prev,
.slider-berk .swiper-button-next,
.services-slider .swiper-button-prev,
.services-slider .swiper-button-next {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  line-height: 1;
}

.slider-berk .swiper-button-prev::after,
.slider-berk .swiper-button-next::after,
.services-slider .swiper-button-prev::after,
.services-slider .swiper-button-next::after {
  display: none;
}

.slider-berk .swiper-button-prev {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
}

.slider-berk .swiper-button-next {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
}

.slider-berk .swiper-button-prev:hover,
.slider-berk .swiper-button-next:hover {
  background: white;
  color: black;
  text-decoration: none;
  transition: all 0.3s ease;
}

.slider-berk .swiper-button-prev i {
  color: white;
  font-size: 25px;
  background-color: #ed1a24;
  padding: 15px 20px;
  margin-left: -70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-berk .swiper-button-next i {
  color: white;
  font-size: 25px;
  background-color: #ed1a24;
  padding: 15px 20px;
  margin-right: -70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-berk .swiper-button-prev i:hover {
  color: white;
  background-color: black;
  transition: all 0.3s ease;
}

.slider-berk .swiper-button-next i:hover {
  color: white;
  background-color: black;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .container-75 {
    width: 100%;
  }

  .slider-berk {
    height: 500px;
  }

  .slider-berk .slider-area {
    height: 500px;
  }

  .slider-berk .slider-area .text-area {
    padding-left: 15px;
    text-align: center;
  }

  .slider-berk .slider-area .title {
    font-size: 20px;
  }

  .slider-berk .slider-area .desc {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .slider-berk .slider-area .picture-area {
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
  }

  .slider-berk .swiper-button-prev {
    left: 50px;
    top: 90%;
  }

  .slider-berk .swiper-button-next {
    right: 50px;
    top: 90%;
  }
}

/* Slogan */

.slogan-berk {
  padding: 80px 0 80px;
}

.slogan-berk .buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 15%;
  margin-right: 15%;
}

.slogan-berk .buttons a {
  display: inline-block;
  border: 1px solid #ed1a24;
  text-transform: uppercase;
  font-size: 14px;
  color: #221e20;
  line-height: 25px;
  min-height: 35px;
  min-width: 195px;
  padding: 5px 35px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.slogan-berk .buttons a:hover {
  background-color: #ed1a24;
  color: white;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .slogan-berk .buttons {
    display: block;
    margin: 0;
    text-align: center;
  }

  .slogan-berk .buttons a {
    margin-bottom: 20px;
  }
}

/* WORKS */

.works-berk {
  padding: 80px 0 80px;
  background-color: #f4f4f4;
}

.works-berk .item {
  position: relative;
  margin-bottom: 35px;
  transition: all 0.3s ease;
}

.works-berk .ImageContainer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
  transition: all 0.3s ease;
}

.works-berk .item:hover .ImageContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: black;
  opacity: 0.8;
}

.works-berk .content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.works-berk .content i {
  font-size: 20px;
}

.works-berk .content .title {
  font-size: 20px;
  text-align: center;
  padding: 0px 10px;
  margin-bottom: 10px;
}

.works-berk .content .desc {
  text-align: center;
  padding: 0px 10px;
  margin-bottom: 10px;
}

.works-berk .box-title a {
  color: white;
  text-decoration: none;
  background-color: #ed1c24;
  padding: 5px 20px;
  display: block;
}

.works-berk .bottom-title {
  background-color: #ed1a24;
  text-align: center;
  padding: 8px 5px;
  color: white;
  text-decoration: none;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .works-berk {
    padding: 20px 0 20px;
  }

  .works-berk .item {
    margin-bottom: 0px;
  }
}

/* upload contact*/

.upload-form-berk {
  padding: 80px 0 80px;
}

.upload-form-berk .title {
  text-transform: uppercase;
  font-size: 20px;
  color: #ed1a24;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  margin-bottom: 35px;
}

.upload-form-berk .upload {
  width: 100%;
  height: 407px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-form-berk .contact-form .text-1 input {
  width: 48%;
  margin-right: 10px;
  height: 40px;
  float: left;
  background: #fff;
  border: none;
  border: 1px solid #ced4da;
  padding: 0 15px;
  margin-bottom: 20px;
}

.upload-form-berk .contact-form .text-2 input {
  width: 98%;
  margin-right: 10px;
  height: 40px;
  float: left;
  background: #fff;
  border: none;
  border: 1px solid #ced4da;
  padding: 0 15px;
  margin-bottom: 20px;
}

.upload-form-berk .contact-form .text-3 input {
  width: 31.4%;
  margin-right: 10px;
  height: 40px;
  float: left;
  background: #fff;
  border: none;
  border: 1px solid #ced4da;
  padding: 0 15px;
  margin-bottom: 20px;
}

.upload-form-berk .contact-form textarea {
  width: 98%;
  height: 115px;
  float: left;
  text-align: left;
  border: none;
  background: #fff;
  border: 1px solid #ced4da;
  margin-bottom: 20px;
  padding: 15px;
}

.upload-form-berk .contact-form input::placeholder {
  font-size: 13px;
}

.upload-form-berk .contact-form textarea::placeholder {
  font-size: 13px;
}

.upload-form-berk .contact-form .button input {
  background-color: #ed1a24;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  width: 98%;
  padding: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-form-berk .contact-form .button input:hover {
  background-color: black;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .upload-form-berk .title {
    font-size: 18px;
  }

  .upload-form-berk .upload {
    margin-bottom: 20px;
  }

  .upload-form-berk .contact-form .text-1 input {
    width: 100%;
  }

  .upload-form-berk .contact-form .text-2 input {
    width: 100%;
  }

  .upload-form-berk .contact-form .text-3 input {
    width: 30.4%;
    text-align: center;
  }
}

/* Footer */

.footer-berk {
  padding: 30px 0 30px;
  background: #191919;
}

.footer-berk .title {
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-berk .infos a {
  display: block;
  color: white;
  margin-left: 7px;
}

.footer-berk .infos a:hover {
  color: grey;
  transition: transform 0.3s ease;
}

.footer-berk .info {
  display: flex;
  color: white;
}

.footer-berk ul {
  margin: 0px;
  padding: 0px;
}

.footer-berk ul li {
  list-style: none;
}

.footer-berk ul li a {
  display: block;
  color: white;
}

.footer-berk ul li a:hover {
  color: grey;
  transition: transform 0.3s ease;
}

.footer-berk img {
  padding-top: 25px;
  max-width: 230px;
}

@media (max-width: 992px) {
  .footer-berk {
    text-align: center;
  }

  .footer-berk .info {
    justify-content: center;
  }

  .footer-berk .desc {
    margin-bottom: 30px;
  }

  .footer-berk .infos {
    margin-bottom: 30px;
  }

  .footer-berk .icon a {
    margin-right: 0px;
  }

  .footer-berk ul {
    margin-bottom: 25px;
  }
}

/* footer bar */

.footer-sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #ed1a24;
  z-index: 9999;
  text-align: center;
}

.footer-sticky-bar a {
  color: #fff;
  width: 100%;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
}

.footer-sticky-bar a i {
  position: relative;
  bottom: -1px;
  margin-right: 10px;
  font-size: 30px;
}

@media (max-width: 992px) {
  .footer-sticky-bar {
    display: block;
  }
}

/* sticky cta bar*/

.sticky-cta {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.sticky-cta a {
  display: block;
  position: relative;
  background-color: #ed1a24;
  color: #fff;
  padding: 15px 10px;
  border-radius: 4px 0 0 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .sticky-cta {
    display: none;
  }
}

/* home text image */

.text-image-berk {
  padding: 80px 0 80px;
}

.text-image-berk .items {
  align-items: center;
}

.text-image-berk .title {
  text-transform: uppercase;
  font-size: 25px;
  color: #ed1a24;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .text-image-berk {
    text-align: center;
  }

  .text-image-berk .text-area {
    margin-bottom: 30px;
  }

  .text-image-berk .items {
    flex-direction: column-reverse;
  }

  .text-image-berk .title {
    font-size: 18px;
  }
}

/* home counter */

.counter-berk {
  padding: 80px 0 80px;
  background-color: #f4f4f4;
}

.counter-berk .item {
  border-right: solid 1px #ed1a24;
}

.counter-berk .item:last-child {
  border: none;
}

.counter-box .icon {
  text-align: center;
  margin-bottom: 10px;
}

.counter-berk .counter-box .icon a {
  letter-spacing: -0.05em;
  text-indent: -0.05em;
  display: inline-block;
  height: 125px;
  width: 125px;
  line-height: 115px;
  background-color: #ed1a24;
  box-shadow: 0px 0px 0px 2px #ed1a24;
  text-align: center;
  color: white;
  font-size: 55px;
  font-weight: bold;
  font-family: Roboto, arial, sans-serif;
  text-decoration: none;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 5px solid #f0f2f4;
}

.counter-berk .counter-box .icon a:hover {
  color: white;
  background-color: #000;
  box-shadow: 0px 0px 0px 2px #000;
  transition: transform 0.3s ease;
}

.counter-berk .counter-box .title {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #ed1a24;
  line-height: 1.27em;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.counter-berk .counter-box .desc {
  text-align: center;
  font-weight: lighter;
  margin-bottom: 15px;
}

.counter-berk .counter-box .button {
  text-align: center;
}

.counter-berk .counter-box .button a {
  text-transform: uppercase;
  font-size: 15px;
  color: #ed1a24;
  font-weight: 600;
  transition: all 0.3s ease;
}

.counter-berk .counter-box .button a:hover {
  color: black;
  transition: transform 0.3s ease;
}

.counter-berk .button-w {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .counter-berk .counter-box {
    margin-bottom: 35px;
  }
  .counter-berk .counter-box .title {
    font-size: 16px;
  }
}

/* home why us */

.why-us-berk {
  padding: 80px 0 80px;
}

.why-us-berk .why-us-area {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.why-us-berk .picture {
  text-align: right;
}

.why-us-berk .icon {
  min-height: 90px;
  min-width: 90px;
  border: solid 2px #ed1a24;
  border-radius: 50%;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fal, .fa-light,
.fat, .fa-thin,
.fad, .fa-duotone {
  font-family: "Font Awesome 7 Free" !important;
  font-weight: 900 !important;
}

/* FA 5 Pro → FA 7 Free icon name aliases (DB'deki eski ikon isimleri için) */
.fa-angle-double-left::before { content: "\f100"; }
.fa-angle-double-right::before { content: "\f101"; }
.fa-angle-double-up::before { content: "\f102"; }
.fa-angle-double-down::before { content: "\f103"; }
.fa-long-arrow-left::before { content: "\f177"; }
.fa-long-arrow-right::before { content: "\f178"; }
.fa-long-arrow-alt-left::before { content: "\f177"; }
.fa-long-arrow-alt-right::before { content: "\f178"; }
.fa-times::before { content: "\f00d"; }
.fa-home::before { content: "\f015"; }
.fa-map-marker-alt::before { content: "\f3c5"; }
.fa-phone-square::before { content: "\f098"; }
.fa-facebook-square::before { content: "\f082"; }
.fa-twitter-square::before { content: "\f081"; }
.fa-arrow-circle-right::before { content: "\f0a9"; }
.fa-arrow-circle-left::before { content: "\f0a8"; }
.fa-arrow-circle-up::before { content: "\f0aa"; }
.fa-arrow-circle-down::before { content: "\f0ab"; }
.fa-play-circle::before { content: "\f144"; }
.fa-pause-circle::before { content: "\f28b"; }
.fa-search::before { content: "\f002"; }
.fa-search-plus::before { content: "\f00e"; }
.fa-search-minus::before { content: "\f010"; }
.fa-external-link-alt::before { content: "\f35d"; }
.fa-external-link::before { content: "\f08e"; }
.fa-sign-in-alt::before { content: "\f2f6"; }
.fa-sign-out-alt::before { content: "\f2f5"; }
.fa-trash-alt::before { content: "\f2ed"; }
.fa-edit::before { content: "\f044"; }
.fa-times-circle::before { content: "\f057"; }
.fa-check-circle::before { content: "\f058"; }
.fa-info-circle::before { content: "\f05a"; }
.fa-question-circle::before { content: "\f059"; }
.fa-exclamation-circle::before { content: "\f06a"; }
.fa-minus-circle::before { content: "\f056"; }
.fa-plus-circle::before { content: "\f055"; }
.fa-user-circle::before { content: "\f2bd"; }
.fa-cog::before { content: "\f013"; }
.fa-cogs::before { content: "\f085"; }
.fa-shopping-cart::before { content: "\f07a"; }
.fa-shopping-bag::before { content: "\f290"; }
.fa-shopping-basket::before { content: "\f291"; }
.fa-tachometer-alt::before { content: "\f3fd"; }
.fa-mobile-alt::before { content: "\f3cd"; }
.fa-tablet-alt::before { content: "\f3fa"; }
.fa-chevron-circle-right::before { content: "\f138"; }
.fa-chevron-circle-left::before { content: "\f137"; }
.fa-chevron-circle-up::before { content: "\f139"; }
.fa-chevron-circle-down::before { content: "\f13a"; }
.fa-caret-square-right::before { content: "\f152"; }
.fa-caret-square-left::before { content: "\f191"; }
.fa-caret-square-up::before { content: "\f151"; }
.fa-caret-square-down::before { content: "\f150"; }
.fa-volume-up::before { content: "\f028"; }
.fa-volume-down::before { content: "\f027"; }
.fa-volume-off::before { content: "\f026"; }
.fa-clock-o::before { content: "\f017"; }
.fa-file-pdf-o::before { content: "\f1c1"; }
.fa-file-image-o::before { content: "\f1c5"; }
.fa-pencil::before { content: "\f303"; }
.fa-pencil-alt::before { content: "\f303"; }
.fa-file-alt::before { content: "\f15c"; }
.fa-image::before { content: "\f03e"; }
.fa-eye-slash::before { content: "\f070"; }
.fa-thumbs-up::before { content: "\f164"; }
.fa-thumbs-down::before { content: "\f165"; }
.fa-paper-plane::before { content: "\f1d8"; }
.fa-handshake::before { content: "\f2b5"; }

.why-us-berk .icon i {
  font-size: 35px;
  color: #ed1a24;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-berk .title {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #ed1a24;
  font-weight: 600;
  margin-bottom: 5px;
}

.why-us-berk .desc {
  font-weight: lighter;
}

.why-us-berk .icon-end {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 15px;
}

.why-us-berk .item:nth-child(even) .icon-end:after {
  content: "";
  height: 34px;
  width: 92px;
  background-image: url(..//img/arrow-1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 17px;
  right: -50px;
}

.why-us-berk .item:nth-child(odd) .icon-end:after {
  content: "";
  height: 34px;
  width: 92px;
  background-image: url(..//img/arrow-2.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 17px;
  right: -50px;
}

.why-us-berk .item:last-child .icon-end:after {
  display: none;
}

.why-us-berk .icon-end i {
  font-size: 40px;
  color: #ed1a24;
  padding: 17px;
  border: solid 2px #ed1a24;
  min-height: 80px;
  min-width: 90px;
  transition: all 0.3s ease;
}

.why-us-berk .icon-end-title {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #ed1a24;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}

@media (max-width: 992px) {
  .why-us-berk .item:nth-child(even) .icon-end:after {
    display: none;
  }

  .why-us-berk .item:nth-child(odd) .icon-end:after {
    display: none;
  }

  .why-us-berk .picture {
    text-align: center;
    margin-bottom: 35px;
  }
}

/* parallax video homepage */

.parallax-video-berk {
  position: relative;
  padding: 100px 0 110px;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/parallax-bg.jpg);
  text-align: center;
}

.parallax-video-berk .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0.8;
}

.parallax-video-berk .title {
  font-size: 30px;
  color: white;
  letter-spacing: 0.07em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.video-area button {
  background: no-repeat;
  border: none;
  outline: 0;
}

.video-area button i {
  color: white;
  font-size: 60px;
}

.video-area button i:hover {
  color: #ed1a24;
  transition: transform 0.3s ease;
}

.video-area .modal {
  top: 48%;
  transform: translateY(-50%);
}

.video-area .modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}

.video-area .modal-body {
  position: relative;
  padding: 0px;
}

.video-area .close {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 999;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  opacity: 1;
}

@media (max-width: 992px) {
  .parallax-video-berk .title {
    font-size: 20px;
  }
}

/* bredcrumb */

.bredcrumb-berk {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url(../img/slider1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 40px;
}

.bredcrumb-berk .title {
  text-align: center;
  color: white;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.bredcrumb-berk ul {
  display: flex;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  color: white;
}

.bredcrumb-berk ul li {
  list-style: none;
}

.bredcrumb-berk ul li a {
  color: white;
}

.bredcrumb-berk ul li a:hover {
  color: #ed1a24;
  transition: transform 0.3s ease;
}

.bredcrumb-berk ul li a:after {
  margin-left: 10px;
  margin-right: 10px;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f054";
}

@media (max-width: 992px) {
  .bredcrumb-berk {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .bredcrumb-berk .title {
    font-size: 18px;
  }

  .bredcrumb-berk ul li a {
    font-size: 13px;
  }
}

/* full width page*/

.f-w {
  padding: 70px 0 70px;
}

.f-w img {
  max-width: 100%;
}

/* services detail */

.services-detail {
  padding: 70px 0 70px;
}

.services-detail .left-sidebar-area {
  padding: 0;
}

.services-detail .right-slider-text-area {
  padding: 0;
}

.services-detail .left-sidebar {
  position: sticky;
  top: 66px;
}

.services-detail .left-sidebar .title {
  padding: 15px 10px 15px;
  background-color: #ed1a24;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.services-detail .left-sidebar .menu ul li a {
  padding: 5px;
  display: inline-block;
  color: black;
  font-size: 15px;
  width: 100%;
  font-weight: 500;
}

.services-detail .left-sidebar .menu ul li a:hover {
  color: #ed1a24;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.services-slider {
  margin-bottom: 30px;
}

.services-slider .swiper-button-prev {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
}

.services-slider .swiper-button-next {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
}

.services-slider .swiper-button-prev:hover,
.services-slider .swiper-button-next:hover {
  background: white;
  color: black;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-slider .swiper-button-prev i {
  color: white;
  font-size: 25px;
  background-color: #ed1a24;
  padding: 15px 20px;
  margin-left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-slider .swiper-button-next i {
  color: white;
  font-size: 25px;
  background-color: #ed1a24;
  padding: 15px 20px;
  margin-right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-slider .swiper-button-prev i:hover {
  color: white;
  background-color: black;
  transition: all 0.3s ease;
}

.services-slider .swiper-button-next i:hover {
  color: white;
  background-color: black;
  transition: all 0.3s ease;
}

.services-detail .text-area {
  padding: 15px 25px 15px;
}

.services-detail .text-area img {
  max-width: 100%;
}

.services-detail .right-sidebar .box {
  outline: 1px solid #aeaeae;
  border-top: 5px solid #ed1a24;
  padding: 11px 9px;
  margin-bottom: 30px;
  text-align: center;
}

.services-detail .right-sidebar {
  position: sticky;
  top: 66px;
}

.services-detail .right-sidebar .box a {
  font-weight: 600;
  color: black;
  padding: 20px 5px 20px;
  display: inline-block;
}

.services-detail .right-sidebar .box a:hover {
  color: #ed1a24;
  transition: transform 0.3s ease;
}

.services-detail .right-sidebar .box a i {
  display: block;
  font-size: 30px;
}

@media (max-width: 992px) {
  .services-detail {
    padding: 20px 0 20px;
  }

  .services-detail .left-sidebar {
    position: static;
    top: 0;
    text-align: center;
  }

  .services-detail .right-sidebar {
    position: static;
    top: 0;
    margin-left: 40px;
    margin-right: 40px;
  }

  .services-detail .text-area {
    padding: 10px;
  }

  .clear1 {
    margin: 0;
  }
}

/* blog list */

.blog-list {
  padding: 70px 0 70px;
}

.blog-box {
  margin-bottom: 30px;
}

.blog-box .picture {
  margin-bottom: 15px;
}

.blog-box .title a {
  color: black;
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
}

.blog-box .title a:hover {
  color: #ed1a24;
  transition: transform 0.3s ease;
}

.blog-box .desc {
  font-weight: lighter;
  margin-bottom: 15px;
}

.blog-box .button a {
  color: black;
  font-size: 15px;
  font-weight: 500;
}

.blog-box .button a:hover {
  color: #ed1a24;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .blog-list {
    padding: 20px 0 20px;
  }
}

/* blog detail */

.blog-detail {
  padding: 70px 0 70px;
}

.blog-detail .text-area img {
  max-width: 100%;
  height: auto;
}

.blog-detail .sidebar .sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #ed1a24;
  border-bottom: solid 1px #ed1a24;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.blog-detail .sidebar .blog-box {
  margin-bottom: 30px;
  border-bottom: solid 1px #ed1a24;
  padding-bottom: 5px;
}

@media (max-width: 992px) {
  .blog-detail {
    padding: 20px 0 20px;
  }
}

/* references page*/

.references {
  padding: 70px 0 70px;
}

.references .ref-box {
  padding: 20px 0 20px;
  box-shadow: 3px 3px 20px rgba(38, 38, 38, 0.2);
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .references {
    padding: 20px 0 20px;
  }
}

/* error page 404*/

.error-page {
  padding: 120px 0 120px;
  text-align: center;
}

.error-page .title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

.error-page .desc {
  margin-bottom: 30px;
}

/* Contact Page */

.contact-berk {
  padding: 50px 0 0px;
}

.contact-berk .full-contact {
  margin-bottom: 40px;
}

.contact-berk .contact-infos {
  box-shadow: 3px 3px 20px rgba(38, 38, 38, 0.2);
  padding: 30px;
}

.contact-berk .contact-infos .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-berk .contact-infos .infos {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: solid 1px #e4e4e4;
}

.contact-berk .contact-infos .infos .icon {
  font-size: 40px;
  color: #ed1a24;
  margin-right: 10px;
  min-width: 48px;
  text-align: center;
}

.contact-berk .contact-infos .infos a {
  display: block;
  color: black;
}

.contact-berk .contact-infos .infos a:hover {
  color: #ed1a24;
  transition: transform 0.3s ease;
}

.contact-berk .maps {
  padding: 0;
}

@media (max-width: 992px) {
  .contact-berk {
    padding: 20px 0 20px;
  }

  .contact-berk .contact-infos {
    height: auto;
  }

  .contact-berk .contact-infos {
    box-shadow: none;
    border-radius: 0px;
    padding: 10px;
  }
}

/* FORM */
.form-area {
  background: #ffffff;
  box-shadow: 3px 3px 20px rgba(38, 38, 38, 0.2);
  padding: 30px;
  z-index: 1;
}

.form-area .title {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  margin-left: 1px;
}

.form-area input.form-control {
  width: 100%;
  background: #ebebeb;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding: 0 10px;
  outline: none;
}

.form-area select.form-control {
  width: 100%;
  background: #ebebeb;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding: 0 10px;
  outline: none;
}

.form-area textarea.form-control {
  background: #ebebeb;
  width: 100%;
  border: none;
  height: 160px;
  margin-bottom: 25px;
  padding: 10px 10px;
  outline: none;
}

.form-area button.contact-button {
  background: #ed1a24;
  color: white;
  border: none;
  padding: 10px 50px;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  outline: none;
  cursor: pointer;
}

.form-area button.contact-button:hover {
  background: black;
  outline: none;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .form-area .title {
    text-align: center;
  }

  .form-area {
    box-shadow: none;
    padding: 0px;
  }

  .form-area button.contact-button {
    width: 100%;
  }

  .form-area {
    height: auto;
  }
}

.about-us {
  padding: 70px 0 70px;
}

.about-us-img {
  margin-bottom: 60px;
  height: 550px;
  position: relative;
}

.about-us-img::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 120px;
  height: 120px;
  background-color: #ed1a24;
  z-index: -1;
}

@media (max-width: 992px) {
  .about-us-img {
    height: auto;
  }
}

.about-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .about-us-img img {
    object-fit: contain;
  }
}

.about-us .top-desc {
  letter-spacing: 0.07em;
  line-height: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.about-us .about-box {
  margin-bottom: 50px;
}

.about-us .about-box .picture {
  margin-bottom: 15px;
}

.about-us .about-box .title {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 15px;
}

.about-us .about-box .desc {
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
}

.about-us .about-box .button-w {
  text-align: center;
}

/* modal pop contact */

.modal-body .form-area {
  height: auto;
  box-shadow: none;
  text-align: center;
  padding: 5px;
}

.modal-header {
  padding: 0px;
  border-bottom: none;
}

button.close span {
  position: absolute;
  right: -19px;
  font-size: 43px;
  background-color: white;
  z-index: 9999999999999;
}

.counter-berk .counter-box .button a {
  display: inline-block;
  border: 1px solid #ed1a24;
  text-transform: uppercase;
  font-size: 14px;
  color: #ed1a24;
  line-height: 25px;
  min-height: 35px;
  min-width: 195px;
  padding: 5px 35px;
  text-align: center;
  border-radius: 5px;
}

.works-berk .content .title {
  font-size: 24px;
  font-weight: bold;
}

.works-berk .item:hover .ImageContainer {
  background-color: #ed1a24;
}
.sector .item .row {
  align-items: center;
}

.sector .item .item-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sector .item .item-desc {
  margin-bottom: 15px;
}

.sector .item {
  border-top: 1px solid #a5a5a5;
  padding: 30px 0 15px;
  margin-bottom: 15px;
}
.ref-text img {
  max-width: 100%;
}

.why-us-berk .icon-end .icon-image {
  margin-top: 35px;
}

.why-us-berk .icon-end img {
  max-height: 80px;
  max-width: 90px;
}
.why-us-berk .item:nth-child(even) .icon-end:after {
  top: 50%;
}

.world-map {
  padding-top: 30px;
  padding-bottom: 30px;
}

.text-area table {
  width: 100% !important;
  max-width: 100% !important;
  border: 1px solid #ed29241f;
}

.text-area > table > thead > tr {
  background-color: #c5c5c5;
}

.text-area > table > thead > tr > td {
  color: white;
  font-weight: bold;
  padding: 10px 10px;
}

.text-area > table > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.text-area > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.text-area > table tr td {
  font-size: 0.9em;
  color: #444;
  padding: 10px 20px;
}

.text-area > table tr td:first-child {
  border-right: 1px solid #ddd;
  width: 60%;
}

.text-area ol {
  margin: 0px;
}

.text-area ol li {
  list-style: decimal;
  margin-bottom: 10px;
}

.text-area ol ul {
  padding-top: 20px;
  margin-left: 30px;
}

.text-area ol ul li {
  list-style: disc;
}

.file-area {
  width: 100%;
  position: relative;
}
.file-area input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
  outline: none;
}
.file-area .file-dummy {
  width: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px dashed #ced4da;
  text-align: center;
  transition: background 0.3s ease-in-out;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.file-area .file-dummy .success {
  display: none;
}
.file-area:hover .file-dummy {
  border-color: #2196f3;
}
.file-area input[type="file"]:focus + .file-dummy {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline: -webkit-focus-ring-color auto 5px;
}
.file-area input[type="file"]:valid + .file-dummy {
  border-color: rgba(0, 255, 0, 0.4);
  background-color: rgba(0, 255, 0, 0.3);
}
.file-area input[type="file"]:valid + .file-dummy .success {
  display: inline-block;
}
.file-area input[type="file"]:valid + .file-dummy .default {
  display: none;
}

.is-dragover .file-dummy {
  border-color: #2196f3;
}

.mb-15 {
  margin-bottom: 15px;
}

.home-captcha {
  float: left;
}

.g-recaptcha {
  position: relative;
}
.fake_error {
  white-space: nowrap;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px;
  background-color: #f44336;
  color: #fff;
  padding: 5px 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 15px);
  position: absolute;
  z-index: 99;
  font-weight: 500;
}
.fake_error:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #f44336;
  border-width: 10px;
  margin-left: -10px;
}

.error-page .g-recaptcha {
  display: flex;
  justify-content: center;
}
.error-page .form-area {
  background: transparent;
  box-shadow: none;
  padding: 0;
  height: auto;
}

.text-area ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
.text-area ol li {
  list-style: decimal;
}

.text-area ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  margin-left: 0 !important;
  padding-top: 0 !important;
}
.text-area ul li {
  list-style: disc;
}

.sign {
  background-color: #111;
  padding: 10px 0;
  color: #fff;
}

.sign a {
  color: #fff;
}

/* footer sticky*/

.footer-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 10px;
  background: #222;
  -webkit-box-shadow: 0px -5px 15px rgba(32, 32, 32, 0.15);
  box-shadow: 0px -5px 15px rgba(32, 32, 32, 0.15);
  z-index: 561;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-sticky .sticky-item {
  padding: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: white;
  width: 20%;
}
.footer-sticky .sticky-item .main-item {
  background-color: #ed1a24;
  border: 1px solid #ff3d47;
  width: 54px;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -18px;
}
.footer-sticky .sticky-item img {
  height: 25px;
}
.footer-sticky .sticky-item > i {
  font-size: 22px;
  color: white;
  line-height: 25px;
  height: 25px;
}
.footer-sticky .sticky-item .main-item i {
  font-size: 22px;
  color: white;
  line-height: 1;
}
.footer-sticky .sticky-item .sticky-title {
  margin-top: 6px;
  text-align: center;
  font-size: 10px;
}
@media (min-width: 992px) {
  .footer-sticky {
    display: none;
  }
}
@media (max-width: 350px) {
  .footer-sticky .sticky-item .sticky-title {
    font-size: 8px;
  }
}

/**new*/
.p80 {
  padding: 80px 0;
}
.scroll-area {
  height: 350px;
  overflow: auto;
  padding-right: 10px;
}
.scroll-area::-webkit-scrollbar {
  width: 8px;
}
.scroll-area::-webkit-scrollbar-track {
  border-radius: 5px;
  margin: 0.2rem 0;
  background: #f1f1f1;
}
.scroll-area::-webkit-scrollbar-thumb {
  background: #ed1a24;
  border-radius: 5px;
}
.scroll-area::-webkit-scrollbar-thumb:hover {
  background: #ed1a24;
  transition: transform 0.3s ease;
}

.acordion {
  height: 100%;
  margin: 2rem 0;
}
.acordion .acordion-item {
  margin-bottom: 1rem;
}
.acordion .acordion-item .acordion-button:focus {
  outline: none;
}
.acordion .acordion-item .acordion-button {
  position: relative;
  padding: 1rem 1.375rem;
  width: 100%;
  background: white;
  cursor: pointer;
  color: #363a43;
  font-weight: 600 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 0;
  border-bottom: 1px solid #ed1a24;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.125rem;
  background: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  text-align: start;
}
@media screen and (max-width: 576px) {
  .acordion .acordion-item .acordion-button {
    font-size: 16px;
  }
}
.acordion .acordion-item .acordion-body {
  padding: 0.625rem 1.375rem;
  background: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  display: none;
  color: #565961;
  text-align: start;
  text-align: start;
}
@media screen and (max-width: 576px) {
  .acordion .acordion-item .acordion-body {
    font-size: 15px;
  }
}

.acordion .acordion-item .acordion-button::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f067";
  color: #ed1a24;
  font-size: 1.125rem;
}

.acordion .acordion-item .active::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f068";
  color: #ed1a24;
}

.sss-acordion {
  text-align: center;
  position: relative;
}
.sss-acordion .btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 1.125rem;
}
.sss .sss-acordion .section-title {
  -webkit-transform: translateY(-3.5rem);
}

.sss-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .sss-image {
    display: none;
  }
}

.form-area.none-bg {
  box-shadow: none;
  padding: 20px 0;
}

a.tableScroll {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ed1a24 !important;
}

.contact-berk .contact-infos .infos .top {
  display: flex;
  align-items: center;
}

.contact-berk .contact-infos .infos {
  flex-wrap: wrap;
}

.contact-berk .contact-infos .infos .tableScroll {
  margin-top: 20px;
  margin-bottom: 0;
}

.category-box {
  margin-bottom: 30px;
}

.category-box .top-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.category-box .top-title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  background: #222;
  bottom: 0;
  border-radius: 10px;
}

.picture-box {
  display: block;
  margin-bottom: 20px;
}

.picture-box img {
  width: 100%;
}

.picture-box .title {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  color: #222;
}

.upload-form-berk .top-content {
  text-align: center;
  margin-bottom: 40px;
}

.social-media {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: -75px;
  transform: translateY(-50%);
  z-index: 9999;
}

.header-berk .container {
  position: relative;
}

.social-media li a {
  color: #222;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px !important;
  border-radius: 50%;
}

section.slider-berk.new-slider {
  background: none;
  height: auto;
}

.slider-berk.new-slider .slider-area {
  height: auto;
}

.new-slider .swiper-button-next {
  right: 100px;
}

.new-slider .swiper-button-prev {
  left: 100px;
}

.new-slider img {
  width: 100%;
}

.career-page {
  padding: 70px 0;
}

.career-area input {
  margin-top: 20px;
}

.career-area #cv {
  margin-bottom: 20px;
}

.career-area textarea {
  margin-bottom: 20px;
}

.career-area .contact-button {
  padding: 10px 30px;
  background: #ed1a24;
  border: none;
  outline: none;
  cursor: pointer;
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.career-area .title {
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

.career-area .title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 3px;
  background: #222;
  bottom: -3px;
  border-radius: 2px;
}

.container-fluid.maps iframe {
  display: block;
}

/*! Lity - v2.4.0 - 2019-08-10
* http://sorgalla.com/lity/
* Copyright (c) 2015-2019 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

a.video-btn i {
  font-size: 60px;
  color: white;
}

.header-area .social-media {
  margin-right: -90px !important;
}

.text-area table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
  border: none;
}

.text-area table td,
.text-area table th {
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.text-area table thead tr {
  background-color: #ed1a24;
  color: #ffffff;
}

.text-area table thead tr th,
.text-area table thead tr td {
  font-weight: 700;
}

.text-area table tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}

.text-area > table > thead > tr > td {
  color: white;
  font-weight: bold;
  padding: 5px 5px;
  text-align: center;
}

.text-area table {
  height: 600px !important;
}

.tableScroll {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.tableScroll i {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 700;
  animation: tablescroll 0.5s infinite;
}

@keyframes tablescroll {
  0% {
    margin-left: 10px;
  }

  50% {
    margin-left: 2px;
    margin-right: 8px;
  }

  100% {
    margin-left: 10px;
  }
}

.text-area table {
  height: 100% !important;
}

a.document-box {
  display: block;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.document-title {
  text-align: center;
  font-size: 18px;
  padding-bottom: 19px;
  color: #ed1a24;
}

.document-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.document-box img {
  padding: 30px;
}

/* CATEGORY PAGE START */

.category-page {
  padding: 60px 0 30px 0;
}

.category-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: black;
}

.category-col img {
  width: 100%;
  margin-bottom: 10px;
}

.category-col-title {
  font-size: 18px;
}

.product-page {
  padding: 60px 0 30px 0;
}

.gallery-box {
  display: block;
  margin-bottom: 30px;
}

.gallery-box img {
  width: 100%;
}

.product-page .form-area {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px;
  margin-bottom: 30px;
}

.product-page .form-area .title {
  margin-bottom: 5px;
}

.product-page .form-area .desc {
  margin-bottom: 15px;
}

.product-page aside {
  position: sticky;
  top: 75px;
  margin-bottom: 30px;
}

.product-page aside ul {
  display: flex;
  flex-direction: column;
}

.product-page aside ul li a {
  display: block;
  padding: 15px;
  width: 100%;
  background-color: gainsboro;
  color: #000;
}

.product-page aside ul li a:hover {
  background-color: #aeaeae;
  transition: transform 0.3s ease;
}

.product-page aside ul li a.active {
  background-color: #aeaeae;
  color: white;
}

.product-page .content-wrapper img {
  max-width: 100%;
  width: 100%;
}

@media (min-width:992px) {
  .product-page .router-btn a  {
    display: none;
  }
}

@media (max-width:992px) {
  .product-page .router-btn a {
      display: block;
  }
}

.product-page .router-btn a {
  width:100%;
  padding: 15px 0;
  text-align: center;
  background-color: #ed1a24;
  color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 30px;
}


/* CATEGORY PAGE END */

/* DROPDOWN START */

@media (max-width: 992px) {
  .menu-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-item-wrapper button {
    background: transparent;
    border: none;
  }

  .menu-item-wrapper button i {
    font-size: 24px !important;
  }
  .mobile-nav-menu ul li ul {
    padding-left: 0px;
  }

  .mobile-nav-content {
    overflow-y: scroll;
  }
}

/* DROPDOWN END */



/* PAGINATION START */

/* PAGINATION START */

.pagination-wrapper {
  margin-top: 40px;
}

.pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap !important;
}

.page-link:hover {
  background-color: #eee;
  color: black !important;
  transition: transform 0.3s ease;
}

li.page-item.active a {
  color: white;
  background-color:  #ed1a24;
}

.pagination li a,
.pagination li span {
  display: block;
  padding: 8px 15px;
  border: 1px solid #ddd;
  color:  #ed1a24;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* PAGINATION END */


/* PAGINATION END */