@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap");
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 103, 31, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 103, 31, 0);
  }
}
/* CSS Document */
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #fff;
}
body.fancybox-active {
  height: 100%;
}

form {
  width: 100%;
  height: 100%;
}

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #181818;
}

a, a img {
  text-decoration: none;
  outline: none;
  border: none;
}

.clr {
  clear: both;
  height: 0;
}

::-webkit-input-placeholder {
  color: #707070;
}

:-moz-placeholder {
  color: #707070;
}

::-moz-placeholder {
  color: #707070;
}

:-ms-input-placeholder {
  color: #707070;
}

::selection {
  background: #FF671F;
  color: #fff;
}

::-moz-selection {
  background: #FF671F;
  color: #fff;
}

table {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  background-image: none;
}

/*General Elements */
body, input, textarea, select, option {
  font-family: "Montserrat", sans-serif;
}

*, *:after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  outline: none;
}

:before {
  font-family: IcoFont;
  font-style: normal;
}

.btn {
  display: inline-block;
  background: linear-gradient(180deg, #F26626 0%, #FF841D 100%);
  line-height: 50px;
  font-size: 17px;
  color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  padding: 0 55px;
  font-weight: 600;
}
.btn.bg-none {
  background: transparent !important;
  padding: 0 !important;
}

.teaserItem .title.sm .btn span {
  line-height: 50px;
}

i.icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  font-style: normal;
  position: relative;
}
i.icon.searchIco {
  background-image: url(../images/icons/searchBtnBlack.svg);
}
i.icon.formIco {
  background-image: url(../images/icons/form.svg);
}
i.icon.globeIco {
  background-image: url(../images/icons/globe.svg);
}
i.icon.pinIco {
  background-image: url(../images/icons/pin.svg);
}
i.icon.homeIco {
  background-image: url(../images/icons/home.svg);
}
i.icon.arrowIco {
  background-image: url(../images/icons/longArrow.svg);
  display: block;
  width: 16px;
  height: 11px;
}

h1 {
  color: #000;
  font-size: 40px;
  font-weight: 600;
}
h1 span {
  color: #FF671F;
}

h2 {
  color: #000;
  font-size: 43px;
  font-weight: 600;
}
h2.big {
  font-size: 56px;
}
h2.white {
  color: #fff;
}
h2 span.orange {
  color: #FF671F;
}
h2 i {
  color: #FF671F;
  font-style: normal;
}

h3 {
  color: #000;
  font-size: 35px;
  font-weight: 700;
}
h3 span {
  font-weight: 400;
}
h3.sm {
  font-size: 24px;
}
h3.center {
  width: 100%;
  text-align: center;
}

.orangeCaption {
  color: #FF671F;
  font-size: 20px;
}

p {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  line-height: 1.5;
}
p.small {
  font-size: 16px;
}
p.big {
  font-size: 34px !important;
}
p.big strong {
  color: #FF671F;
}
p .orange {
  color: #FF671F;
  font-weight: 500;
}

.txtList {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 25px;
}
.txtList li {
  display: list-item;
  list-style-type: disc;
}

.breadCrumb {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.breadCrumb a {
  font-size: 14px;
  color: #000;
  position: relative;
  padding-left: 10px;
  margin-right: 8px;
}
.breadCrumb a:before {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #636569;
  position: absolute;
  left: 0;
  content: "";
  top: 7px;
}
.breadCrumb a:first-child {
  padding-left: 5px;
}
.breadCrumb a:first-child:before {
  display: none;
}

.owl-nav {
  width: 140px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 25px;
}
.owl-nav button {
  display: block;
  width: 60px;
  height: 60px;
  position: relative;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border: 1px solid #fff !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent !important;
}
.owl-nav button:before {
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: linear-gradient(180deg, #F26626 0%, #FF841D 100%);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.owl-nav button span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  position: relative;
}
.owl-nav button.owl-next span {
  background: url(../images/icons/arrow-r-w.svg) no-repeat center;
}
.owl-nav button.owl-prev span {
  background: url(../images/icons/arrow-l-w.svg) no-repeat center;
}
.owl-nav button:hover {
  border: 1px solid #FF671F !important;
}
.owl-nav button:hover:before {
  width: 100%;
  height: 100%;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.mt-450 {
  margin-top: 450px !important;
}

.mb-450 {
  margin-bottom: 450px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.orange {
  color: #FF671F !important;
}

.green {
  color: #1E9A38 !important;
}

.yellow {
  color: #EBA721 !important;
}

.blue {
  color: #047BC1 !important;
}

.link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.linkBold {
  color: inherit;
  font-weight: bold;
}
.linkBold:hover {
  color: #FF671F;
}

.w100 {
  width: 100% !important;
  display: block;
}

.rounded {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}

.mx-680 {
  max-height: 680px;
  object-fit: cover;
  object-position: center;
}

.container {
  width: 100%;
  margin: auto;
  padding: 0;
  position: relative;
}
.container.dark {
  background: #242424;
  padding: 60px 0 0;
}
.container.dark:has(.lined) {
  position: relative;
}
.container.dark:has(.lined):before {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50px;
  background: #7C7C7C;
  content: "";
}
.container.md {
  padding-left: 140px;
  padding-right: 140px;
}
.container.sm {
  padding-left: 340px;
  padding-right: 340px;
}

.txt {
  width: 100%;
  padding: 90px 0;
}
.txt h2 {
  color: #020101;
  font-size: 45px;
  font-weight: 300;
  padding-bottom: 30px;
}
.txt h2 span {
  color: #FF671F;
}
.txt p {
  font-size: 20px;
  color: #000;
}
.txt.blogDetail h1 {
  font-weight: 300;
  padding-bottom: 30px;
  font-size: 42px;
}
.txt.blogDetail h2 {
  font-size: 36px;
}
.txt.blogDetail h3 {
  font-size: 24px;
  font-weight: 300;
}
.txt.blogDetail p {
  padding-bottom: 30px;
}
.txt.blogDetail img {
  max-width: 100%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}

svg.animateMe path {
  stroke-dasharray: 2100;
  stroke-dashoffset: 2100;
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
svg.animatedIn path {
  stroke-dashoffset: 0;
}
svg.animateMe.vertical path {
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
svg.animatedIn.vertical path {
  stroke-dashoffset: 0;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.row .col {
  width: 100%;
}
.row .col-2 {
  width: 50%;
}
.row .col-3 {
  width: 33.3333%;
}
.row .col-4 {
  width: 25%;
}
.row .col-5 {
  width: 20%;
}
.row .col-24 {
  width: 24%;
}
.row .col-25 {
  width: 25%;
}
.row .col-265 {
  width: 26.5%;
}
.row .col-30 {
  width: 30%;
}
.row .col-35 {
  width: 35%;
}
.row .col-325 {
  width: 32.5%;
}
.row .col-40 {
  width: 40%;
}
.row .col-45 {
  width: 45%;
}
.row .col-48 {
  width: 48%;
}
.row .col-495 {
  width: 49.5%;
}
.row .col-50 {
  width: 50%;
}
.row .col-55 {
  width: 55%;
}
.row .col-60 {
  width: 60%;
}
.row .col-65 {
  width: 65%;
}
.row .col-70 {
  width: 70%;
}
.row .col-75 {
  width: 75%;
}
.row.gutter {
  margin-left: -30px;
  margin-right: -30px;
}
.row.gutter.noSpaceBetween {
  justify-content: unset;
}
.row.gutter .col {
  padding: 0 30px;
  margin-bottom: 30px;
}
.row.j-start {
  justify-content: start;
}

.formHolder .row {
  margin-bottom: 30px;
}
.formHolder input[type=text], .formHolder select, .formHolder textarea {
  width: 100%;
  height: 36px;
  border: none;
  border-bottom: 1px solid #000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 300;
}
.formHolder input[type=text]:focus, .formHolder select:focus, .formHolder textarea:focus {
  border-bottom: 1px solid #FF671F;
}
.formHolder textarea {
  height: 100px;
  resize: none;
}
.formHolder input[type=submit] {
  float: right;
  border: none;
  background: linear-gradient(180deg, #F26626 0%, #FF841D 100%);
  line-height: 50px;
  font-size: 17px;
  color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  padding: 0 55px;
  font-weight: 600;
}

.showOnMobile {
  display: none !important;
}

/*General Elements */
/*investor*/
.investorDashboard {
  padding-top: 60px;
}
.investorDashboard .idBox {
  background: #FFFFFF;
  box-shadow: 0px 4px 61px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.investorDashboard .idBox.p0 {
  padding: 0;
}
.investorDashboard .idBox.p15 {
  padding: 15px;
}
.investorDashboard .idBox .top {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.investorDashboard .idBox .top h2 {
  font-size: 16px;
}
.investorDashboard .idBox .top h2 small {
  font-size: 12px;
  color: #858585;
  display: block;
}
.investorDashboard .idBox .top a {
  font-size: 12px;
  color: #000;
}
.investorDashboard .idBox .top a:hover {
  color: #FF671F;
}
.investorDashboard .idBox input {
  margin-top: 25px;
}
.investorDashboard .idBox.set {
  background: url(../images/investor/setBg.jpg) no-repeat top center;
  background-size: cover;
}
.investorDashboard .idBox.set .top h2 {
  color: #fff;
}
.investorDashboard .idBox.set a {
  max-width: 180px;
  height: 30px;
  line-height: 30px;
}
.investorDashboard .idBox.set p {
  font-size: 12px;
  color: #fff;
  padding: 20px 0;
  max-width: 50%;
}
.investorDashboard .idBox.set ul li a {
  color: #fff;
  font-size: 12px;
  background: url(../images/icons/arrow-r-w-s.svg) no-repeat left center;
  padding-left: 10px;
}
.investorDashboard .idBox.set ul li a:hover {
  color: #FF671F;
}
.investorDashboard .idBox:has(.fInfo) {
  padding-right: 0;
  padding-top: 15px;
}
.investorDashboard .idBox .pdfList {
  padding-top: 10px;
}
.investorDashboard .idBox .pdfList .item {
  margin-bottom: 15px;
}
.investorDashboard .idBox .pdfList .item a {
  padding: 10px 45px 10px 65px;
}
.investorDashboard .idBox .pdfList .item a:before {
  left: 15px;
}
.investorDashboard .idBox .pdfList .item a span {
  font-size: 12px;
}
.investorDashboard .idBox .pdfList .item a small {
  font-size: 14px;
}
.investorDashboard .idBox .pdfList .item a i {
  top: 20px;
}
.investorDashboard .idBox .pdfList .item:last-child {
  margin-bottom: 0;
}
.investorDashboard .idBox .slogan {
  width: 100%;
  background: url(../images/investor/menuBg.svg) no-repeat;
  background-size: 100% auto;
}
.investorDashboard .idBox .slogan span {
  display: block;
  font-size: 28px;
  font-weight: bold;
  padding: 20% 0 20% 31%;
}
.investorDashboard .idBox .slogan span small {
  color: #FF671F;
  font-size: 22px;
  font-weight: 300;
}
.investorDashboard .row.gutter {
  margin-left: -10px;
  margin-right: -10px;
}
.investorDashboard .row.gutter .col {
  padding: 0 10px;
  margin-bottom: 20px;
}

.fInfo {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.fInfo p {
  width: 60%;
}
.fInfo p small {
  display: block;
  color: #858585;
  font-size: 12px;
}
.fInfo p strong {
  display: block;
  color: #01101B;
  font-size: 16px;
  font-weight: 600;
}
.fInfo p span.orange {
  font-weight: bold;
  font-size: 24px;
}
.fInfo div {
  width: 60%;
}
.fInfo div p {
  width: 100%;
}
.fInfo img {
  width: 40% !important;
}
.fInfo .chartList li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  font-size: 12px;
  color: #858585;
  align-items: center;
}
.fInfo .chartList li:before {
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  margin-right: 5px;
}
.fInfo .chartList li:nth-child(1):before {
  background: #4C759A;
}
.fInfo .chartList li:nth-child(2):before {
  background: #F26626;
}
.fInfo .chartList li:nth-child(3):before {
  background: #A2A2A2;
}
.fInfo .chartList li:nth-child(4):before {
  background: #8DD1FF;
}
.fInfo .chartList li small {
  display: block;
  width: 100%;
  padding: 0 0 5px 18px;
}

.fInfoSlider .owl-dots {
  position: absolute;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.fInfoSlider .owl-dots .owl-dot {
  width: 14px;
  height: 14px;
  background: #E8E8E8;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 3px;
}
.fInfoSlider .owl-dots .owl-dot.active {
  background: #FF671F;
}

#investorSlider {
  height: 100%;
  min-height: 385px;
}
#investorSlider .owl-stage-outer, #investorSlider .owl-stage, #investorSlider .owl-item, #investorSlider .item {
  height: 100%;
}
#investorSlider img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#investorSlider span.title {
  position: absolute;
  color: #fff;
  left: 40px;
  bottom: 40px;
  font-weight: 600;
  font-size: 30px;
}
#investorSlider span.title small {
  display: block;
  font-size: 17px;
  font-weight: 300;
}
#investorSlider .owl-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  height: 60px;
}

.idBox.irMenu {
  position: relative;
  z-index: 5;
}
.idBox .sidebar {
  width: 100% !important;
  padding-top: 0;
}
.idBox .sidebar li.irHome {
  display: none !important;
}
.idBox .sidebar div > ul > li {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(90, 90, 90, 0.5);
  margin-bottom: 0;
  position: relative;
}
.idBox .sidebar div > ul > li > a {
  display: block;
  color: #01101B;
  font-size: 16px;
  padding: 17px 0;
  font-weight: 600;
  background: url(../images/icons/arrow-r-b-s.svg) no-repeat right center;
  margin-bottom: 0;
}
.idBox .sidebar div > ul > li > a:before {
  display: none;
}
.idBox .sidebar div > ul > li > a:hover {
  color: #FF671F;
  background: url(../images/icons/arrow-r-o-s.svg) no-repeat right center;
}
.idBox .sidebar div > ul > li.inner > ul.innerUl {
  position: absolute;
  top: 0;
  left: 120%;
  width: 310px;
  display: block;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  padding: 30px 45px;
  box-shadow: 0px 4px 61px rgba(0, 0, 0, 0.1);
}
.idBox .sidebar div > ul > li.inner:hover ul.innerUl {
  opacity: 1;
  pointer-events: all;
  left: 100%;
}

.idMenu {
  width: 100%;
}
.idMenu li {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(90, 90, 90, 0.5);
}
.idMenu li a {
  display: block;
  color: #01101B;
  font-size: 16px;
  padding: 17px 0;
  font-weight: 600;
  background: url(../images/icons/arrow-r-b-s.svg) no-repeat right center;
}
.idMenu li a:hover {
  color: #FF671F;
  background: url(../images/icons/arrow-r-o-s.svg) no-repeat right center;
}

.linkList {
  width: 100%;
}
.linkList a {
  display: block;
  padding: 15px 20px 15px 30px;
  font-size: 12px;
  color: #858585;
  border-bottom: 1px solid rgba(90, 90, 90, 0.5);
  position: relative;
  background: url(../images/icons/arrow-r-b-s.svg) no-repeat right center;
}
.linkList a:before {
  display: block;
  width: 23px;
  height: 23px;
  background: url(../images/icons/announcement.svg) no-repeat;
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
}
.linkList a:hover {
  color: #FF671F;
  background: url(../images/icons/arrow-r-o-s.svg) no-repeat right center;
}
.linkList a strong {
  display: block;
}
.linkList.calendar a {
  background: none;
}
.linkList.calendar a:hover {
  color: #858585;
}
.linkList.calendar a::before {
  background: url(../images/icons/calendar.svg) no-repeat;
  content: "";
}

.reportLink {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}
.reportLink span {
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 25px;
}
.reportLink.sustainability {
  background: url(../images/investor/sustainabilityBg.jpg) no-repeat;
  background-size: cover;
}
.reportLink.genelKurul {
  background: url(../images/investor/genel_kurul.jpg) no-repeat;
  background-size: cover;
}
.reportLink.ozelDurum {
  background: url(../images/investor/ozel_durum.jpg) no-repeat;
  background-size: cover;
}

.investorTable {
  background: #FFFFFF;
  box-shadow: 0px 4px 54.3px rgba(0, 0, 0, 0.07);
  margin-bottom: 100px;
  border-radius: 17px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  width: 100%;
}
.investorTable tr {
  align-items: center;
}
.investorTable tr td {
  font-size: 16px;
  font-weight: 300;
  border-right: 1px solid rgba(185, 185, 185, 0.3);
  padding: 20px 0px;
}
.investorTable tr td:first-child {
  font-weight: 500;
}
.investorTable tr td:last-child {
  border-right: none;
}
.investorTable tr td a {
  color: #FF671F;
}
.investorTable tr.head {
  background-color: #FF671F;
}
.investorTable tr.head td {
  font-weight: 600;
  color: #fff;
  border-right: 1px solid #fff;
  padding: 15px 0px;
}
.investorTable tr.head td:first-child {
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;
}
.investorTable tr.head td:last-child {
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
}
.investorTable.borderTd tr:first-child td {
  border-bottom: none;
  font-weight: 900 !important;
}
.investorTable.borderTd tr:last-child td {
  border-bottom: none;
}
.investorTable.borderTd tr td {
  border-bottom: 1px solid rgba(185, 185, 185, 0.3);
}
.investorTable.three tr td {
  text-align: center;
}
.investorTable.three tr td:nth-child(1) {
  text-align: left;
  padding-left: 30px;
}
.investorTable.seven tr td {
  text-align: center;
}
.investorTable.seven tr td:nth-child(1) {
  width: 20%;
  text-align: left;
  padding-left: 30px;
}
.investorTable.seven tr td:nth-child(2) {
  width: 8%;
}
.investorTable.seven tr td:nth-child(3) {
  width: 8%;
}
.investorTable.seven tr td:nth-child(4) {
  width: 8%;
}
.investorTable.seven tr td:nth-child(5) {
  width: 8%;
}
.investorTable.seven tr td:nth-child(6) {
  width: 8%;
}
.investorTable.seven tr td:nth-child(7) {
  width: 20%;
}
.investorTable.seven tr td:nth-child(8) {
  width: 20%;
}

.pdfList .item {
  margin-bottom: 50px;
}
.pdfList .item a {
  display: block;
  padding: 25px 25px 25px 85px;
  background: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0px 4px 61px rgba(0, 0, 0, 0.1);
  border-radius: 17px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  color: #000;
  position: relative;
}
.pdfList .item a:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: url(../images/icons/pdf2.svg) no-repeat right center;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pdfList .item a span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.pdfList .item a small {
  display: block;
  font-size: 18px;
  font-weight: 300;
}
.pdfList .item a i {
  position: absolute;
  width: 23px;
  height: 23px;
  background: url(../images/icons/download.svg) no-repeat right center;
  right: 25px;
  top: 37px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pdfList .item a.calendar:before {
  content: "";
  position: absolute;
  width: 39px;
  height: 39px;
  background: url(../images/icons/calendar.svg) no-repeat center;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pdfList .item:hover a {
  background: #FF671F;
  color: #fff;
}
.pdfList .item:hover a:before {
  filter: brightness(0) invert(1);
}
.pdfList .item:hover a i {
  filter: brightness(0) invert(1);
  transform: rotate(45deg);
}

.guadinceTable {
  width: 100%;
  margin-bottom: 50px;
}
.guadinceTable thead {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  text-align: center;
}
.guadinceTable thead tr td {
  padding: 10px 5px;
}
.guadinceTable tbody tr {
  text-align: center;
}
.guadinceTable tbody tr:nth-child(odd) {
  background-color: #E7EAED;
}
.guadinceTable tbody tr:last-child {
  border-bottom: 1px solid black;
}
.guadinceTable tbody tr td {
  padding: 10px 5px;
}
.guadinceTable tbody tr td:first-child {
  text-align: start;
}

/*investor*/
.headerMobile {
  width: 100%;
  height: 70px;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  padding: 30px;
  display: none;
}
.headerMobile a.logo {
  display: block;
  background: url(../images/logo.svg) no-repeat center;
  background-size: 100% auto;
  width: 170px;
  height: 20px;
}
.headerMobile a.logo.en {
  background: url(../images/logoEn.svg) no-repeat center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px 140px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
header .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  width: 100%;
  justify-content: space-between;
  max-width: none;
  margin: auto;
  z-index: 2;
  position: relative;
  align-items: center;
}
header a.logo {
  display: block;
  background-image: url(../images/logoDark.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  width: 152px;
  height: 42px;
}
header a.logo.en {
  background-image: url(../images/logoDarkEn.svg);
}
header .mainNav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
header .mainNav li {
  padding: 0 15px;
}
header .mainNav li h2 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 30px;
}
header .mainNav li h2 span {
  color: #FF671F;
  font-weight: 300;
}
header .mainNav li a {
  color: #000;
  font-size: 15px;
  display: block;
  position: relative;
  padding: 10px 0;
}
header .mainNav li a:before {
  width: 0;
  height: 1px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  background: #FF671F;
}
header .mainNav li a:hover {
  color: #FF671F !important;
}
header .mainNav li a:hover:before {
  width: 100%;
}
header .mainNav li ul {
  position: absolute;
  background-color: #333;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  width: 100%;
  padding: 50px 30px;
  width: 880px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  margin-top: 100px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-repeat: no-repeat;
  background-position: right 50px;
  background-image: url(../images/icons/menuBg.svg);
  min-height: 350px;
}
header .mainNav li ul:before {
  display: block;
  width: 35%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  border-radius: 0 30px 30px 0;
  -webkit-border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
}
header .mainNav li ul li {
  width: 65%;
}
header .mainNav li ul li a {
  border: none;
  color: #fff !important;
  font-size: 15px;
  font-weight: 300;
  padding: 5px 0;
}
header .mainNav li ul li a:before {
  display: none;
}
header .mainNav li ul li a:hover {
  color: #FF671F !important;
}
header .mainNav li ul li.hasChild ul {
  position: relative;
  width: 70%;
  top: auto;
  left: auto;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  background: none !important;
  backdrop-filter: none;
  margin: 0;
}
header .mainNav li ul li.hasChild ul li:nth-child(even) {
  width: 60%;
}
header .mainNav li ul li.hasChild ul li:nth-child(odd) {
  width: 40%;
}
header .mainNav li ul li.hasChild ul li a {
  font-size: 12px;
  padding: 5px 25px;
}
header .mainNav li.opened a {
  color: #2D2C73;
}
header .mainNav li.opened a:before {
  width: 100%;
}
header .mainNav li.opened ul {
  opacity: 1;
  pointer-events: all;
  margin-top: 0;
}
header .mainNav li:hover a {
  color: #2D2C73;
}
header .mainNav li:hover a:before {
  width: 100%;
}
header .mainNav li:hover ul {
  opacity: 1;
  pointer-events: all;
  margin-top: 0;
}
header .mainNav li:nth-child(1) ul:before {
  background: url(../images/nav/kurumsal.jpg) no-repeat;
  background-size: cover;
}
header .mainNav li:nth-child(2) ul:before {
  background: url(../images/nav/hizmetler.jpg) no-repeat;
  background-size: cover;
}
header .mainNav li:nth-child(3) ul:before {
  background: url(../images/nav/surdurulebilirlik.jpg) no-repeat;
  background-size: cover;
}
header .mainNav li:nth-child(4) ul:before {
  background: url(../images/nav/yatirimci.jpg) no-repeat;
  background-size: cover;
}
header .mainNav li:nth-child(6) ul:before {
  background: url(../images/nav/kariyer.jpg) no-repeat;
  background-size: cover;
}
header .mainNav li:nth-child(7) ul:before {
  background: url(../images/nav/iletisim.jpg) no-repeat;
  background-size: cover;
}
header .mainNav li li a.hasChildren {
  position: relative;
  padding-left: 15px;
}
header .mainNav li li a.hasChildren:before {
  width: 13px;
  height: 1px;
  background: #fff;
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  display: block;
}
header .mainNav li li a.hasChildren:after {
  width: 1px;
  height: 13px;
  background: #fff;
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
}
header .mainNav li li ul {
  position: relative;
  display: none;
  width: 100%;
  left: 0;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  margin-top: 0;
  padding: 15px 0;
  height: auto;
  min-height: auto;
  background: none;
  flex-wrap: wrap;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  align-items: start;
}
header .mainNav li li ul li {
  width: 50%;
}
header .mainNav li li ul li a {
  font-size: 12px;
}
header .mainNav li li ul:before {
  display: none;
}
header .tools {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: 42px;
  align-items: center;
}
header .tools ul li {
  margin-top: 0 !important;
}
header .tools ul li a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .tools a {
  display: block;
  height: 42px;
  line-height: 42px;
  position: relative;
  font-size: 15px;
  color: #000;
  font-weight: 600;
  margin-left: 25px;
}
header .tools a i {
  display: block;
  width: 30px;
  height: 30px;
}
header .tools a .toolTip {
  position: absolute;
  right: 140%;
  background: #fff;
  color: #000;
  display: block;
  padding: 7px 10px;
  top: 0%;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
  font-size: 12px;
  opacity: 0;
}
header .tools a .toolTip:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #ffffff;
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}
header .tools a:hover .toolTip {
  opacity: 1;
  right: 110%;
}
header .tools a:nth-child(2) {
  margin-right: 100px;
}
header .tools a.menuLink span {
  display: block;
  width: 35px;
  height: 100%;
  position: relative;
}
header .tools a.menuLink span i {
  position: absolute;
  background: #000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 2px;
  right: 0;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
header .tools a.menuLink span i:nth-child(1) {
  top: 15px;
  width: 100%;
}
header .tools a.menuLink span i:nth-child(2) {
  top: 25px;
  width: 25px;
}
header .tools a.menuLink.opened span i {
  width: 10px !important;
  background: #fff !important;
}
header .tools a.menuLink.opened span i:nth-child(1) {
  width: 35px !important;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  left: 0;
  top: 20px;
}
header .tools a.menuLink.opened span i:nth-child(2) {
  width: 35px !important;
  transform: rotate(-5deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(-45deg);
  left: 0;
  top: 20px;
}
header .tools .search {
  width: 48px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 42px;
  position: relative;
  z-index: 4;
}
header .tools .search form {
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: 0;
  overflow: hidden;
}
header .tools .search input[type=submit] {
  display: block;
  width: 48px;
  height: 42px;
  background: url(../images/icons/searchBtnBlack.svg) no-repeat center;
  border: none;
  height: 100%;
  float: right;
  border-radius: 0 8px 8px 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .tools .search input[type=text] {
  position: absolute;
  width: calc(100% - 48px);
  height: 100%;
  border: none;
  top: 0;
  right: 48px;
  border-radius: 8px 0 0 8px;
  padding-left: 20px;
  background: #fff;
  font-size: 18px;
  color: #000;
}
header .tools .search input[type=text]::-webkit-input-placeholder {
  color: #999;
}
header .tools .search input[type=text]:-moz-placeholder {
  color: #999;
}
header .tools .search input[type=text]::-moz-placeholder {
  color: #999;
}
header .tools .search input[type=text]:-ms-input-placeholder {
  color: #999;
}
header .tools .search:hover form {
  width: 320px;
}
header .tools .search:hover input[type=submit] {
  background: #FF671F url(../images/icons/searchBtn.svg) no-repeat center !important;
}
header .tools a.lang {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .tools a.lang svg {
  width: 26px;
  height: 26px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 25px;
}
header .tools a.lang svg path, header .tools a.lang svg rect {
  fill: #000;
}
header .tools a.lang:hover {
  color: #FF671F;
}
header .tools a.lang:hover svg path, header .tools a.lang:hover svg rect {
  fill: #FF671F;
}
header .tools ul li {
  position: relative;
  margin-top: 10px;
}
header .tools ul li a img {
  filter: invert(1);
}
header .tools ul li:hover ul {
  display: block;
}
header .tools ul li ul {
  display: none;
  position: absolute;
  top: 40px;
  right: 5px;
  padding: 10px 15px;
  background-color: #24282F;
  color: white;
  width: max-content;
}
header .tools ul li ul li {
  margin-top: 0 !important;
}
header .tools ul li ul li a {
  font-size: 15px;
  font-weight: 300;
  padding: 10px;
  margin: 0 !important;
  line-height: unset !important;
  color: white;
}
header .tools ul li ul li a:hover {
  color: #FF671F;
}
header .nav {
  width: 95%;
  height: 90vh;
  background: rgba(52, 52, 52, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  position: absolute;
  top: -100vh;
  left: 2.5%;
  z-index: 1;
  padding: 150px 100px 0 245px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  border-radius: 0 0 40px 40px;
}
header .nav nav {
  width: 100%;
  position: relative;
  margin: auto;
  height: 100%;
}
header .nav nav ul {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
header .nav nav ul li {
  width: 25%;
  display: block;
  position: relative;
  margin-bottom: 40px;
}
header .nav nav ul li a {
  font-size: 15px;
  color: #fff;
  font-weight: 200;
  display: block;
  padding-left: 25px;
}
header .nav nav ul li a.caption {
  font-size: 20px;
  position: relative;
}
header .nav nav ul li a.hasSub:before {
  width: 15px;
  height: 1px;
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  background: #FF671F;
}
header .nav nav ul li a.hasSub:after {
  width: 1px;
  height: 15px;
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  background: #FF671F;
}
header .nav nav ul li a.hasChildren:before {
  width: 11px;
  height: 1px;
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  background: #fff;
}
header .nav nav ul li a.hasChildren:after {
  width: 1px;
  height: 11px;
  content: "";
  position: absolute;
  left: 7px;
  top: 15px;
  background: #fff;
}
header .nav nav ul li a:hover {
  color: #FF671F;
}
header .nav nav ul li ul {
  width: 100%;
  display: none;
}
header .nav nav ul li ul li {
  margin-bottom: 0;
  width: 100%;
}
header .nav nav ul li ul li a {
  padding-top: 5px;
  padding-bottom: 5px;
}
header .nav nav ul li ul ul {
  display: none;
}
header .nav .shortcuts {
  width: 100%;
  position: absolute;
  bottom: 50px;
}
header .nav .shortcuts .top {
  padding-bottom: 30px;
  margin-bottom: 30px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  align-items: end;
}
header .nav .shortcuts .top div:first-child {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
header .nav .shortcuts .top a {
  display: block;
  text-align: right;
  margin-bottom: 10px;
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 30px;
  line-height: 26px;
}
header .nav .shortcuts .top a.pdf {
  background-image: url(../images/icons/pdf.svg);
}
header .nav .shortcuts .top a.certificates {
  background-image: url(../images/icons/certificate.svg);
}
header .nav .shortcuts .bottom {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header .nav .shortcuts .bottom .social a {
  margin-right: 0;
  margin-left: 15px;
  padding-left: 0;
}
header .nav .shortcuts .bottom .social a svg path {
  fill: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .nav .shortcuts .bottom .social a:hover svg path {
  fill: #FF671F;
}
header .nav .shortcuts .bottom a {
  margin-right: 30px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 30px;
}
header .nav .shortcuts .bottom a.pos {
  background-image: url(../images/icons/pos.svg);
}
header .nav .shortcuts .bottom a.portal {
  background-image: url(../images/icons/portal.svg);
}
header .nav .shortcuts .bottom a.supplier {
  background-image: url(../images/icons/supplier.svg);
}
header .nav .shortcuts .bottom a.priceList {
  background-image: url(../images/icons/priceList.svg);
}
header .nav .shortcuts .bottom a.account {
  background-image: url(../images/icons/account.svg);
}
header .nav .shortcuts a {
  color: #fff;
  font-size: 15px;
}
header .nav .shortcuts a:hover {
  color: #FF671F;
}
header.homePage {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 50px 140px;
}
header.homePage a.logo {
  background-image: url(../images/logo.svg);
}
header.homePage a.logo.en {
  background-image: url(../images/logoEn.svg);
}
header.homePage .mainNav li a {
  color: #fff;
}
header.homePage .tools a {
  color: #fff;
}
header.homePage .tools a i.icon.searchIco {
  background-image: url(../images/icons/searchBtn.svg);
}
header.homePage .tools a.menuLink span i {
  background: #fff;
}
header.homePage .tools .search input[type=submit] {
  background: url(../images/icons/searchBtn.svg) no-repeat center;
}
header.homePage .tools .search input[type=text] {
  color: #000;
}
header.homePage .tools .search input[type=text]::-webkit-input-placeholder {
  color: #666;
}
header.homePage .tools .search input[type=text]:-moz-placeholder {
  color: #666;
}
header.homePage .tools .search input[type=text]::-moz-placeholder {
  color: #666;
}
header.homePage .tools .search input[type=text]:-ms-input-placeholder {
  color: #666;
}
header.homePage .tools ul li a img {
  filter: invert(0);
}
header.homePage .tools a.lang svg path, header.homePage .tools a.lang svg rect {
  fill: #fff;
}
header.homePage .tools a.lang:hover {
  color: #FF671F;
}
header.homePage .tools a.lang:hover svg path, header.homePage .tools a.lang:hover svg rect {
  fill: #FF671F;
}
header.opened {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
header.opened .nav {
  top: 0;
}
header.opened .mainNav {
  opacity: 0;
  pointer-events: none;
}
header.opened a.logo {
  background-image: url(../images/logo.svg);
}
header.opened a.logo.en {
  background-image: url(../images/logoEn.svg);
}
header.opened .tools a {
  color: #fff;
}
header.opened .tools a i.icon.searchIco {
  background-image: url(../images/icons/searchBtn.svg);
}
header.opened .tools a.menuLink span i {
  background: #fff;
}
header.opened .tools .search input[type=submit] {
  background: url(../images/icons/searchBtn.svg) no-repeat center;
}
header.opened .tools a.lang svg rect, header.opened .tools a.lang svg path {
  fill: #fff;
}
header.en a.logo {
  background-image: url(../images/logoDarkEn.svg);
}
header.en.homePage a.logo, header.en.opened a.logo {
  background-image: url(../images/logoEn.svg);
}
header .langMenu {
  position: fixed;
  width: 360px;
  background: #333 url(../images/icons/menuBg.svg) no-repeat bottom center;
  background-size: 100% auto;
  border-radius: 30px 0 0 30px;
  -webkit-border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  padding: 50px 30px 300px 10px;
  top: 120px;
  right: -360px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .langMenu a.closeLangMenu {
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/icons/close.svg) no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: 30px;
  top: 50px;
}
header .langMenu strong {
  display: block;
  width: 100%;
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  padding-left: 20px;
}
header .langMenu ul {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
header .langMenu ul li {
  width: 50%;
}
header .langMenu ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  padding: 20px;
  font-weight: bold;
}
header .langMenu ul li a small {
  font-size: 8px;
  display: block;
  font-weight: normal;
}
header .langMenu ul li a span {
  font-size: 12px;
  font-weight: normal;
}
header .langMenu ul li a:hover {
  background: #3c3c3c;
  box-shadow: 0px 4px 20.6px rgba(0, 0, 0, 0.1);
  color: #FF671F;
}
header .langMenu.opened {
  right: 0;
}

main {
  width: 100%;
  padding: 0;
  position: relative;
}

footer {
  position: relative;
  z-index: 1000;
  background: #fff;
  padding: 100px 140px;
}
footer .content {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
footer .content:after {
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  content: "";
}
footer .footerTop {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 0 100px;
}
footer .footerTop .left {
  width: 25%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
footer .footerTop .left a img {
  width: 240px;
  display: block;
}
footer .footerTop .right {
  width: 75%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footerTop .right ul li a {
  font-size: 13px;
  color: #000;
  display: block;
  padding: 5px 0;
  position: relative;
}
footer .footerTop .right ul li a.caption {
  font-size: 20px;
  font-weight: 600;
  padding-left: 0;
  cursor: default;
}
footer .footerTop .right ul li a:hover {
  color: #FF671F;
}
footer .footerTop .right ul ul {
  width: 100%;
  margin-bottom: 0;
}
footer .footerTop .right ul ul ul {
  display: none;
}
footer .footerTop .right ul ul a.hasChild {
  padding-left: 15px;
}
footer .footerTop .right ul ul a.hasChild:before {
  width: 7px;
  height: 1px;
  content: "";
  position: absolute;
  left: 0px;
  top: 13px;
  background: #FF671F;
}
footer .footerTop .right ul ul a.hasChild:after {
  width: 1px;
  height: 7px;
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  background: #FF671F;
}
footer .footerBottom {
  padding: 30px 0 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  align-items: center;
}
footer .footerBottom .left {
  color: #000;
  font-size: 14px;
  display: block;
}
footer .footerBottom .left span {
  font-weight: 500;
}
footer .footerBottom .right {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
footer .footerBottom .right a {
  font-size: 13px;
  color: #000;
  display: block;
  padding: 5px 0;
  position: relative;
  padding-left: 7px;
  margin-right: 10px;
}
footer .footerBottom .right a:hover {
  color: #FF671F;
}
footer .social {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}
footer .social a {
  margin-right: 24px;
}
footer .social a svg {
  fill: #000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer .social a:hover svg {
  fill: #FF671F;
}
footer .social a:last-child {
  margin-right: 0;
}

/*Home Page*/
section.mainSlider {
  width: 100%;
  height: 100%;
  height: 100vh;
  background: #fff;
  margin: 0;
  position: relative;
  padding: 0;
  overflow: hidden;
}
section.mainSlider video {
  height: 100%;
  width: 120%;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  position: absolute;
  z-index: 0;
  object-fit: cover;
}
section.mainSlider .owl-carousel, section.mainSlider .owl-stage-outer, section.mainSlider .owl-stage, section.mainSlider .owl-item, section.mainSlider .item {
  height: 100%;
}
section.mainSlider .item {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  position: relative;
}
section.mainSlider .item:before {
  position: absolute;
  left: 0px;
  top: 0px;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.88;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
}
section.mainSlider .item .content {
  height: 100%;
}
section.mainSlider .item .caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 80px;
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
  z-index: 10000;
}
section.mainSlider .item .caption div {
  padding-left: 60px;
  position: absolute;
  bottom: 260px;
}
section.mainSlider .item .caption div p {
  font-size: 74px;
  color: #fff;
  font-weight: 300;
  line-height: 116px;
  letter-spacing: -0.05em;
}
section.mainSlider .item .caption div strong {
  font-weight: 600;
}
section.mainSlider .item .caption div small {
  display: block;
  font-size: 23px;
  letter-spacing: normal;
  line-height: 2;
}
section.mainSlider .item .caption div a.btn {
  position: absolute;
  left: 60%;
  bottom: -90px;
}
section.mainSlider .item .caption svg {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
section.mainSlider .item .caption svg path {
  stroke-dasharray: 3370;
  stroke-dashoffset: 3370;
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
section.mainSlider .active .item .caption svg path {
  stroke-dashoffset: 0;
}
section.mainSlider .owl-nav {
  position: absolute;
  right: 140px;
  bottom: 140px;
}

html[lang=en] section.mainSlider .item .caption div p {
  font-size: 64px;
}

section.mainMileStones {
  padding-bottom: 70px;
  overflow: hidden;
}
section.mainMileStones .container {
  text-align: center;
}
section.mainMileStones .msSlider {
  width: 100%;
  height: 240px;
  position: relative;
}
section.mainMileStones .msSlider:before {
  display: block;
  height: 100%;
  width: calc(100% + 340px);
  border-left: 4px solid #FF671F;
  border-bottom: 4px solid #FF671F;
  border-radius: 0 0 0 40px;
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
}
section.mainMileStones .msSlider i {
  display: block;
  height: 100%;
  width: 25%;
  border-left: 4px solid #FF671F;
  border-bottom: 4px solid #FF671F;
  border-radius: 0 0 0 40px;
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
}
section.mainMileStones p {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 44px;
  font-weight: 300;
  padding-top: 100px;
}
section.mainMileStones p strong {
  font-weight: 500;
  color: #FF671F;
}
section.mainMileStones .btn {
  margin: 70px auto 0;
}
section.mainMileStones .firstDate {
  font-size: 42px;
  font-weight: 600;
  color: #FF671F;
  position: absolute;
  left: -260px;
  top: 50%;
}
section.mainMileStones .lastDate {
  font-size: 42px;
  font-weight: 600;
  color: #000;
  position: absolute;
  left: 102%;
  bottom: -23px;
}
section.mainMileStones ul {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  position: absolute;
  bottom: -20px;
}
section.mainMileStones ul li {
  width: 16.66%;
  text-align: center;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  /*&.active{
      &:before{background: $orange;}
      span{color:$orange;}
  }*/
}
section.mainMileStones ul li span {
  display: block;
  width: 44px;
  height: 44px;
  border: 3px solid transparent;
  position: relative;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
section.mainMileStones ul li span:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #FF671F;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  animation: pulse-animation 2s infinite;
}
section.mainMileStones ul li span img {
  display: block;
  height: 200px;
  width: auto;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  pointer-events: none;
  bottom: 90px;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  position: absolute;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.mainMileStones ul li span:hover {
  border: 3px solid #FF671F;
  background: #fff;
}
section.mainMileStones ul li span:hover img {
  bottom: 50px;
  opacity: 1;
}

section.mainActivities {
  background-image: url(../images/activities/enerji.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 160px 0;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.mainActivities h2 {
  line-height: 1;
  margin-bottom: 60px;
}
section.mainActivities h2 strong {
  color: #FF671F;
  font-size: 115px;
}
section.mainActivities h2 span {
  display: block;
  font-size: 56px;
  font-weight: 600;
}
section.mainActivities .tabWrapper {
  width: 80%;
}
section.mainActivities .tabWrapper p {
  max-width: 500px;
  min-height: 120px;
}

.tabWrapper {
  width: 100%;
}
.tabWrapper h2.title {
  font-weight: 300;
  color: #fff;
  padding: 0 0 60px 90px;
}
.tabWrapper h2.title strong {
  display: block;
  color: #FF671F;
}
.tabWrapper .tabHead {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding-left: 30px;
  position: relative;
  z-index: 2;
}
.tabWrapper .tabHead a {
  display: block;
  color: #fff;
  font-size: 20px;
  padding: 15px 30px;
  position: relative;
}
.tabWrapper .tabHead a:before {
  display: block;
  width: 0;
  height: 4px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #FF671F;
}
.tabWrapper .tabHead a.selected, .tabWrapper .tabHead a:hover {
  color: #FF671F;
}
.tabWrapper .tabHead a.selected:before, .tabWrapper .tabHead a:hover:before {
  width: 100%;
  left: 0;
}
.tabWrapper .tabContent {
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  border-radius: 0 40px 0 0;
  position: relative;
}
.tabWrapper .tabContent:after {
  display: block;
  width: 50%;
  position: absolute;
  right: 0;
  content: "";
  border-bottom: 4px solid #fff;
  border-left: 4px solid #fff;
  border-radius: 0 0 0 40px;
  height: 50px;
  left: 100%;
}
.tabWrapper .tabContent .tabItem {
  padding: 60px;
  display: none;
}
.tabWrapper .tabContent .tabItem:first-child {
  display: block;
}
.tabWrapper .tabContent .tabItem p {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 80px;
}
.tabWrapper .tabContent .tabItem h2 {
  font-weight: 300;
  color: #fff;
  padding-bottom: 30px;
}
.tabWrapper.lined {
  padding-left: 50px;
}
.tabWrapper.lined .tabHead {
  padding-left: 60px;
}
.tabWrapper.lined .tabHead a:before {
  height: 1px;
  bottom: -1px;
}
.tabWrapper.lined .tabContent {
  padding-left: 90px;
  border-top: 1px solid #7C7C7C;
  border-right: none;
  border-radius: 0;
  background: url(../images/sustainability/tabBg.svg) no-repeat bottom right;
}
.tabWrapper.lined .tabContent .tabItem {
  padding: 60px 0 100px 0;
  width: 60%;
}
.tabWrapper.lined .tabContent:after {
  display: none;
}

section.mainCareer {
  padding: 160px 0;
}

section.mainSustabinability {
  position: relative;
}
section.mainSustabinability .owl-carousel, section.mainSustabinability .owl-stage-outer, section.mainSustabinability .owl-stage, section.mainSustabinability .owl-item, section.mainSustabinability .item {
  height: 100%;
}
section.mainSustabinability .item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.mainSustabinability .item .caption {
  padding: 80px 0 240px 140px;
  position: relative;
}
section.mainSustabinability .item .caption img {
  width: auto;
}
section.mainSustabinability .item .caption h2 span {
  display: block;
  font-size: 50px;
}
section.mainSustabinability .item .caption svg {
  position: absolute;
  left: 0;
  top: 160px;
}
section.mainSustabinability .item .caption p {
  color: #fff;
  max-width: 680px;
  padding: 60px 0;
  font-weight: 300;
}
section.mainSustabinability .owl-nav {
  position: absolute;
  left: 140px;
  bottom: 80px;
}
section.mainSustabinability .leafs {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  display: block;
  width: 40%;
}
section.mainSustabinability .leafs path {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
}
section.mainSustabinability .leafs path:nth-child(2) {
  transition-delay: 0.1s;
}
section.mainSustabinability .leafs path:nth-child(3) {
  transition-delay: 0.2s;
}
section.mainSustabinability .leafs path:nth-child(4) {
  transition-delay: 0.3s;
}
section.mainSustabinability .leafs path:nth-child(5) {
  transition-delay: 0.4s;
}
section.mainSustabinability .leafs path:nth-child(6) {
  transition-delay: 0.5s;
}
section.mainSustabinability .leafs path:nth-child(7) {
  transition-delay: 0.6s;
}
section.mainSustabinability .leafs path:nth-child(8) {
  transition-delay: 0.7s;
}
section.mainSustabinability .leafs path:nth-child(9) {
  transition-delay: 0.8s;
}
section.mainSustabinability .leafs path:nth-child(10) {
  transition-delay: 0.9s;
}
section.mainSustabinability .leafs.animatedIn path {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
}

section.mainCatalogues {
  padding: 100px 0;
}
section.mainCatalogues #mainCataloguesSlider .owl-stage-outer {
  padding: 60px 0;
}
section.mainCatalogues .owl-nav {
  position: absolute;
  top: -40px;
  right: 0;
}
section.mainCatalogues .owl-nav button {
  border: 1px solid #000 !important;
}
section.mainCatalogues .owl-nav button.owl-next span {
  background: url(../images/icons/arrow-r-b.svg) no-repeat center;
}
section.mainCatalogues .owl-nav button.owl-next:hover span {
  background: url(../images/icons/arrow-r-w.svg) no-repeat center;
}
section.mainCatalogues .owl-nav button.owl-prev span {
  background: url(../images/icons/arrow-l-b.svg) no-repeat center;
}
section.mainCatalogues .owl-nav button.owl-prev:hover span {
  background: url(../images/icons/arrow-l-w.svg) no-repeat center;
}
section.mainCatalogues .owl-nav button:hover {
  border: 1px solid #FF671F !important;
}
section.mainCatalogues .owl-nav button:hover:before {
  width: 100%;
  height: 100%;
}

section.mainBlog {
  background: #242424;
}
section.mainBlog .container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
section.mainBlog .left {
  width: 35%;
  padding: 160px 130px 400px;
}
section.mainBlog .left p {
  color: #fff;
  padding: 20px 0 60px;
}
section.mainBlog .left svg {
  position: absolute;
  left: 10px;
  bottom: 0;
  pointer-events: none;
}
section.mainBlog .right {
  width: 65%;
  padding: 180px 130px;
}
section.mainBlog #mainBlogSlider .item a {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 130%;
}
section.mainBlog #mainBlogSlider .item a span.img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  position: absolute;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.mainBlog #mainBlogSlider .item a span.img img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section.mainBlog #mainBlogSlider .item a span.img:before {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 149.36%);
  width: 100%;
  height: 70%;
  bottom: 0;
  left: 0;
  content: "";
  z-index: 2;
}
section.mainBlog #mainBlogSlider .item a span.text {
  font-size: 23px;
  color: #fff;
  font-weight: 500;
  padding: 0 45px 70px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/icons/arrow-r-w.svg) no-repeat 90% 60px;
  z-index: 3;
}
section.mainBlog #mainBlogSlider .active a {
  padding-bottom: 130%;
}
section.mainBlog #mainBlogSlider .active + .active a {
  padding-bottom: 106%;
}
section.mainBlog #mainBlogSlider .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
}

section.mainContactForm {
  padding: 100px 0;
}
section.mainContactForm .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  box-shadow: 0px 4px 61px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
section.mainContactForm .left {
  width: 60%;
  padding: 70px;
}
section.mainContactForm .left h2 {
  padding-bottom: 30px;
}
section.mainContactForm .right {
  width: 40%;
}
section.mainContactForm .right img {
  display: block;
  width: 100%;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
}

section.mainSocial {
  background: url(../images/img/social.jpg) no-repeat center;
  background-size: cover;
  padding: 300px 0;
}
section.mainSocial .container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: end;
}
section.mainSocial h2 {
  padding-left: 140px;
  width: 100%;
}
section.mainSocial p {
  width: 100%;
  position: relative;
  margin-top: 25px;
  color: #fff;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  border-radius: 0 40px 0 0;
  padding: 25px 140px 60px;
  width: 60%;
  font-weight: 300;
}
section.mainSocial p span {
  display: block;
  max-width: 580px;
}
section.mainSocial .social {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 40%;
  padding-right: 140px;
  position: relative;
  justify-content: end;
  margin-bottom: -100px;
}
section.mainSocial .social:before {
  height: 50px;
  width: calc(100% - 450px);
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-radius: 0 0 0 40px;
  content: "";
  position: absolute;
  left: -4px;
  top: -20px;
}
section.mainSocial .social div {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 290px;
  justify-content: space-between;
}
section.mainSocial .social strong {
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 37px;
  padding-bottom: 20px;
}
section.mainSocial .social svg path {
  fill: #fff;
}

section.subPage {
  padding-top: 82px;
}

.pageHeader {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pageHeader img {
  display: block;
  width: 100%;
  height: auto;
}
.pageHeader h1 {
  font-size: 74px;
  font-weight: 300;
  padding-left: 140px;
}
.pageHeader h1 small {
  display: block;
  font-size: 23px;
}
.pageHeader h1 i {
  font-style: normal;
  color: #FF671F;
}
.pageHeader.imgHeader h1 {
  position: absolute;
  bottom: 55%;
  color: #fff;
}
.pageHeader.imgHeader:after {
  display: block;
  width: 50%;
  height: 50%;
  content: "";
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  border-radius: 0 60px 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.pageHeader.imgHeader p {
  position: absolute;
  bottom: 25%;
  color: #fff;
  width: 30%;
  margin-left: 140px;
}
.pageHeader.imgHeader p i {
  color: #FF671F;
}
.pageHeader.txtHeader {
  padding: 120px 140px 210px;
}
.pageHeader.txtHeader h1 {
  color: #000;
  padding-left: 0;
  margin-bottom: 15px;
}
.pageHeader.txtHeader h1 small strong {
  color: #FF671F;
}
.pageHeader.txtHeader svg {
  position: absolute;
  left: 0;
}
.pageHeader.txtHeader svg.sDecor {
  left: auto;
  right: 5%;
  top: 35%;
}
.pageHeader.txtHeader p {
  width: 100%;
  max-width: 500px;
  position: relative;
  padding-top: 25px;
}
.pageHeader.txtHeader p.sustainability {
  max-width: 800px;
}
.pageHeader.txtHeader .txt {
  padding-top: 0;
}
.pageHeader.txtHeader .txt p {
  max-width: 700px;
}
.pageHeader.txtHeader .txt h2 {
  padding: 60px 0 30px;
}

.pageContent {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}
.pageContent .pageContentInner {
  width: 78%;
}
.pageContent .pageContentInner .investorDashboard h2 {
  font-weight: 600;
}
.pageContent .pageContentInner .investorDashboard .investorContact {
  background: url(../images/icons/contactBg.svg) no-repeat right bottom;
}

.sidebar {
  width: 17%;
  padding-top: 100px;
}
.sidebar span.sideMenuDropDown {
  display: none;
}
.sidebar ul li.active a {
  font-weight: 500;
  color: #FF671F;
}
.sidebar ul li a {
  font-size: 20px;
  font-weight: 300;
  color: #181818;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  padding: 10px 0;
}
.sidebar ul li a:hover {
  color: #FF671F;
  padding-left: 5px;
}
.sidebar ul li.inner .innerBaslik {
  position: relative;
}
.sidebar ul li.inner .innerBaslik:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/icons/plus.svg) no-repeat;
  position: absolute;
  left: -20px;
  top: 16px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sidebar ul li.inner .active .innerBaslik:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/icons/minus.svg) no-repeat;
  position: absolute;
  left: -20px;
  top: 22px;
}
.sidebar ul li.inner .active .innerBaslik:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/icons/minus.svg) no-repeat;
  position: absolute;
  left: -20px;
  top: 10px;
}
.sidebar ul li.inner .active {
  color: #FF671F !important;
  position: relative;
}
.sidebar ul li.inner .innerUl {
  display: none;
  padding: 10px 0 10px 0px;
}
.sidebar ul li.inner .innerUl li a {
  color: #181818;
  font-size: 14px;
  font-weight: 300;
}
.sidebar ul li.inner .innerUl li a:hover {
  color: #FF671F;
}
.sidebar ul li.inner .innerUl li.active:before {
  display: none;
}

.partnerShip .dFlex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.partnerShip .partnerShipGraph {
  width: 100%;
  position: relative;
}
.partnerShip .partnerShipGraph svg {
  display: block;
  margin: auto;
}
.partnerShip .partnerShipGraph .partnerShipInfo {
  position: absolute;
  font-size: 20px;
  font-weight: bold;
}
.partnerShip .partnerShipGraph .partnerShipInfo:after {
  display: block;
  width: 93px;
  height: 1px;
  content: "";
  position: absolute;
  right: -120px;
  top: 13px;
}
.partnerShip .partnerShipGraph .partnerShipInfo:before {
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  position: absolute;
  right: -25px;
  top: 4px;
}
.partnerShip .partnerShipGraph .partnerShipInfo strong {
  display: block;
  font-size: 17px;
}
.partnerShip .partnerShipGraph .partnerShipInfo.grey {
  text-align: right;
  top: 25%;
  right: 70%;
  color: #757575;
}
.partnerShip .partnerShipGraph .partnerShipInfo.grey:after {
  border-top: 1px dotted #757575;
}
.partnerShip .partnerShipGraph .partnerShipInfo.grey:before {
  background: #757575;
}
.partnerShip .partnerShipGraph .partnerShipInfo.grey strong {
  color: #757575;
}
.partnerShip .partnerShipGraph .partnerShipInfo.orange {
  text-align: right;
  top: 54%;
  right: 73%;
  color: #FF671F;
}
.partnerShip .partnerShipGraph .partnerShipInfo.orange:after {
  border-top: 1px dotted #FF671F;
}
.partnerShip .partnerShipGraph .partnerShipInfo.orange:before {
  background: #FF671F;
}
.partnerShip .partnerShipGraph .partnerShipInfo.orange strong {
  color: #FF671F;
}
.partnerShip .partnerShipGraph .partnerShipInfo.blue {
  text-align: left;
  top: 25%;
  left: 68%;
  color: #4C759A !important;
}
.partnerShip .partnerShipGraph .partnerShipInfo.blue:after {
  border-top: 1px dotted #4C759A;
  left: -120px;
  right: auto;
}
.partnerShip .partnerShipGraph .partnerShipInfo.blue:before {
  background: #4C759A;
  left: -25px;
  right: auto;
}
.partnerShip .partnerShipGraph .partnerShipInfo.blue strong {
  color: #4C759A;
}
.partnerShip .partnerShipGraph p {
  width: 100%;
  color: #757575;
  text-align: center;
  padding-top: 40px;
}
.partnerShip .partnerShipInner {
  margin-top: 50px;
  margin-left: 80px;
}
.partnerShip .partnerShipInner ul {
  margin-bottom: 50px;
}
.partnerShip .partnerShipInner ul li {
  margin-bottom: 20px;
}
.partnerShip .partnerShipInner ul li span {
  display: block;
  position: relative;
  font-size: 17px;
  font-weight: 600;
}
.partnerShip .partnerShipInner ul li span:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  left: -25px;
}
.partnerShip .partnerShipInner ul li span.blue {
  color: #4C759A;
}
.partnerShip .partnerShipInner ul li span.blue:before {
  background-color: #4C759A;
}
.partnerShip .partnerShipInner ul li span.orange {
  color: #FF671F;
}
.partnerShip .partnerShipInner ul li span.orange:before {
  background-color: #FF671F;
}
.partnerShip .partnerShipInner ul li small {
  font-weight: 400;
  font-size: 17px;
}

.infoBox {
  box-shadow: 0px 4px 62.2px rgba(0, 0, 0, 0.2);
  width: 100%;
  background: #fff;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  padding: 40px 120px;
  /*40px 160px*/
  margin-top: -80px;
}
.infoBox ul {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.infoBox ul li {
  width: 48%;
  color: #5A5A5A;
  font-size: 25px;
  position: relative;
  border-bottom: 1px solid rgba(88, 88, 88, 0.5);
  padding: 40px 0;
}
.infoBox ul li strong {
  display: block;
  color: #000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 35px;
  /*40*/
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.infoBox ul li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #FF671F;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.infoBox ul li:hover strong {
  color: #FF671F;
}
.infoBox ul li:hover:before {
  width: 100%;
}
.infoBox.quaternary {
  margin-top: 50px;
  margin-bottom: 60px;
  padding-left: 80px;
  padding-right: 80px;
}
.infoBox.quaternary ul li {
  width: 23%;
}

#infoSlider .caption {
  position: absolute;
  left: 700px;
  opacity: 0;
  font-size: 36px;
  color: #fff;
  top: 50%;
  border-bottom: 1px solid #fff;
  width: 100%;
  max-width: 550px;
  padding-bottom: 50px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
#infoSlider .caption strong {
  display: block;
  font-size: 60px;
}
#infoSlider .caption i {
  color: #FF671F;
}
#infoSlider .active .caption {
  left: 340px;
  opacity: 1;
}
#infoSlider .owl-nav {
  position: absolute;
  left: 340px;
  bottom: 90px;
}

.videoBgSlider {
  width: 100%;
  height: auto;
  position: relative;
}
.videoBgSlider video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.videoBgSlider #infoSlider {
  position: relative;
}
.videoBgSlider #infoSlider .item {
  padding: 250px 0;
}
.videoBgSlider #infoSlider .caption {
  position: relative;
  left: auto;
  margin-left: 700px;
}
.videoBgSlider #infoSlider .active .caption {
  margin-left: 340px;
}

.teaserItem {
  width: 100%;
  padding: 90px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.teaserItem svg {
  display: block;
  position: absolute;
  left: 0;
}
.teaserItem svg.animateMe path {
  stroke-dasharray: 2100;
  stroke-dashoffset: 2100;
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
.teaserItem svg.animatedIn path {
  stroke-dashoffset: 0;
}
.teaserItem .title {
  color: #fff;
  font-size: 96px;
  line-height: 1;
  margin-top: 40px;
}
.teaserItem .title.sm {
  font-size: 50px;
  font-weight: 300;
}
.teaserItem .title.sm span {
  color: white !important;
  line-height: 70px;
}
.teaserItem .title.sm strong {
  color: #FF671F;
  font-weight: 500;
}
.teaserItem .title p {
  color: white;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  max-width: 600px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.teaserItem .title span {
  display: block;
}
.teaserItem .title strong {
  display: block;
  color: #FF671F;
}

.videoHolder {
  width: 100%;
  position: relative;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  overflow: hidden;
}
.videoHolder:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.videoHolder video, .videoHolder img {
  width: 100%;
  display: block;
  position: relative;
  height: 600px;
  object-fit: cover;
}
.videoHolder .title {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 110px;
  z-index: 3;
}
.videoHolder .title p {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
}
.videoHolder .title p small {
  display: block;
  font-weight: 300;
  font-size: 36px;
}
.videoHolder .title p b {
  display: block;
  color: #FF671F;
}
.videoHolder .title a {
  display: block;
  width: 240px;
  height: 240px;
  text-align: center;
  line-height: 240px;
  border: 1px solid #fff;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  position: absolute;
  font-weight: 300;
  font-size: 24px;
  color: #fff;
  font-style: normal;
  cursor: pointer;
}
.videoHolder .title a span {
  position: relative;
}
.videoHolder .title a:before {
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: linear-gradient(180deg, #F26626 0%, #FF841D 100%);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.videoHolder .title a:hover {
  border: 1px solid #FF671F !important;
}
.videoHolder .title a:hover:before {
  width: 100%;
  height: 100%;
}

.imgHolder {
  width: 100%;
}
.imgHolder img {
  display: block;
  width: 100%;
}

.career-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 22px;
  background-color: #fff;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  border-radius: 39px;
}
.career-item .img {
  width: 40%;
  padding-bottom: 50%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.career-item .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.career-item .text {
  width: 60%;
  padding: 0 40px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  padding-left: 40px;
}
.career-item .text strong {
  font-size: 43px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -0.215px;
  color: #FF671F;
  font-weight: 500;
  padding-bottom: 30px;
}
.career-item .text strong b {
  color: #fff;
}
.career-item .text strong span {
  color: #000;
  font-weight: 700;
}
.career-item:hover .img img {
  width: 120%;
}
.career-item.fullWidth {
  position: relative;
}
.career-item.fullWidth .img {
  width: 100%;
  padding-bottom: 22%;
}
.career-item.fullWidth .text {
  position: absolute;
  right: 210px;
  bottom: 102px;
  width: auto;
}

.blogItem {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 22px;
  background-color: #fff;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  border-radius: 39px;
}
.blogItem .img {
  width: 100%;
  padding-bottom: 44%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.blogItem .img.bgGray {
  background-color: #F3F3F3;
}
.blogItem .img.bgDarkGray {
  background-color: #d9d9d9;
}
.blogItem .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.blogItem .text {
  width: 100%;
  padding: 60px 0 60px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  position: relative;
}
.blogItem .text.equalArrow {
  flex-direction: row !important;
  justify-content: start;
}
.blogItem .text.equalArrow strong {
  padding-bottom: unset;
}
.blogItem .text.equalArrow small {
  width: 20px;
  position: absolute;
  right: 0;
}
.blogItem .text.sm {
  padding: 30px 0 30px !important;
  height: 200px;
}
.blogItem .text strong {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  padding-bottom: 10px;
}
.blogItem .text small {
  display: block;
  font-size: 15px;
  background: url(../images/icons/arrow-r-b.svg) no-repeat bottom right;
  padding-bottom: 20px;
}
.blogItem:hover .img img {
  width: 110%;
}

.facilityItem {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  border-radius: 39px;
  margin-bottom: 60px;
  display: none;
}
.facilityItem .img {
  width: 37.5%;
  border-radius: 0 39px 39px 0;
  -webkit-border-radius: 0 39px 39px 0;
  -moz-border-radius: 0 39px 39px 0;
  position: relative;
  overflow: hidden;
}
.facilityItem .img img {
  display: block;
  width: 100%;
}
.facilityItem .text {
  width: 62.5%;
  padding: 60px 120px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  position: relative;
}
.facilityItem .text .facilityRow {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.facilityItem .text .facilityRow .col {
  color: #000;
  font-size: 21px;
  font-weight: 500;
  margin-right: 30px;
}
.facilityItem .text .facilityRow strong {
  display: block;
  color: #FF671F;
}
.facilityItem .text hr {
  margin-bottom: 30px;
}
.facilityItem.selected {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.branchSelector {
  display: block;
  width: 100%;
  height: auto;
}
.branchSelector path.countryItem {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.branchSelector path.countryItem:hover, .branchSelector path.countryItem.selected {
  fill: #FF671F;
}

.founder {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.founder .left {
  width: 40%;
}
.founder .right {
  width: 60%;
  padding-left: 120px;
}

.membershipItem {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  padding: 20px 0 60px;
  border: 1px solid #fff;
}
.membershipItem img {
  display: block;
  margin: auto;
}
.membershipItem span {
  display: block;
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
.membershipItem:hover {
  border: 1px solid #FF671F;
}

table.contactInfo {
  margin-bottom: 40px;
}
table.contactInfo td {
  font-weight: 300;
  font-size: 23px;
  padding: 10px;
}

.w80 {
  width: 80%;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

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

.pb-40 {
  padding-bottom: 40px !important;
}

.mt-170 {
  margin-top: 170px;
}

.ml-300 {
  margin-left: 300px;
}

p.indent span {
  display: block;
  padding: 10px 30px;
}

.cvPopup {
  display: inline-flex !important;
  padding: 75px 50px !important;
  width: 75%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}
.cvPopup .imgItem {
  margin-left: 30px;
  margin-top: 25px;
  position: relative;
}
.cvPopup .imgItem div {
  display: block;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  padding: 15px 15px 85px 15px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  position: relative;
}
.cvPopup .imgItem div::before {
  content: "";
  background: url(../images/icons/popupBg.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -120px;
  left: -100px;
  z-index: 1;
  width: 150%;
  height: 120%;
}
.cvPopup .imgItem div figure {
  width: 100%;
  background-color: #F4F4F4;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  margin-bottom: 38px;
  max-height: 216px;
  z-index: 2;
  position: relative;
}
.cvPopup .imgItem div figure img {
  width: 100%;
}
.cvPopup .imgItem div small {
  display: block;
  margin-left: 18px;
  font-size: 15px;
  margin-bottom: 20px;
}
.cvPopup .imgItem div span {
  display: block;
  margin-left: 18px;
  font-weight: 500;
  font-size: 20px;
}
.cvPopup .imgItem div span i {
  display: block;
  margin-top: 10px;
  font-weight: 400;
  color: #FF671F;
  font-style: normal;
}
.cvPopup p {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 50px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 75%;
}

.txtImgContainer {
  width: 100%;
  position: relative;
}
.txtImgContainer .txtImgItem {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 160px;
}
.txtImgContainer .txtImgItem .imgContent {
  width: 64%;
}
.txtImgContainer .txtImgItem .imgContent img {
  display: block;
  width: 100%;
  border-radius: 0 30px 30px 0;
  -webkit-border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
}
.txtImgContainer .txtImgItem .txtContent {
  width: 44%;
  margin-left: -8%;
  margin-top: 75px;
  background: #fff;
  padding: 80px;
  height: max-content;
  position: relative;
  z-index: 2;
  border-radius: 20px;
}
.txtImgContainer .txtImgItem .txtContent .txtContentHeader {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.txtImgContainer .txtImgItem .txtContent .txtContentHeader img:first-child {
  width: 200px;
}
.txtImgContainer .txtImgItem .txtContent .txtContentHeader img:not(:first-child) {
  margin: 0 5px;
  width: 65px;
  height: 65px;
}
.txtImgContainer .txtImgItem.left .imgContent {
  order: 2;
  border-radius: 30px 0px 0px 30px;
  -webkit-border-radius: 30px 0px 0px 30px;
  -moz-border-radius: 30px 0px 0px 30px;
}
.txtImgContainer .txtImgItem.left .txtContent {
  order: 1;
  margin-left: 0;
  margin-right: -8%;
  padding-left: 240px;
}
.txtImgContainer .i3 {
  display: block;
  position: absolute;
  left: 0;
  width: 20%;
  top: -17%;
}

.privacyPolicy {
  padding: 150px;
}
.privacyPolicy .pageHead {
  padding: 50px 0 25px;
}
.privacyPolicy .privacyPolicyContent h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.privacyPolicy .privacyPolicyContent h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.privacyPolicy .privacyPolicyContent p {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}
.privacyPolicy .privacyPolicyContent p a {
  color: #FF671F;
}
.privacyPolicy .privacyPolicyContent ul li {
  font-size: 1rem;
  list-style-type: disc;
  margin-left: 25px;
}

.cookie .cheader {
  margin-bottom: 20px;
}
.cookie table {
  width: 100%;
  margin: 50px auto;
  border-top: 1px solid #858585;
  border-left: 1px solid #858585;
}
.cookie table.full {
  width: 100%;
}
.cookie table td {
  padding: 10px;
  border-right: 1px solid #858585;
  border-bottom: 1px solid #858585;
}
.cookie h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.cookie h3 {
  font-size: 1.75rem;
  margin-bottom: 30px;
}
.cookie ul li {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  line-height: 1.5;
}
.cookie p {
  margin-bottom: 30px;
  font-size: 1rem;
  font-size: 18px;
  color: #5e676e;
  font-weight: 500;
}
.cookie p:last-child {
  margin-bottom: 0;
}
.cookie p a {
  color: #FF671F;
  font-weight: inherit;
  font-size: inherit;
}

.ff-hd-08 {
  color: #f26726 !important;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.ff-pr-03 {
  color: #5e676e !important;
  font-size: 18px;
  font-weight: 500;
}

.ff-pr-03 strong {
  font-weight: 600;
}

.career-items-wrapper {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.career-items-wrapper .career-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 48%;
  height: 380px;
  padding: 22px;
  background-color: #fff;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  border-radius: 39px;
}
.career-items-wrapper .career-item .career-item-img {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.career-items-wrapper .career-item .career-item-img:hover img {
  transform: scale(1.1);
}
.career-items-wrapper .career-item .career-item-img img {
  width: 300px;
  transition: 0.3s all ease-in-out;
}
.career-items-wrapper .career-item .career-item-text {
  width: 55%;
  padding: 0 40px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
.career-items-wrapper .career-item .career-item-text .career-item-text-title {
  font-size: 43px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -0.215px;
}
.career-items-wrapper .career-item .career-item-text .career-item-text-title b {
  font-weight: 500;
}
.career-items-wrapper .career-item .career-item-text .career-item-text-title:last-child {
  margin-top: 30px;
  font-weight: 300;
  line-height: 27px;
}
.career-items-wrapper .career-item .career-item-text .career-item-text-content {
  font-size: 20px;
  font-weight: 300;
  line-height: 27px;
  padding-top: 30px;
}

#careerSlider {
  position: relative;
  height: 640px;
}
#careerSlider .item::after {
  content: "";
  background: url(../images/img/step.svg) no-repeat;
  background-size: 88%;
  z-index: 9999;
  position: absolute;
  left: 0;
  top: 90px;
  width: 100%;
  height: 100%;
}
#careerSlider .caption {
  position: absolute;
  left: 700px;
  opacity: 0;
  color: #fff;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  max-width: 550px;
  padding-bottom: 50px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  font-size: 50px;
  font-weight: 300;
  line-height: 70px;
  letter-spacing: -0.25px;
}
#careerSlider .caption strong {
  display: block;
  font-size: 60px;
}
#careerSlider .caption span {
  font-weight: 500;
}
#careerSlider .caption i {
  color: #FF671F;
}
#careerSlider .caption p {
  color: #fff;
  margin-top: 34px;
  font-size: 20px;
}
#careerSlider .active .caption {
  left: 130px;
  opacity: 1;
}
#careerSlider .owl-nav {
  position: absolute;
  left: 130px;
  bottom: 110px;
}

.stats {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 140px 80px;
  width: 100%;
  border-radius: 39px;
  box-shadow: 0px 4px 62px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 4px 62px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 62px 0px rgba(0, 0, 0, 0.1);
}
.stats p {
  font-size: 40px;
  font-weight: 600;
  width: 23%;
  line-height: 36px;
  letter-spacing: -0.2px;
  border-bottom: 1px solid #585858;
  padding-bottom: 37px;
}
.stats p span {
  color: #5A5A5A;
  font-size: 25px;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: -0.125px;
}
.stats p span i {
  color: #FF671F;
}

.link-wrapper {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.link-wrapper a {
  border-bottom: 1px solid black;
  width: 45%;
}
.link-wrapper a:hover {
  border-bottom: 1px solid #FF671F;
}
.link-wrapper a:hover .title, .link-wrapper a:hover p {
  color: #FF671F;
}
.link-wrapper a .title {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.link-wrapper a .title svg {
  margin-left: 20px;
}
.link-wrapper a p {
  position: relative;
  width: 100%;
  padding-bottom: 22px;
}
.link-wrapper a p::after {
  content: ">";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}
.link-wrapper a.white {
  border-bottom: 1px solid #fff;
}
.link-wrapper a.white .title, .link-wrapper a.white p {
  color: #fff;
}

.quality-wrapper {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 85px;
}
.quality-wrapper img {
  margin: 0 15px;
}

.img-link {
  display: inline-block;
  border-radius: 39px;
  width: 100%;
  background-color: #fff;
  position: relative;
  padding: 22px;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.img-link.right .content {
  right: 230px;
  left: unset;
}
.img-link.right .arrow {
  right: 60px;
  left: unset;
}
.img-link:hover img {
  transform: scale(1.1);
}
.img-link:hover .arrow {
  opacity: 1;
}
.img-link .img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.img-link .img img {
  transition: 0.3s all ease-in-out;
  width: 100%;
  height: 100%;
}
.img-link .content {
  position: absolute;
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
}
.img-link .content p {
  font-size: 43px;
  font-weight: 500;
  line-height: 54px;
  letter-spacing: -0.215px;
}
.img-link .content p span, .img-link .content p i {
  color: #FF671F;
  font-style: normal;
}
.img-link .arrow {
  position: absolute;
  bottom: 60px;
  left: 65px;
  font-weight: bold;
  font-size: 20px;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

#blogSlider {
  position: relative;
}
#blogSlider .caption {
  position: absolute;
  opacity: 0;
  color: #fff;
  bottom: 40px;
  padding: 0 40px;
  width: 100%;
  max-width: 550px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
#blogSlider .caption .tags {
  font-size: 15px;
  line-height: 29px;
}
#blogSlider .caption .content {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #fff;
  margin: 16px 0 6px;
}
#blogSlider .caption .content a {
  color: #fff;
}
#blogSlider .caption .date {
  font-size: 15px;
  line-height: 36px;
}
#blogSlider .active .caption {
  opacity: 1;
}
#blogSlider .owl-nav {
  position: absolute;
  right: 70px;
  bottom: 140px;
}

.blog-tab-menu {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 35px;
  margin: 0 auto;
  margin-top: 90px;
  height: 59px;
  background-color: #fff;
  width: max-content;
  border-radius: 39px;
  box-shadow: 0px 4px 62.2px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 4px 62.2px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 4px 62.2px 0px rgba(0, 0, 0, 0.05);
}
.blog-tab-menu a {
  height: 31px;
  padding: 0 25px;
  border-radius: 36.5px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.blog-tab-menu a.active {
  background: linear-gradient(180deg, #F26626 0%, #FF841D 100%);
  color: #fff;
}

.blog-item {
  background-color: #fff;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  border-radius: 39px;
  width: 100%;
  padding: 15px 15px 50px;
  display: inline-block;
  margin: 30px 10px;
  position: relative;
}
.blog-item .img-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  height: 300px;
}
.blog-item .img-wrapper:hover img {
  transform: scale(1.1);
}
.blog-item .img-wrapper img {
  width: 100%;
  height: 100%;
  transition: 0.3s all ease-in-out;
}
.blog-item .text-wrapper {
  padding: 30px 15px;
}
.blog-item .text-wrapper .tags {
  font-size: 15px;
  line-height: 29px;
}
.blog-item .text-wrapper .content {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin: 16px 0 6px;
}
.blog-item .text-wrapper .date {
  font-size: 15px;
  line-height: 36px;
}
.blog-item .arrow {
  position: absolute;
  right: 60px;
  bottom: 80px;
}

.blogs-wrapper {
  width: 100%;
}
.blogs-wrapper .blogs-header .blogs-header-title {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #000;
  font-size: 20px;
  line-height: 36px;
  padding-bottom: 9px;
  border-bottom: 1px solid #E4E4E4;
}
.blogs-wrapper .blogs-content {
  width: 100%;
  display: none;
  margin-top: 40px;
}
.blogs-wrapper .blogs-content.active {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.blogs-wrapper .moreBtnWrapper {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 120px;
}

.content-header {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 57px;
  padding-bottom: 17px;
  border-bottom: 1px solid #E4E4E4;
}
.content-header.padding-x {
  padding: 0 30px 17px;
}
.content-header.mt-40 {
  margin-top: 40px !important;
}
.content-header a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.content-header a svg {
  margin-right: 10px;
}

.blog-detail-tags {
  margin-top: 55px;
  border-bottom: 2px solid #E4E4E4;
  width: max-content;
}
.blog-detail-tags span {
  margin-right: 15px;
  font-size: 20px;
  line-height: 36px;
}
.blog-detail-tags span a:hover {
  color: #FF671F;
}
.blog-detail-tags span::after {
  content: " ,";
}

.borusanBoruKariyer {
  background-color: #242424;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.borusanBoruKariyer .borusanBoruKariyerMenu {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 150px;
  border-right: 1px solid #7C7C7C;
  width: 30%;
}
.borusanBoruKariyer .borusanBoruKariyerMenu a {
  color: #727272;
  font-size: 20px;
  line-height: 25px;
  margin-top: 38px;
}
.borusanBoruKariyer .borusanBoruKariyerMenu a.active {
  color: #fff;
  position: relative;
}
.borusanBoruKariyer .borusanBoruKariyerMenu a.active::after {
  content: "";
  background: url(../images/icons/arrow-r-w.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 12px;
  display: inline-block;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.borusanBoruKariyer .borusanBoruKariyerContent {
  width: 70%;
}
.borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem {
  display: none;
}
.borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  line-height: 116px;
  letter-spacing: -0.25px;
  padding: 130px 0 100px 80px;
  position: relative;
}
.borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem h2::after {
  content: "";
  background: url(../images/icons/border.png) no-repeat;
  background-size: 100%;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem h2 span {
  display: block;
  color: #FF671F;
  font-weight: 500;
  line-height: 15px;
}
.borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem p {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  padding: 55px 0 100px 80px;
  width: 70%;
}
.borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem .img-wrapper {
  padding-left: 80px;
  padding-bottom: 60px;
}
.borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem .img-wrapper img {
  max-width: 100%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}
.borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem.active {
  display: block;
}

.iklim-insan-inovasyon-table {
  width: 100%;
}
.iklim-insan-inovasyon-table span {
  height: 60px;
  line-height: 60px;
}
.iklim-insan-inovasyon-table span img {
  display: block;
  margin: auto;
}
.iklim-insan-inovasyon-table .bg-green {
  background-color: #1E9A38;
  color: #fff;
  display: block;
  padding: 10px 0;
}
.iklim-insan-inovasyon-table .bg-yellow {
  background-color: #EBA721;
  color: #fff;
  display: block;
  padding: 10px 0;
}
.iklim-insan-inovasyon-table .bg-blue {
  background-color: #047BC1;
  color: #fff;
  display: block;
  padding: 10px 0;
}
.iklim-insan-inovasyon-table tr th {
  width: calc(100% / 3);
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
}
.iklim-insan-inovasyon-table tr td {
  padding: 0;
  border: 1px solid #BDBDBD;
  vertical-align: top;
}
.iklim-insan-inovasyon-table tr td ul {
  min-height: 150px;
  padding: 35px;
}
.iklim-insan-inovasyon-table tr td ul li {
  font-size: 20px;
  line-height: 36px;
}
.iklim-insan-inovasyon-table tr td ul li::before {
  content: "·";
  font-size: 35px;
  vertical-align: middle;
  line-height: 36px;
  margin-right: 10px;
}

.bankItem {
  background-color: white;
  display: inline-block;
  min-height: 450px;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.07);
  border-radius: 39px;
  -webkit-border-radius: 39px;
  -moz-border-radius: 39px;
  padding: 50px 40px;
  border: 1px solid transparent;
}
.bankItem:hover {
  border: 1px solid #FF671F;
}
.bankItem .logo {
  border-bottom: 1px solid #C2C2C2;
  display: block;
  width: 100%;
  padding-bottom: 20px;
}
.bankItem .logo img {
  display: block;
  margin: auto;
}
.bankItem .bankItemInfo span {
  display: flex;
  margin-top: 5px;
}
.bankItem .bankItemInfo span small {
  color: #FF671F;
  font-size: 15px;
  font-weight: 700;
  line-height: 52px;
}
.bankItem .bankItemInfo span span {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  margin-left: 20px;
  margin-top: 15px;
}

.membershipItem {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  padding: 20px 0 60px;
  border: 1px solid #fff;
}
.membershipItem img {
  display: block;
  margin: auto;
}
.membershipItem span {
  display: block;
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
.membershipItem:hover {
  border: 1px solid #FF671F;
}

/*FATİH START*/
.tabsBtn {
  margin-bottom: 150px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -70px;
}
.tabsBtn a {
  padding: 0 25px;
  font-size: 20px;
  font-weight: 300;
}
.tabsBtn a.active-tab {
  color: #FF671F;
}

.tabs-content .tabs {
  display: none;
}

.productDetailPage .tabs-content a {
  color: #FF671F;
}

.accordionContent {
  width: 100%;
  margin-bottom: 70px;
}
.accordionContent .item {
  width: 100%;
  transition: 0.3s;
  margin-bottom: 10px;
  position: relative;
}
.accordionContent .item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FF671F;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.accordionContent .item:before {
  content: "";
  position: absolute;
  width: 1%;
  height: 1px;
  background-color: #FF671F;
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.accordionContent .item .title {
  display: block;
  font-size: 34px;
  font-weight: 300;
  position: relative;
  color: #181818;
  cursor: pointer;
  padding: 30px 0px;
}
.accordionContent .item .title:before {
  width: 36px;
  height: 1px;
  content: "";
  position: absolute;
  right: 0px;
  top: 50px;
  background: #181818;
}
.accordionContent .item .title:after {
  width: 1px;
  height: 36px;
  content: "";
  position: absolute;
  right: 17px;
  top: 33px;
  background: #181818;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.accordionContent .item .desc {
  display: none;
  padding-bottom: 30px;
}
.accordionContent .item .desc p {
  padding-top: 20px;
}
.accordionContent .item .desc p a {
  color: #FF671F;
}
.accordionContent .item .desc .link {
  color: #FF671F;
}
.accordionContent .item.active:after {
  background-color: #FF671F;
}
.accordionContent .item.active:before {
  display: none;
}
.accordionContent .item.active .title {
  color: #FF671F;
}
.accordionContent .item.active .title:before {
  background: #FF671F;
}
.accordionContent .item.active .title:after {
  opacity: 0;
}
.accordionContent .item:hover .title {
  color: #FF671F;
}
.accordionContent .item:hover:before {
  width: 100%;
}

.contactPage .tabsBtn {
  margin-left: 45%;
  justify-content: flex-end;
}
.contactPage .tabsBtn a {
  margin-left: 50px;
  padding: 0;
}
.contactPage .left {
  position: relative;
  min-height: 850px;
}
.contactPage .left .imgGroup {
  position: absolute;
}
.contactPage .adressArea {
  padding-right: 50px;
  padding-bottom: 50px;
}
.contactPage .adressArea p {
  display: flex;
  font-size: 23px;
  font-size: 23px;
  font-weight: 300;
}
.contactPage .adressArea p b {
  width: 200px;
  font-weight: 300;
}
.contactPage .adressArea p b:nth-child(2) {
  width: 100%;
  margin-left: 10px;
}
.contactPage .adressArea p b a {
  color: #181818 !important;
}
.contactPage .dealerArea {
  padding: 0 170px;
}
.contactPage .dealerArea .dealerList {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  padding-bottom: 20px;
}
.contactPage .dealerArea .showMore {
  text-align: center;
}
.contactPage .dealerArea .showMore #showMore {
  background-color: #FF671F;
  color: #fff;
  font-size: 17px;
  padding: 15px 40px;
  border-radius: 39px;
  -webkit-border-radius: 39px;
  -moz-border-radius: 39px;
  display: inline-block;
  cursor: pointer;
}
.contactPage .mapArea {
  width: 100%;
  padding-right: 70px;
}
.contactPage .mapCanvas {
  width: 100%;
  height: 700px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  overflow: hidden;
}

.filterArea {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0px 4px 76.8px 0px rgba(0, 0, 0, 0.09);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  background-color: #fff;
  padding: 20px 20px;
  width: 40%;
  margin: 0 auto 80px auto;
  justify-content: space-between;
}
.filterArea div {
  width: 30%;
}
.filterArea div:nth-child(2) {
  margin-right: 3.33%;
}
.filterArea div:nth-child(3) {
  margin-left: 3.33%;
}
.filterArea select {
  width: 100%;
  border: none;
  font-size: 15px;
  font-weight: 300;
}
.filterArea a {
  color: #fff;
  background-color: #FF671F;
  border-radius: 36px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  font-size: 15px;
  padding: 10px 20px;
  display: inline;
}

.boxItem {
  width: calc(33.33% - 25px);
  margin-left: 25px;
  margin-bottom: 25px;
  background: #FFF;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.07);
  border-radius: 39px;
  -webkit-border-radius: 39px;
  -moz-border-radius: 39px;
  padding: 60px 30px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.boxItem:hover {
  border: 1px solid #FF671F;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.boxItem .title {
  display: block;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 35px;
}
.boxItem p {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  font-size: 15px;
  margin-bottom: 5px;
  align-items: baseline;
}
.boxItem p small:nth-child(1) {
  width: 30%;
}
.boxItem p small:nth-child(2) {
  width: 70%;
  padding-left: 15px;
}

.tabHeader {
  overflow: hidden;
  margin-top: 90px;
}

.imgList {
  margin-left: -30px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.imgList .imgItem {
  width: calc(25% - 30px);
  margin-left: 30px;
  margin-bottom: 30px;
}
.imgList .imgItem a {
  display: block;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
  padding: 15px 15px 85px 15px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  min-height: 500px;
}
.imgList .imgItem a figure {
  width: 100%;
  background-color: #F4F4F4;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  margin-bottom: 38px;
  max-height: 216px;
}
.imgList .imgItem a figure img {
  display: block;
  width: 100%;
}
.imgList .imgItem a small {
  display: block;
  margin-left: 18px;
  font-size: 15px;
  margin-bottom: 20px;
}
.imgList .imgItem a span {
  display: block;
  margin-left: 18px;
  font-weight: 500;
  font-size: 20px;
}
.imgList .imgItem a span i {
  display: block;
  margin-top: 10px;
  font-weight: 400;
  color: #FF671F;
  font-style: normal;
}
.imgList .imgItem a:hover {
  border: 1px solid #FF671F;
}

.textImgContent {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 70px;
  margin-top: 30px;
}
.textImgContent .left {
  width: 40%;
}
.textImgContent .right {
  width: 55%;
}
.textImgContent .right img {
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
}

.list li {
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  margin-bottom: 25px;
}
.list li:before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  position: absolute;
  left: 0;
  top: 7px;
}

.gallery a {
  display: block;
  position: relative;
}
.gallery a .caption {
  position: absolute;
  left: -300px;
  opacity: 0;
  font-size: 36px;
  color: #fff;
  top: 40%;
  width: 100%;
  max-width: 550px;
  padding-bottom: 50px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.gallery a .caption strong {
  display: block;
  font-size: 60px;
}
.gallery a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}
.gallery .active .caption {
  left: 110px;
  opacity: 1;
}
.gallery .owl-nav {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
}

.recruitmentProcessSlider {
  margin-left: 130px;
}
.recruitmentProcessSlider:before {
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #f26626 51%, #e4e4e4 52%);
  position: absolute;
}
.recruitmentProcessSlider .owl-stage {
  padding-left: 0px !important;
}
.recruitmentProcessSlider .item {
  background: #FFF;
  box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.07);
  border-radius: 39px;
  -webkit-border-radius: 39px;
  -moz-border-radius: 39px;
  padding: 35px;
  max-width: 380px;
  height: 320px;
  position: relative;
  margin: 40px 0px;
}
.recruitmentProcessSlider .item span {
  display: block;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 30px;
}
.recruitmentProcessSlider .item span b {
  font-weight: 500;
  margin-right: 10px;
}
.recruitmentProcessSlider .item p {
  max-width: 325px;
  font-size: 16px;
}
.recruitmentProcessSlider .item i {
  display: block;
  width: 23px;
  height: 17px;
  background: url(../images/icons/confirm.svg) no-repeat;
  position: absolute;
  bottom: 70px;
  right: 35px;
  opacity: 0;
}
.recruitmentProcessSlider .active .item {
  border: 1px solid #FF671F;
}
.recruitmentProcessSlider .active .item i {
  opacity: 1;
}
.recruitmentProcessSlider .owl-nav {
  position: absolute;
  top: 46%;
  right: 350px;
  transform: translateY(-50%);
}
.recruitmentProcessSlider .owl-nav button {
  background-color: #FF671F !important;
}
.recruitmentProcessSlider .owl-nav button.owl-prev {
  display: none;
}

.productsContent {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 100px;
}
.productsContent .left {
  width: 40%;
}
.productsContent .right {
  width: 60%;
}
.productsContent .right h1 {
  font-size: 50px;
  font-weight: 300;
  padding: 20px 0 60px 160px;
  color: #fff;
}
.productsContent .right h1 span {
  display: block;
  font-weight: 500;
  font-size: 57px;
  color: #fff;
}
.productsContent .right h1 span i {
  color: #FF671F;
  font-style: normal;
}
.productsContent .right .tabsBtn {
  margin: 0px;
  justify-content: start;
  padding-left: 130px;
}
.productsContent .right .tabsBtn a {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  padding: 20px 30px;
}
.productsContent .right .tabsBtn a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  z-index: 1;
  background-color: #FF671F;
  left: 0;
  bottom: -4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.productsContent .right .tabsBtn a.active-tab {
  color: #FF671F;
}
.productsContent .right .tabsBtn a.active-tab:after {
  width: 100%;
}
.productsContent .right .tabs-content {
  padding: 60px 60px 200px 160px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  border-radius: 0 60px 0 0;
  -webkit-border-radius: 0 60px 0 0;
  -moz-border-radius: 0 60px 0 0;
  position: relative;
}
.productsContent .right .tabs-content:after {
  display: block;
  width: 140px;
  height: 60px;
  content: "";
  border-bottom: 4px solid #fff;
  border-left: 4px solid #fff;
  border-radius: 0 0 0 60px;
  position: absolute;
  left: 100%;
  bottom: -60px;
}
.productsContent .right .tabs-content .tabs p {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
}

.objectViewer {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  box-shadow: 0px 4px 62.2px rgba(0, 0, 0, 0.2);
}

.productTopArea {
  height: calc(100vh - 82px);
  background-color: #242424;
  padding-bottom: 50px;
  padding-top: 60px;
}
.productTopArea .productTop {
  height: 100%;
  width: 100%;
}
.productTopArea .productTop .productsBtn {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 65px;
  padding-top: 38px;
}
.productTopArea .productTop .productsBtn a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #CACACA;
  padding: 0px 30px 15px 30px;
}
.productTopArea .productTop .productsBtn a:first-child {
  padding-left: 15px;
}
.productTopArea .productTop .productsBtn a:last-child {
  padding-right: 15px;
}
.productTopArea .productTop .productsBtn a small {
  display: block;
  font-weight: 400;
}
.productTopArea .productTop .productsBtn a.active {
  color: #FF671F;
  border-color: #FF671F;
}

table.productInfoTable {
  width: 100%;
}
table.productInfoTable td {
  padding: 15px 0;
  color: #000;
  font-size: 20px;
  border-bottom: 1px solid #666666;
}
table.productInfoTable td:last-child {
  text-align: right;
  color: #FF671F;
}

table.rangeTable {
  width: 100%;
  max-width: 1260px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 4px 57.3px rgba(0, 0, 0, 0.13);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  overflow: hidden;
}
table.rangeTable tr.caption td {
  color: #fff;
  text-align: center;
  background: #FF671F;
  padding: 20px 0;
  font-weight: bold;
}
table.rangeTable td {
  padding: 30px 0 50px;
  color: #000;
  font-size: 20px;
  font-weight: 300;
  border-right: 1px solid #B9B9B9;
  text-align: center;
}
table.rangeTable td:last-child {
  border: none;
}
table.rangeTable td strong {
  display: block;
  padding-bottom: 15px;
}

span.productNote {
  font-size: 20px;
  color: #FF671F;
  font-weight: 500;
  padding: 30px 0;
  display: block;
}

.productInfolist {
  padding-left: 25px;
}
.productInfolist li {
  display: list-item;
  list-style-type: disc;
  font-size: 20px;
  color: #000;
}
.productInfolist.horizontal {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.productInfolist.horizontal li {
  margin-right: 25px;
}

img.productGraphic {
  display: block;
  margin: auto;
  max-width: 100%;
}

.educationAndDevelopmentPage .tabsBtn {
  margin-bottom: 50px;
}

#productSlider {
  margin-bottom: 20px;
  z-index: 2;
}
#productSlider .item {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  overflow: hidden;
}
#productSlider .item img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#productSlider .owl-nav .owl-prev {
  position: absolute;
  bottom: -80px;
  left: 0;
}
#productSlider .owl-nav .owl-next {
  position: absolute;
  bottom: -80px;
  right: 0;
}

#productSliderThumbs {
  padding: 0 150px;
}
#productSliderThumbs .item {
  margin: 0 10px;
}
#productSliderThumbs .item img {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid transparent;
}
#productSliderThumbs .current img {
  border: 2px solid #FF671F;
}

.careerPage .careerSliderWrapper {
  position: relative;
  margin-bottom: 110px;
}
.careerPage .careerSliderWrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.careerPage .careerSliderWrapper .owl-carousel {
  background: rgba(0, 0, 0, 0.5);
}
.careerPage .careerSliderWrapper .owl-carousel, .careerPage .careerSliderWrapper .owl-stage-outer, .careerPage .careerSliderWrapper .owl-stage, .careerPage .careerSliderWrapper .owl-item, .careerPage .careerSliderWrapper .item {
  height: 100%;
}
.careerPage .careerSliderWrapper .item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.careerPage .careerSliderWrapper .item .caption {
  padding: 140px 0 240px 140px;
  position: relative;
}
.careerPage .careerSliderWrapper .item .caption img {
  width: auto;
}
.careerPage .careerSliderWrapper .item .caption h2 span {
  display: block;
  font-size: 50px;
}
.careerPage .careerSliderWrapper .item .caption svg {
  position: absolute;
  left: 0;
  top: 100px;
}
.careerPage .careerSliderWrapper .item .caption p {
  color: #fff;
  max-width: 680px;
  padding: 60px 0;
  font-weight: 300;
}
.careerPage .careerSliderWrapper .owl-nav {
  position: absolute;
  left: 140px;
  bottom: 80px;
}

/*FATİH END*/
/*=================================================================
  Cookie
==================================================================*/
.cookie-container {
  position: fixed;
  left: 7%;
  width: 86%;
  bottom: 0;
  margin: 0 auto;
  z-index: 12;
  background: #fff;
  border: solid 1px rgba(255, 255, 255, 0.7);
  padding: 40px 40px 20px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
  border: 1px solid #999;
}
.cookie-container .cookie-content {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.cookie-container .cookie-head h2 {
  font-size: 2em;
  font-weight: 600;
  color: #181818;
}
.cookie-container .cookie-body {
  width: 100%;
}
.cookie-container .cookie-body .cookie-body-text {
  width: 100%;
}
.cookie-container .cookie-body .cookie-body-button {
  width: 100%;
}
.cookie-container .cookie-body p {
  font-size: 0.875em;
  font-weight: 400;
  color: #181818;
  padding-top: 20px;
  line-height: 1.3em;
}
.cookie-container .cookie-body p a {
  display: inline-block;
  color: #FF671F;
}
.cookie-container .cookie-body .button-group {
  width: 100%;
  margin-top: 20px;
}
.cookie-container .cookie-body .button-group .cookie-preferences, .cookie-container .cookie-body .button-group .cookie-close-button, .cookie-container .cookie-body .button-group .js-close-cookie {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  float: left;
  cursor: pointer;
  align-items: center;
  margin-top: 7px;
  height: 52px;
  width: 220px;
  font-size: 0.8125em;
  font-weight: 400;
  color: #181818;
  background: none;
  border: solid 1px #181818;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 10px;
  font-family: "Montserrat", sans-serif;
}
.cookie-container .cookie-body .button-group .js-close-cookie {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #181818;
}
.cookie-container .closeBtn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 52px;
  height: 52px;
  border: solid 1px #fff;
  text-indent: -9999em;
  background: transparent url("../images/icons/close-btn.svg") no-repeat center center;
}
.cookie-container.active {
  opacity: 1;
  bottom: 0;
  z-index: 9999;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

#cookie-preferences {
  position: relative;
  width: 52.55%;
  overflow: hidden;
  padding: 60px 100px 60px 60px;
}
#cookie-preferences .cookie-content-head h2 {
  font-size: 2.5em;
  font-weight: 500;
  color: #FF671F;
  padding-bottom: 20px;
}
#cookie-preferences .cookie-content-body > p {
  font-size: 1.0625em;
  font-weight: 400;
  color: #333333;
  line-height: 1.4em;
}
#cookie-preferences .cookie-content-body > p a {
  font-weight: 700;
  color: #333333;
  text-decoration: underline !important;
}
#cookie-preferences .cookie-content-body > a {
  display: inline-block;
  width: 290px;
  margin: 30px 0 50px;
}
#cookie-preferences .fancybox-close-small {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 60px;
  height: 60px;
  border: solid 1px #333333;
  text-indent: -9999em;
  background: transparent url("../images/icons/close_btn_black.svg") no-repeat center center;
}
#cookie-preferences .fancybox-close-small svg {
  display: none;
}
#cookie-preferences .fillBtn {
  width: auto !important;
}
#cookie-preferences .preferences-list-container {
  clear: both;
}
#cookie-preferences .preferences-list-container > h3 {
  font-size: 1.875em;
  font-weight: 500;
  color: #333333;
}
#cookie-preferences .preferences-list-container .preferences-list {
  margin: 30px 0 40px;
  border-top: solid 1px #f1f2f3;
}
#cookie-preferences .preferences-list-container .pre-item {
  position: relative;
  width: 100%;
  border-left: solid 1px #f1f2f3;
  border-right: solid 1px #f1f2f3;
  border-bottom: solid 1px #f1f2f3;
}
#cookie-preferences .preferences-list-container .pre-item .pre-head {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#cookie-preferences .preferences-list-container .pre-item .pre-text p, #cookie-preferences .preferences-list-container .pre-item .pre-switch p {
  font-size: 1.375em;
  font-weight: 600;
  color: #333333;
}
#cookie-preferences .preferences-list-container .pre-item .pre-text p.color-red, #cookie-preferences .preferences-list-container .pre-item .pre-switch p.color-red {
  color: #FF671F;
}
#cookie-preferences .preferences-list-container .pre-item .pre-text a, #cookie-preferences .preferences-list-container .pre-item .pre-switch a {
  display: block;
  font-size: 1.375em;
  font-weight: 600;
  color: #333333;
  line-height: 1.2em;
}
#cookie-preferences .preferences-list-container .pre-item .pre-text a.color-red, #cookie-preferences .preferences-list-container .pre-item .pre-switch a.color-red {
  color: #FF671F;
}
#cookie-preferences .preferences-list-container .pre-item .pre-text {
  padding: 30px 0 30px 30px;
}
#cookie-preferences .preferences-list-container .pre-item .pre-text a {
  display: block;
  position: relative;
  padding-left: 42px;
}
#cookie-preferences .preferences-list-container .pre-item .pre-text a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 19px;
  height: 19px;
  margin-top: -9.5px;
  background: transparent url(../images/icons/downArrow.svg) no-repeat center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#cookie-preferences .preferences-list-container .pre-item .pre-text a.active:before {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
}
#cookie-preferences .preferences-list-container .pre-item .pre-switch {
  padding: 30px 30px 30px 0;
}
#cookie-preferences .preferences-list-container .pre-item .pre-body {
  position: relative;
  display: none;
}
#cookie-preferences .preferences-list-container .pre-item .pre-body-text {
  padding: 0 30px 30px;
  width: 100%;
}
#cookie-preferences .preferences-list-container .pre-item .pre-body-text p {
  font-size: 0.875em;
  font-weight: 400;
  color: #333333;
  line-height: 1.4em;
}
#cookie-preferences .preferences-list-container .pre-item.active .pre-body {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: auto;
}
#cookie-preferences .preferences-list-container .pre-item.active .pre-text a::before {
  background: transparent url("../images/icons/minus_black.svg") no-repeat 0 center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#cookie-preferences .preferences-list-container .goToLink.red {
  display: inline-block;
  width: 290px;
}
#cookie-preferences .preferences-list-container .switch {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 40px;
}
#cookie-preferences .preferences-list-container .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
#cookie-preferences .preferences-list-container .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333333;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#cookie-preferences .preferences-list-container .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 7px;
  bottom: 7px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#cookie-preferences .preferences-list-container input:checked + .slider {
  background-color: #FF671F;
}
#cookie-preferences .preferences-list-container input:focus + .slider {
  box-shadow: 0 0 1px #333333;
}
#cookie-preferences .preferences-list-container input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
#cookie-preferences .preferences-list-container .slider.round {
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
}
#cookie-preferences .preferences-list-container .slider.round::before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.historyWrapper {
  padding-top: 140px;
}
.historyWrapper .historyHeader {
  position: relative;
}
.historyWrapper .historyHeader:after {
  display: block;
  width: 50%;
  height: 150px;
  content: "";
  border-top: 4px solid #FF671F;
  border-right: 4px solid #FF671F;
  border-radius: 0 60px 0 0;
  left: 0;
  bottom: 0;
}
.historyWrapper .historyContent {
  width: 100%;
  padding: 0 240px;
}
.historyWrapper .historyList {
  background: url(../images/icons/historyLine.svg) repeat-y top center;
  position: relative;
}
.historyWrapper .historyList .line {
  width: 100%;
  height: 340px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/icons/historyLineOrange.svg) repeat-y top center;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  min-height: 340px !important;
}
.historyWrapper .hItem {
  width: 100%;
  height: 765px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.historyWrapper .hItem .title {
  width: 50%;
  position: relative;
  padding-left: 70px;
}
.historyWrapper .hItem .title:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  position: absolute;
  left: -18px;
  top: 30%;
  background: #E4E4E4;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.historyWrapper .hItem .title strong {
  display: block;
  font-size: 110px;
  font-weight: 500;
}
.historyWrapper .hItem .title img {
  display: block;
  width: 100%;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
}
.historyWrapper .hItem .title img.bergLogo {
  width: auto;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  float: right;
}
.historyWrapper .hItem .title p {
  font-weight: 300;
  font-size: 22px;
}
.historyWrapper .hItem .title p span {
  color: #FF671F;
  font-weight: 500;
  display: block;
}
.historyWrapper .hItem .img {
  width: 50%;
  padding-right: 75px;
}
.historyWrapper .hItem .img img {
  display: block;
  width: 100%;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  height: 340px;
  object-fit: cover;
  object-position: top center;
}
.historyWrapper .hItem .img span {
  display: block;
  font-size: 20px;
  padding-top: 30px;
}
.historyWrapper .hItem .typho {
  position: absolute;
  font-weight: 300;
  font-size: 60px;
  line-height: 1;
  right: 0px;
  bottom: -10px;
  text-align: right;
}
.historyWrapper .hItem .typho strong {
  color: #FF671F;
}
.historyWrapper .hItem .typho.sm {
  font-size: 40px;
}
.historyWrapper .hItem:nth-child(even) .title {
  order: 1;
  text-align: right;
  padding-left: 0;
  padding-right: 70px;
  width: 32%;
}
.historyWrapper .hItem:nth-child(even) .title:before {
  right: -14px;
  left: auto;
}
.historyWrapper .hItem:nth-child(even) .img {
  order: 2;
  padding-left: 70px;
  padding-right: 0px;
}
.historyWrapper .hItem:nth-child(even) .typho {
  right: auto;
  left: -10px;
  text-align: left;
}
.historyWrapper .hItem.active .title:before {
  background: #FF671F;
}
.historyWrapper .hItem.last-child {
  height: 720px;
}

.productAndServices {
  width: 100%;
  margin: 100px 0;
  padding-bottom: 45%;
  position: relative;
}
.productAndServices .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.productAndServices .bg .bgItem {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.productAndServices .bg .bgItem i {
  display: block;
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.productAndServices .bg .bgItem i:nth-child(2) {
  left: 25%;
  background-position: -24.7vw top;
}
.productAndServices .bg .bgItem i:nth-child(3) {
  left: 50%;
  background-position: -49.6vw top;
}
.productAndServices .bg .bgItem i:nth-child(4) {
  left: 75%;
  background-position: -74.4vw top;
}
.productAndServices .bg .bgItem.b1 i {
  background-image: url(../images/activities/altyapi.jpg);
}
.productAndServices .bg .bgItem.b2 i {
  background-image: url(../images/activities/endustri.jpg);
}
.productAndServices .bg .bgItem.b3 i {
  background-image: url(../images/activities/otomotiv.jpg);
}
.productAndServices .bg .bgItem.b4 i {
  background-image: url(../images/activities/enerji.jpg);
}
.productAndServices .bg .bgItem.selected {
  z-index: 2;
}
.productAndServices .bg .bgItem:first-child i {
  width: 25%;
}
.productAndServices .categories {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
}
.productAndServices .categories .col {
  width: 25%;
  height: 100%;
  border-right: 1px solid #fff;
  position: relative;
  overflow: hidden;
}
.productAndServices .categories .col .links {
  position: absolute;
  top: 75%;
  height: 60%;
  left: 0;
  width: 100%;
  padding: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.productAndServices .categories .col .links strong {
  display: block;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}
.productAndServices .categories .col .links ul {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  padding-top: 30px;
}
.productAndServices .categories .col .links ul li a {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  display: block;
  width: 100%;
  padding: 5px 0;
}
.productAndServices .categories .col .links ul li a:hover {
  color: #FF671F;
  text-decoration: underline;
}
.productAndServices .categories .col:hover .links {
  background: rgba(217, 217, 217, 0.01);
  backdrop-filter: blur(22.6px);
  border-radius: 30px 30px 0px 0px;
  top: 40%;
}
.productAndServices .categories .col:hover .links ul {
  opacity: 1;
}

.awardSlider {
  width: 100%;
}
.awardSlider .awardYears {
  width: 100%;
  border-bottom: 1px solid #7C7C7C;
}
.awardSlider #awardYearSlider {
  max-width: 900px;
  margin: auto;
}
.awardSlider #awardYearSlider .item {
  color: #CECECE;
  font-size: 56px;
  font-weight: 500;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 160px;
  padding-top: 50px;
}
.awardSlider #awardYearSlider .item:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 20px;
  background: #7C7C7C;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
}
.awardSlider #awardYearSlider .center .item {
  font-size: 110px;
  color: #FF671F;
  padding-top: 0;
}
.awardSlider #awardYearSlider .center .item:after {
  height: 40px;
}
.awardSlider #awardContentSlider {
  max-width: 900px;
  margin: auto;
}
.awardSlider #awardContentSlider .awards {
  width: 100%;
  padding: 30px 0;
}
.awardSlider #awardContentSlider .awards p {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
  border-bottom: 1px solid #ccc;
  padding: 30px 0 30px 15px;
}
.awardSlider #awardContentSlider .awards p:before {
  width: 8px;
  height: 8px;
  content: "";
  background: #FF671F;
  display: block;
  position: absolute;
  left: 0;
  top: 40px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.awardSlider #awardContentSlider .awards p small {
  display: block;
  font-size: 15px;
  font-weight: normal;
}
.awardSlider #awardContentSlider .owl-nav {
  position: absolute;
  margin: auto;
  width: 100%;
  top: -100px;
}
.awardSlider #awardContentSlider .owl-nav button {
  border: 1px solid #7C7C7C !important;
}
.awardSlider #awardContentSlider .owl-nav button.owl-next {
  right: -100px;
}
.awardSlider #awardContentSlider .owl-nav button.owl-next span {
  background: url(../images/icons/arrow-r-b.svg) no-repeat center;
}
.awardSlider #awardContentSlider .owl-nav button.owl-next:hover span {
  background: url(../images/icons/arrow-r-w.svg) no-repeat center;
}
.awardSlider #awardContentSlider .owl-nav button.owl-prev {
  left: -100px;
}
.awardSlider #awardContentSlider .owl-nav button.owl-prev span {
  background: url(../images/icons/arrow-l-b.svg) no-repeat center;
}
.awardSlider #awardContentSlider .owl-nav button.owl-prev:hover span {
  background: url(../images/icons/arrow-l-w.svg) no-repeat center;
}
.awardSlider #awardContentSlider .owl-nav button:hover {
  border: 1px solid #FF671F !important;
}
.awardSlider #awardContentSlider .owl-nav button:hover:before {
  width: 100%;
  height: 100%;
}

.ourValuesArea {
  padding-bottom: 60px;
}
.ourValuesArea .ourValues {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ourValuesArea .ourValues .text {
  width: 27.5%;
}
.ourValuesArea .ourValues .text.left {
  padding-right: 100px;
}
.ourValuesArea .ourValues .text.right {
  padding-left: 100px;
}
.ourValuesArea .ourValues .text .inner.mt50 {
  margin-top: 50px;
}
.ourValuesArea .ourValues .text .inner .title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}
.ourValuesArea .ourValues .text .inner .title.purple {
  color: #9747FF;
}
.ourValuesArea .ourValues .text .inner .title.purple:after {
  content: "";
  width: 310px;
  height: 110px;
  background: url(../images/img/ourValues/purpleLine.svg) no-repeat;
  position: absolute;
  top: 40px;
  margin-left: 45px;
  background-size: 100% auto;
}
.ourValuesArea .ourValues .text .inner .title.orange {
  color: #F26626;
}
.ourValuesArea .ourValues .text .inner .title.orange:after {
  content: "";
  width: 400px;
  height: 115px;
  background: url(../images/img/ourValues/orangeLine.svg) no-repeat;
  position: absolute;
  top: 20px;
  margin-left: 127px;
  background-size: 100% auto;
}
.ourValuesArea .ourValues .text .inner .title.grey {
  color: #6F838F;
}
.ourValuesArea .ourValues .text .inner .title.grey:after {
  content: "";
  width: 251px;
  height: 1px;
  background: url(../images/img/ourValues/greyLine.svg) no-repeat;
  position: absolute;
  top: 20px;
  left: -280px;
  background-size: 100% auto;
}
.ourValuesArea .ourValues .text .inner .links a {
  display: block;
  font-size: 16px;
  color: #fff !important;
  margin-bottom: 15px;
  position: relative;
  padding-left: 10px;
  line-height: 25px;
}
.ourValuesArea .ourValues .text .inner .links a:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #D9D9D9;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  left: 0;
  top: 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ourValuesArea .ourValues .text .inner .links a:hover {
  padding-left: 20px;
}
.ourValuesArea .ourValues .text .inner .links a:hover:before {
  width: 15px;
}
.ourValuesArea .ourValues .text .inner .links a:hover.purple {
  color: #9747FF !important;
}
.ourValuesArea .ourValues .text .inner .links a:hover.purple:before {
  background-color: #9747FF;
}
.ourValuesArea .ourValues .text .inner .links a:hover.orange {
  color: #F26626 !important;
}
.ourValuesArea .ourValues .text .inner .links a:hover.orange:before {
  background-color: #F26626;
}
.ourValuesArea .ourValues .text .inner .links a:hover.grey {
  color: #6F838F !important;
}
.ourValuesArea .ourValues .text .inner .links a:hover.grey:before {
  background-color: #6F838F;
}
.ourValuesArea .ourValues .img {
  width: 45%;
  position: relative;
}
.ourValuesArea .ourValues .img a.closeValue {
  display: none;
}
.ourValuesArea .ourValues .img img {
  display: block;
  width: 100%;
}
.ourValuesArea .ourValues .img .hidden {
  opacity: 0;
  transform: scale(0.5);
}
.ourValuesArea .ourValues .img div {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  transform: scale(1);
  padding: 130px 80px;
  text-align: center;
  color: #fff;
  z-index: 5;
}
.ourValuesArea .ourValues .img div span {
  font-size: 20px;
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}
.ourValuesArea .ourValues .img div p {
  color: #fff;
  font-size: 15px;
}
.ourValuesArea .ourValues .img div.purple {
  background-color: #9747FF;
}
.ourValuesArea .ourValues .img div.orange {
  background-color: #F26626;
}
.ourValuesArea .ourValues .img div.grey {
  background-color: #6F838F;
}

.goals {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: auto;
  align-items: start;
}
.goals .gCol {
  width: 33.3333%;
  background: rgba(147, 147, 147, 0.13);
}
.goals .gCol:nth-child(2) {
  background: rgba(61, 61, 61, 0.04);
}
.goals .gCol a {
  display: block;
  padding: 60px 40px 140px;
  position: relative;
}
.goals .gCol a img {
  display: block;
  height: 80px;
}
.goals .gCol a:before {
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  margin-bottom: 60px;
}
.goals .gCol a:after {
  display: block;
  width: 13px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  transform-origin: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.goals .gCol a.selected:after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}
.goals .gCol a:hover:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
}
.goals .gCol.climate a:before {
  background-image: url(../images/icons/iklim.svg);
}
.goals .gCol.climate a:after {
  background-image: url(../images/icons/rightArrowGreen.svg);
}
.goals .gCol.human a:before {
  background-image: url(../images/icons/insan.svg);
}
.goals .gCol.human a:after {
  background-image: url(../images/icons/rightArrowOrange.svg);
}
.goals .gCol.inovation a:before {
  background-image: url(../images/icons/inovasyon.svg);
}
.goals .gCol.inovation a:after {
  background-image: url(../images/icons/rightArrowBlue.svg);
}
.goals .gContent {
  padding: 0 40px 40px 40px;
  display: none;
}
.goals .sustainabilityTitle {
  margin: 40px 0 25px;
  font-size: 30px;
  font-weight: 600;
}
.goals ul li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 16px 0;
}
.goals ul li img {
  width: 32px;
}
.goals ul li p {
  width: calc(100% - 32px);
  padding-left: 25px;
}

section.page404 {
  width: 100%;
  height: 100%;
  height: 100vh;
  background: url(../images/img/404.jpg) no-repeat center;
  background-size: covers;
}
section.page404 .page404Container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
section.page404 .text404 {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
}
section.page404 .text404 svg {
  display: block;
  width: 100%;
  margin-bottom: -10%;
}
section.page404 .text404 p {
  color: #fff;
}
section.page404 .text404 h2 {
  display: block;
  font-size: 50px;
  color: #fff;
  font-weight: 300;
  padding: 20px 0;
}

.searchList {
  width: 100%;
  padding-top: 60px;
}
.searchList .item {
  margin-bottom: 50px;
}
.searchList .item a {
  display: block;
  padding: 25px 25px 25px 85px;
  background: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0px 4px 61px rgba(0, 0, 0, 0.1);
  border-radius: 17px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  color: #000;
  position: relative;
}
.searchList .item a:before {
  content: "";
  position: absolute;
  width: 39px;
  height: 39px;
  background: url(../images/icons/searchBtnGrey.svg) no-repeat right center;
  background-size: 23px auto;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.searchList .item a span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.searchList .item a small {
  display: block;
  font-size: 18px;
  font-weight: 300;
}
.searchList .item a i {
  position: absolute;
  width: 23px;
  height: 23px;
  background: url(../images/icons/download.svg) no-repeat right center;
  right: 25px;
  top: 25px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.searchList .item:hover a {
  background: #FF671F;
  color: #fff;
}
.searchList .item:hover a:before {
  filter: brightness(0) invert(1);
}
.searchList .item:hover a i {
  filter: brightness(0) invert(1);
  transform: rotate(45deg);
}

.commiteeBox {
  width: 100%;
  box-shadow: 0px 4px 57.3px rgba(0, 0, 0, 0.13);
  border-radius: 17px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  background: #fff;
  margin-bottom: 30px;
  overflow: hidden;
}
.commiteeBox h3 {
  width: 100%;
  background: #FF671F;
  color: #fff;
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 20px;
  padding: 15px 40px;
}
.commiteeBox .commiteeItem {
  padding: 20px 40px;
  color: #858585;
  font-size: 20px;
}
.commiteeBox .commiteeItem strong {
  display: block;
  font-size: 20px;
  color: #000;
}
.commiteeBox .commiteeItem small {
  display: block;
}
.commiteeBox hr {
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 1540px) {
  .btn {
    font-size: 15px;
  }

  h2 {
    font-size: 35px;
  }
  h2.big {
    font-size: 43px;
  }

  .txt p {
    font-size: 16px;
  }
  .txt h2 {
    font-size: 35px;
    margin-top: 30px !important;
  }

  .list li {
    font-size: 16px;
  }

  .pageHeader h1 {
    font-size: 55px;
    padding-left: 75px;
  }
  .pageHeader.txtHeader {
    padding-left: 75px;
  }

  header {
    padding: 20px 70px;
  }
  header.homePage {
    padding: 50px 70px;
  }
  header .mainNav li {
    padding: 0 7px;
  }
  header .tools a.lang svg {
    margin: 0 15px;
  }
  header .tools a {
    margin-left: 15px;
  }
  header .nav {
    height: 95vh;
    padding: 80px 100px 0 45px;
  }

  footer {
    padding: 20px 70px;
  }
  footer .footerTop .left {
    width: 20%;
  }
  footer .footerTop .left a img {
    width: 170px;
  }
  footer .footerTop .right {
    width: 80%;
  }
  footer .footerTop .right ul li a {
    font-size: 12px;
  }
  footer .footerTop .right ul li a.caption {
    font-size: 18px;
  }

  section.mainSlider .item .caption {
    left: 35px;
  }
  section.mainSlider .item .caption svg {
    width: 400px;
    height: auto;
  }
  section.mainSlider .item .caption div {
    bottom: 195px;
  }
  section.mainSlider .item .caption div p {
    font-size: 54px;
    line-height: 78px;
  }
  section.mainSlider .btn {
    padding-left: 45px;
    padding-right: 45px;
  }

  html[lang=en] section.mainSlider .item .caption div p {
    font-size: 44px;
  }

  .container.sm {
    padding-left: 220px;
    padding-right: 220px;
  }
  .container.md {
    padding-left: 70px;
    padding-right: 70px;
  }

  section.mainMileStones .firstDate {
    font-size: 32px;
    left: -180px;
  }
  section.mainMileStones .lastDate {
    font-size: 32px;
    right: -180px;
  }
  section.mainMileStones ul li span {
    font-size: 22px;
  }

  section.mainActivities {
    padding: 100px 0;
  }

  section.mainCareer {
    padding: 100px 0;
  }

  p {
    font-size: 16px;
  }

  .tabWrapper .tabHead a {
    font-size: 16px;
    padding: 15px 20px;
  }
  .tabWrapper .tabContent .tabItem p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .career-item .text {
    font-size: 18px;
  }
  .career-item .text strong {
    font-size: 30px;
    line-height: 33px;
  }

  .infoBox {
    padding: 40px 80px;
  }
  .infoBox ul li strong {
    font-size: 22px;
  }

  .videoBgSlider #infoSlider .active .caption {
    margin-left: 200px;
  }

  #infoSlider .owl-nav {
    left: 200px;
  }

  .teaserItem .title {
    font-size: 60px;
  }

  .historyWrapper .hItem:nth-child(even) .title {
    width: 20%;
  }
  .historyWrapper .hItem .img img {
    height: 250px;
  }
  .historyWrapper .hItem .img span {
    font-size: 16px;
  }
  .historyWrapper .hItem .title strong {
    font-size: 40px;
  }
  .historyWrapper .hItem .typho {
    font-size: 25px;
    bottom: -60px;
  }
  .historyWrapper .hItem .typho.sm {
    font-size: 25px;
  }

  .imgList .imgItem a {
    min-height: 400px;
  }
  .imgList .imgItem a span {
    font-size: 16px;
  }
  .blogItem .text {
    padding: 30px 0px;
  }
  .blogItem .text strong {
    font-size: 16px;
  }
  .blogItem .text.sm {
    height: auto;
  }

  .productsContent .right h1 {
    padding-left: 80px;
  }
  .productsContent .right h1 span {
    font-size: 40px;
  }
  .productsContent .right .tabsBtn {
    padding-left: 55px;
  }
  .productsContent .right .tabs-content {
    padding-left: 90px;
  }
  .productsContent .right .tabs-content:after {
    width: 74px;
  }

  .txtImgContainer .txtImgItem {
    margin-top: 100px;
  }
  .txtImgContainer .txtImgItem .txtContent {
    padding: 50px;
    margin-top: 120px;
  }
  .txtImgContainer .txtImgItem .txtContent h3 {
    font-size: 28px;
    padding: 10px 0 40px;
  }
  .txtImgContainer .txtImgItem.left .txtContent {
    padding-left: 100px;
  }

  #productSliderThumbs {
    padding: 0 90px;
  }

  .accordionContent .item .title {
    font-size: 22px;
  }
  .accordionContent .item .title:before {
    width: 22px;
    top: 43px;
  }
  .accordionContent .item .title:after {
    height: 22px;
    right: 12px;
  }

  .iklim-insan-inovasyon-table tr td ul li {
    font-size: 13px;
    line-height: 18px;
  }

  .videoHolder .title p {
    font-size: 40px;
  }

  .borusanBoruKariyer .borusanBoruKariyerMenu {
    padding: 80px;
  }
  .borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem h2 {
    padding-top: 90px;
    font-size: 35px;
    line-height: 90px;
    padding-bottom: 70px;
  }
  .borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem p {
    font-size: 16px;
  }

  .recruitmentProcessSlider {
    margin-left: 70px;
  }
  .recruitmentProcessSlider .item {
    width: 300px;
  }
  .recruitmentProcessSlider .item span {
    font-size: 35px;
  }

  .career-items-wrapper .career-item .career-item-img {
    width: 50%;
  }
  .career-items-wrapper .career-item .career-item-img img {
    width: 100%;
  }
  .career-items-wrapper .career-item .career-item-text {
    width: 50%;
  }
  .career-items-wrapper .career-item .career-item-text .career-item-text-title {
    font-size: 30px;
    line-height: 35px;
  }
  .career-items-wrapper .career-item .career-item-text .career-item-text-content {
    font-size: 16px;
  }

  .contactPage .animateMe {
    width: 1540px;
  }
  .contactPage .tabsBtn a {
    font-size: 15px;
    margin-left: 25px;
  }
  .contactPage .adressArea p {
    font-size: 18px;
  }
  .contactPage .dealerArea {
    padding: 0 50px;
  }

  .tabsBtn a {
    font-size: 16px;
    margin-left: 25px;
  }

  .pageContent .pageContentInner {
    width: 75%;
  }

  .sidebar {
    width: 20%;
  }

  .iklim-insan-inovasyon-table tr td {
    display: block;
    width: 100%;
  }

  .cookie ul li, .cookie p {
    font-size: 12px;
  }

  .investorDashboard .idBox .slogan span {
    font-size: 19px;
  }
  .investorDashboard .idBox .slogan span small {
    font-size: 18px;
  }

  .partnerShip .partnerShipGraph .partnerShipInfo.grey {
    right: 73%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.orange {
    right: 74%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.blue {
    left: 68%;
  }
}
@media screen and (max-width: 1420px) {
  .partnerShip .partnerShipGraph svg {
    width: 60%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.grey {
    right: 76%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.orange {
    right: 79%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.blue {
    left: 74%;
  }
}
@media screen and (max-width: 1200px) {
  .partnerShip .partnerShipGraph svg {
    width: 45%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo {
    font-size: 17px;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo br {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .guadinceTable {
    font-size: 10px;
  }

  .facilityItem {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 4px 61px 0px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    margin-bottom: 60px;
  }
  .facilityItem .img {
    width: 100%;
    border-radius: 0 0 30px 30px;
    -webkit-border-radius: 0 0 30px 30px;
    -moz-border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
  }
  .facilityItem .img img {
    display: block;
    width: 100%;
  }
  .facilityItem .text {
    width: 100%;
    padding: 25px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    position: relative;
  }
  .facilityItem .text .facilityRow {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .facilityItem .text .facilityRow .col {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin-right: 30px;
  }
  .facilityItem .text .facilityRow strong {
    display: block;
    color: #FF671F;
  }
  .facilityItem .text hr {
    margin-bottom: 30px;
  }

  .showOnMobile {
    display: block !important;
  }

  p.svgBottom {
    position: absolute !important;
    top: 170px;
    width: 70% !important;
  }

  header {
    padding: 20px 30px;
  }
  header.homePage {
    padding: 50px 30px;
  }
  header a.logo {
    width: 140px;
  }
  header .tools a {
    margin-left: 5px;
  }
  header .tools a:nth-child(2) {
    margin-right: 0;
  }
  header .tools a.lang span {
    display: none;
  }
  header .nav {
    padding: 100px 30px 30px;
    top: -200vh;
    height: 100vh;
    width: 100%;
    left: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
  }
  header .nav nav {
    overflow-y: scroll;
  }
  header .nav nav ul li {
    width: 100%;
    margin-bottom: 15px;
  }
  header .nav nav ul li a.caption {
    font-size: 22px;
  }
  header .nav nav ul li ul {
    display: none;
  }
  header .nav .shortcuts {
    position: relative;
    bottom: 0;
    margin-top: 60px;
  }
  header .nav .shortcuts .top {
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  header .nav .shortcuts .top div {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  header .nav .shortcuts .top div a {
    width: 50%;
  }
  header .nav .shortcuts .top div:first-child {
    display: none;
  }
  header .nav .shortcuts .top div:first-child a {
    width: 100%;
  }
  header .nav .shortcuts .top a {
    background-position: left center;
    padding-right: 0;
    padding-left: 30px;
    margin-bottom: 0;
    text-align: left;
  }
  header .nav .shortcuts .bottom .links {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  header .nav .shortcuts .bottom .links a {
    width: 50%;
    margin-right: 0;
    font-size: 13px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  header .nav .shortcuts .bottom .social {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
  }
  header .nav .shortcuts .bottom .social a {
    margin-left: 0;
    margin-right: 15px;
  }
  header .mainNav {
    display: none;
  }

  section.mainSlider .item .caption {
    left: 10px;
  }
  section.mainSlider .item .caption div {
    padding-left: 20px;
    bottom: 145px;
  }
  section.mainSlider .item .caption div p {
    font-size: 42px !important;
    line-height: 65px;
  }
  section.mainSlider .item .caption div small {
    font-size: 16px;
  }
  section.mainSlider .item .caption svg {
    width: 310px;
  }
  section.mainSlider .owl-nav {
    right: auto;
    left: 30px;
    bottom: 30px;
    height: 40px;
  }

  html[lang=en] section.mainSlider .item .caption div p {
    font-size: 32px;
  }

  section.mainMileStones p {
    padding-top: 30px;
    font-size: 28px;
  }
  section.mainMileStones .msSlider {
    height: 150px;
  }
  section.mainMileStones .firstDate {
    font-size: 26px;
    left: 30px;
    top: 10%;
  }
  section.mainMileStones .lastDate {
    font-size: 26px;
    right: 0;
    left: auto;
    bottom: -130px;
  }
  section.mainMileStones ul li span {
    font-size: 16px;
  }
  section.mainMileStones .btn {
    left: 0;
  }

  section.mainActivities {
    padding: 50px 0 100px;
  }
  section.mainActivities h2 {
    font-size: 30px;
    margin-bottom: 20px;
    padding-left: 30px;
  }
  section.mainActivities h2 strong {
    font-size: 52px;
  }
  section.mainActivities h2 span {
    font-size: 26px;
  }
  section.mainActivities .container {
    padding-left: 0;
    padding-right: 0;
  }
  section.mainActivities .tabWrapper .tabHead {
    padding-left: 30px;
  }
  section.mainActivities .tabWrapper .tabHead a {
    padding: 15px 0;
    width: 100%;
  }
  section.mainActivities .tabWrapper .tabContent .tabItem {
    padding: 30px;
  }

  section.mainCareer {
    padding: 50px 0;
  }

  section.mainSustabinability {
    overflow: hidden;
  }
  section.mainSustabinability svg {
    display: block;
    width: 100%;
  }
  section.mainSustabinability .item .caption {
    padding: 50px 30px;
  }
  section.mainSustabinability .item .caption img {
    display: block;
    width: 50px;
  }
  section.mainSustabinability .item .caption h2 {
    font-size: 30px;
  }
  section.mainSustabinability .item .caption h2 span {
    font-size: 25px;
  }
  section.mainSustabinability .item .caption svg {
    display: block;
    width: 750px;
    height: auto;
    top: 30px;
    left: -53px;
  }
  section.mainSustabinability .item .caption p {
    padding: 30px 0;
  }
  section.mainSustabinability .leafs {
    display: none;
    width: 100%;
  }

  section.mainCatalogues {
    padding: 50px 0 0;
  }

  section.mainBlog {
    padding: 50px 30px;
  }
  section.mainBlog svg {
    display: none;
  }
  section.mainBlog .left {
    width: 100%;
    padding: 0 0 30px;
  }
  section.mainBlog .left p {
    padding-bottom: 20px;
  }
  section.mainBlog .right {
    width: 100%;
    padding: 0;
  }
  section.mainBlog #mainBlogSlider .item a span.text {
    padding: 30px;
    font-size: 18px;
  }
  section.mainBlog #mainBlogSlider .owl-nav {
    position: relative;
    margin: 20px auto 0;
  }

  section.mainContactForm {
    padding: 50px 0;
  }
  section.mainContactForm .content {
    padding: 30px;
  }
  section.mainContactForm .left {
    width: 100%;
    padding: 0;
  }
  section.mainContactForm .formHolder .row {
    margin-bottom: 0;
  }
  section.mainContactForm .formHolder .row .col {
    margin-bottom: 15px;
  }
  section.mainContactForm .right {
    display: none;
  }

  section.mainSocial {
    padding: 30px 0;
  }
  section.mainSocial h2 {
    padding-left: 30px;
    font-size: 25px !important;
  }
  section.mainSocial p {
    padding: 30px;
    width: 100%;
  }
  section.mainSocial .social {
    width: 100%;
    padding: 30px;
    margin: 0;
    justify-content: start;
  }
  section.mainSocial .social div {
    width: 100%;
  }

  footer {
    padding: 30px;
  }
  footer .footerTop {
    padding: 30px 0;
  }
  footer .footerTop .left {
    width: 100%;
    margin-bottom: 30px;
  }
  footer .footerTop .right {
    width: 100%;
  }
  footer .footerTop .right ul {
    width: 100%;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 25px;
  }

  .owl-nav {
    width: 90px;
  }
  .owl-nav button {
    width: 40px;
    height: 40px;
  }
  .owl-nav button.owl-prev span {
    background-size: 8px auto;
  }
  .owl-nav button.owl-next span {
    background-size: 8px auto;
  }

  .btn {
    line-height: 40px;
    padding: 0 30px;
  }

  .container.sm {
    padding-left: 30px;
    padding-right: 30px;
  }
  .container.md {
    padding-left: 30px;
    padding-right: 30px;
  }
  .container.md .container.md {
    padding-left: 0;
    padding-right: 0;
  }

  .row .col {
    width: 100% !important;
  }
  .row .col-2 {
    width: 100%;
  }

  .career-item .img {
    width: 100%;
    padding-bottom: 0;
  }
  .career-item .img img {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    max-height: 200px;
    object-fit: cover;
    display: block;
  }
  .career-item .text {
    padding: 30px 0 0;
    width: 100%;
    font-size: 16px;
  }
  .career-item .text strong {
    font-size: 24px;
    line-height: normal;
    padding-bottom: 15px;
  }
  .career-item.fullWidth .img {
    padding-bottom: 0;
  }
  .career-item.fullWidth .img img {
    height: 200px;
  }
  .career-item.fullWidth .text {
    bottom: 30px;
    left: 30px;
  }

  .pageHeader img {
    height: 300px;
    object-fit: cover;
  }
  .pageHeader h1 {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 36px;
  }
  .pageHeader h1 small {
    font-size: 15px;
  }
  .pageHeader.txtHeader {
    padding: 30px;
  }
  .pageHeader.txtHeader svg.sDecor {
    position: relative;
    width: 100% !important;
    top: 0;
    left: 0;
    height: auto;
  }
  .pageHeader.txtHeader svg {
    position: relative;
    right: 330px;
    left: auto;
    width: 1540px;
  }
  .pageHeader.imgHeader:after {
    width: 100%;
    left: auto;
    right: 30px;
  }
  .pageHeader.imgHeader p {
    position: absolute;
    width: 100%;
    padding: 0 30px 30px;
    margin: 0;
    bottom: 0;
    font-size: 14px;
  }

  .txt {
    padding: 45px 0;
  }
  .txt h2 {
    font-size: 30px;
  }

  .infoBox {
    padding: 0 30px 30px !important;
  }
  .infoBox ul li {
    font-size: 14px;
    padding: 20px 0;
    width: 48% !important;
  }
  .infoBox ul li strong {
    font-size: 16px;
  }
  .infoBox.quaternary {
    margin: 30px 0;
  }

  .videoBgSlider #infoSlider .item {
    padding: 100px 0;
  }
  .videoBgSlider #infoSlider .active .caption {
    margin-left: 30px;
  }
  .videoBgSlider #infoSlider .caption strong {
    font-size: 40px;
  }
  .videoBgSlider #infoSlider .owl-nav {
    left: 30px;
  }

  .historyWrapper {
    padding-top: 40px;
  }
  .historyWrapper .historyHeader {
    padding-left: 30px;
  }
  .historyWrapper .historyHeader:after {
    width: 100%;
    border-right: none;
    border-left: 4px solid #FF671F;
    border-radius: 60px 0 0 0;
    -webkit-border-radius: 60px 0 0 0;
    -moz-border-radius: 60px 0 0 0;
  }
  .historyWrapper .historyContent {
    padding: 0 30px;
  }
  .historyWrapper .historyList {
    background: none;
  }
  .historyWrapper .historyList:before {
    display: block;
    content: "";
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 4px;
    background: #E4E4E4;
  }
  .historyWrapper .historyList .line {
    background: #FF671F;
    width: 4px;
    left: 0px;
  }
  .historyWrapper .hItem {
    height: auto;
    padding-left: 30px;
    margin-bottom: 40px;
  }
  .historyWrapper .hItem .img {
    padding-right: 0px;
    width: 100%;
    padding-left: 0 !important;
    order: 2 !important;
  }
  .historyWrapper .hItem .img img {
    height: auto;
  }
  .historyWrapper .hItem .title {
    width: 100% !important;
    padding: 30px 0 0 0 !important;
    text-align: left !important;
    order: 1 !important;
  }
  .historyWrapper .hItem .title:before {
    left: -44px !important;
    right: auto !important;
    top: 40px;
  }
  .historyWrapper .hItem .typho {
    position: relative;
    width: 100%;
    padding: 60px 0;
  }

  .founder .left {
    width: 100%;
  }
  .founder .right {
    width: 100%;
    padding: 30px 0 0 0;
  }

  .imgList {
    margin: 0;
  }
  .imgList .imgItem {
    width: 100%;
    margin-left: 0;
  }
  .imgList .imgItem a {
    min-height: auto;
  }

  .cvPopup {
    width: 95%;
    padding: 30px !important;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  .cvPopup .imgItem {
    width: 100%;
    margin: 0;
  }
  .cvPopup .imgItem div {
    padding: 15px;
  }
  .cvPopup .imgItem img {
    display: block;
    width: 100%;
  }
  .cvPopup p {
    padding: 30px 0 0;
    font-size: 16px;
  }

  .ourValuesArea {
    margin-top: 50px;
  }
  .ourValuesArea .ourValues .img {
    position: fixed;
    width: 100%;
    height: calc(100% - 90px);
    top: 90px;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 99;
  }
  .ourValuesArea .ourValues .img img {
    display: none;
  }
  .ourValuesArea .ourValues .img div {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    padding: 30px;
    overflow-x: scroll;
  }
  .ourValuesArea .ourValues .img a.closeValue {
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
    background: url(../images/icons/close.svg);
    background-size: 100% auto;
    width: 20px;
    height: 20px;
  }
  .ourValuesArea .ourValues .text.left {
    width: 100%;
    padding-right: 0;
  }
  .ourValuesArea .ourValues .text.right {
    width: 100%;
    padding-left: 0;
  }
  .ourValuesArea .ourValues .text .title:after {
    display: none !important;
  }

  .contactPage .tabsBtn {
    justify-content: flex-start;
    margin-top: 0 !important;
    padding: 0 !important;
  }
  .tabsBtn {
    margin: 30px 0 30px 0 !important;
    /*justify-content: space-between!important;*/
  }
  .tabsBtn a {
    display: block;
    /*width: 100%; padding: 15px 0!important;*/
    margin: 0 10px 0px 0px !important;
    font-size: 15px;
    padding: 0 15px;
  }

  .teaserItem .title {
    font-size: 50px;
  }

  .pageHeader.txtHeader + .container > .tabsArea {
    margin-top: -90px;
  }
  .pageHeader.txtHeader + .container > .tabsArea .tabsBtn {
    padding: 0 25px;
  }
  .pageHeader.txtHeader + .container > .tabsArea .tabsBtn a {
    display: block;
    /*width: 100%;*/
    padding: 7px 0 !important;
  }

  .mt-100 {
    margin-top: 30px !important;
  }

  p.big {
    font-size: 24px !important;
  }

  table.contactInfo td {
    font-size: 16px;
  }

  .productAndServices {
    margin: 30px 0;
    padding-bottom: 0;
  }
  .productAndServices .bg {
    display: none;
  }
  .productAndServices .categories {
    position: relative;
  }
  .productAndServices .categories .col {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .productAndServices .categories .col .links {
    position: relative;
  }
  .productAndServices .categories .col .links ul {
    opacity: 1;
  }
  .productAndServices .categories .col .links ul li a {
    font-size: 16px;
  }
  .productAndServices .categories .col .links strong {
    font-size: 20px;
  }
  .productAndServices .categories .col:nth-child(1) {
    background-image: url(../images/activities/altyapi.jpg);
  }
  .productAndServices .categories .col:nth-child(2) {
    background-image: url(../images/activities/endustri.jpg);
  }
  .productAndServices .categories .col:nth-child(3) {
    background-image: url(../images/activities/otomotiv.jpg);
  }
  .productAndServices .categories .col:nth-child(4) {
    background-image: url(../images/activities/enerji.jpg);
  }

  .productsContent {
    padding-bottom: 0;
  }
  .productsContent .left {
    width: 100%;
  }
  .productsContent .right {
    width: 100%;
  }
  .productsContent .right h1 {
    padding-left: 0;
    font-size: 30px;
    padding: 30px 0 0;
  }
  .productsContent .right .tabsBtn {
    padding-left: 0;
    margin-bottom: 0 !important;
  }
  .productsContent .right .tabsBtn a {
    padding: 20px 0;
    font-size: 14px;
  }
  .productsContent .right .tabs-content {
    padding: 30px 0 100px 0;
  }
  .productsContent .right .tabs-content:after {
    display: none;
  }
  .productsContent .right .tabs-content p {
    padding-right: 30px;
  }

  #productSlider {
    margin-bottom: 0;
  }
  #productSlider .owl-nav .owl-prev, #productSlider .owl-nav .owl-next {
    bottom: -62px;
  }

  #productSliderThumbs {
    padding: 0 40px;
    margin-top: 20px;
  }

  .accordionContent .item .title {
    font-size: 20px;
  }

  .teaserItem {
    padding: 30px 0 100px;
  }
  .teaserItem .title {
    margin-top: 0;
    line-height: 50px;
  }
  .teaserItem .title.sm {
    font-size: 30px;
  }
  .teaserItem svg {
    right: 0;
    left: auto;
    bottom: 30px;
  }

  .tabWrapper.lined {
    padding-left: 15px;
  }
  .tabWrapper.lined .tabHead {
    padding-left: 0;
  }
  .tabWrapper.lined .tabHead a {
    padding: 15px 10px;
    font-size: 12px;
  }
  .tabWrapper.lined .tabContent {
    padding-left: 15px;
  }
  .tabWrapper.lined .tabContent .tabItem {
    padding: 30px 0 100px;
    width: 100%;
  }
  .tabWrapper h2.title {
    padding: 0 0 60px 15px;
  }

  .container.dark:has(.lined):before {
    left: 15px;
  }

  .txtImgContainer {
    padding: 0 30px;
  }
  .txtImgContainer .txtImgItem {
    margin-top: 30px;
  }
  .txtImgContainer .txtImgItem .imgContent {
    width: 100%;
    order: 1;
  }
  .txtImgContainer .txtImgItem .imgContent img {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
  }
  .txtImgContainer .txtImgItem .txtContent {
    width: 100%;
    margin: 0 !important;
    padding: 30px 0 !important;
    order: 2 !important;
  }
  .txtImgContainer .txtImgItem .txtContent .txtContentHeader img:first-child {
    display: block;
    max-width: 100%;
  }

  .blog-tab-menu {
    margin: 30px auto;
    width: 95%;
    padding: 0 30px;
    justify-content: space-between;
  }
  .blog-tab-menu a {
    padding: 0;
  }

  #blogSlider .caption {
    padding: 0 30px;
  }
  #blogSlider img {
    height: 300px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    display: block;
  }
  #blogSlider .owl-nav {
    right: 30px;
    bottom: 30px;
  }

  .blog-item {
    margin: 0;
    padding: 15px;
  }
  .blog-item .text-wrapper {
    padding: 30px 0 0;
  }
  .blog-item .text-wrapper .tags {
    font-size: 12px;
  }
  .blog-item .text-wrapper .content {
    font-size: 15px;
    line-height: normal;
    margin: 0;
  }
  .blog-item .text-wrapper .date {
    font-size: 12px;
  }
  .blog-item .arrow {
    right: 30px;
    bottom: 15px;
  }

  .recruitmentProcessSlider {
    margin: 0;
    padding: 0;
  }
  .recruitmentProcessSlider .owl-item {
    padding: 30px;
  }
  .recruitmentProcessSlider .item {
    width: 100%;
  }

  .career-items-wrapper .career-item {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  .career-items-wrapper .career-item .career-item-img {
    width: 30%;
  }
  .career-items-wrapper .career-item .career-item-text {
    width: 70%;
    padding: 0 0 0 15px;
  }
  .career-items-wrapper .career-item .career-item-text .career-item-text-title {
    font-size: 20px;
    line-height: normal;
  }
  .career-items-wrapper .career-item .career-item-text .career-item-text-content {
    padding-top: 5px;
    line-height: normal;
  }

  .careerPage .careerSliderWrapper .item .caption {
    padding-left: 30px;
  }
  .careerPage .careerSliderWrapper .item .caption svg {
    left: 150px;
  }
  .careerPage .careerSliderWrapper .item .caption h2 {
    font-size: 30px;
  }
  .careerPage .careerSliderWrapper .item .caption p {
    padding-right: 20%;
  }

  .borusanBoruKariyer .borusanBoruKariyerMenu {
    padding: 30px;
    display: block;
  }
  .borusanBoruKariyer .borusanBoruKariyerMenu a {
    margin-top: 15px;
    font-size: 13px;
    display: block;
  }
  .borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem h2 {
    padding: 30px;
    line-height: 1.5;
  }
  .borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem p {
    width: 100%;
    line-height: normal;
    padding: 30px;
    font-size: 14px;
  }
  .borusanBoruKariyer .borusanBoruKariyerContent .borusanBoruKariyerContentItem .img-wrapper {
    padding: 30px;
  }

  html[lang=en] .borusanBoruKariyer .borusanBoruKariyerMenu {
    width: 35%;
  }
  html[lang=en] .borusanBoruKariyer .borusanBoruKariyerMenu a {
    font-size: 12px;
  }
  html[lang=en] .borusanBoruKariyer .borusanBoruKariyerContent {
    width: 65%;
  }

  .filterArea {
    width: 100%;
  }

  .contactPage .left {
    min-height: 300px;
  }
  .contactPage .mapCanvas {
    height: 300px;
  }
  .contactPage .mapArea {
    padding-right: 0;
  }
  .contactPage .dealerArea {
    padding: 0;
  }
  .contactPage .dealerArea .dealerList {
    margin-left: 0;
  }

  .boxItem {
    width: 100%;
    margin-left: 0;
  }

  #investorSlider img {
    height: 300px;
    object-fit: cover;
  }
  #investorSlider span.title {
    left: 30px;
    bottom: 30px;
  }
  #investorSlider .owl-nav {
    right: 30px;
    top: 30px;
    bottom: auto;
  }

  .investorDashboard {
    padding-top: 30px;
  }
  .investorDashboard .row.gutter .col {
    margin-bottom: 20px !important;
  }
  .investorDashboard .idBox:has(f-ws) {
    padding-bottom: 160px !important;
    height: 600px;
    max-height: 600px !important;
  }

  .reportLink {
    min-height: 180px;
  }

  .pageContent .pageContentInner {
    width: 100%;
  }

  .sidebar {
    width: 100%;
    padding-top: 0;
  }
  .sidebar span.sideMenuDropDown {
    display: block;
    padding: 15px;
    background: #FF671F url(../images/icons/arrow-r-w.svg) no-repeat 95% center;
    color: #fff;
  }
  .sidebar div {
    display: none;
  }
  .sidebar ul {
    background: #efefef;
    padding: 15px 30px;
  }
  .sidebar ul li {
    margin-bottom: 10px;
  }
  .sidebar ul li a {
    font-size: 18px;
  }

  .content-header {
    margin-top: 15px;
  }

  .pdfList .item {
    margin-bottom: 15px;
  }
  .pdfList .item a {
    padding: 15px 15px 15px 60px;
  }
  .pdfList .item a:before {
    left: 15px;
  }
  .pdfList .item a span {
    font-size: 12px;
  }
  .pdfList .item a small {
    font-size: 14px;
  }
  .pdfList .item a i {
    width: 15px;
    height: 15px;
    background-size: 100% auto;
    right: 15px;
    top: 50%;
  }

  .partnerShip .dFlex {
    flex-wrap: wrap;
  }
  .partnerShip .dFlex svg {
    width: 47%;
    height: auto;
  }
  .partnerShip .dFlex .partnerShipInner {
    width: 100%;
    margin: 0;
    padding: 0 30px;
  }

  .partnerShip .partnerShipGraph .partnerShipInfo {
    font-size: 14px !important;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo::before {
    width: 10px;
    height: 10px;
    top: 8px;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo::after {
    width: 30px;
    right: -57px;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo strong {
    font-size: 12px;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.grey {
    right: 79%;
    top: 16%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.orange {
    right: 83%;
    top: 63%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.blue {
    left: 83%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.blue::after {
    left: -60px;
  }

  .videoHolder .title {
    align-items: start;
    padding: 30px 0 0 30px;
  }
  .videoHolder .title p {
    font-size: 30px;
  }
  .videoHolder .title p small {
    font-size: 30px;
  }
  .videoHolder .title a {
    width: 140px;
    height: 140px;
    line-height: 140px;
  }

  .cookie table td {
    word-break: break-all;
    padding: 3px;
  }
  .cookie table td p {
    font-size: 9px;
  }

  .investorTable.expectationTable tr.head {
    display: none;
  }
  .investorTable.expectationTable td {
    display: block;
    width: 100% !important;
    padding: 10px !important;
    border-bottom: 1px solid #f3f3f3;
    text-align: left !important;
  }
  .investorTable.expectationTable td:before {
    content: attr(data-caption) " :";
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
  }
  .investorTable.expectationTable td:first-child {
    background: #FF671F;
    color: #fff;
  }
  .investorTable.expectationTable td:first-child br {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .partnerShip .partnerShipGraph .partnerShipInfo {
    font-size: 12px !important;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo::before {
    width: 7px;
    height: 7px;
    top: 9px;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo::after {
    width: 20px;
    right: -50px;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo strong {
    font-size: 12px;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.grey {
    right: 79%;
    top: 16%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.orange {
    right: 83%;
    top: 63%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.blue {
    left: 83%;
  }
  .partnerShip .partnerShipGraph .partnerShipInfo.blue::after {
    left: -58px;
  }
}
.orientationWarning {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #24282F;
  z-index: 100000000000000020;
}
.orientationWarning p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  font-size: 15px;
  padding: 60px 30px 0;
  background: url(../images/icons/swicthOrientation.svg) no-repeat top center;
  background-size: auto 50px;
  color: #fff;
}

@media screen and (orientation: landscape) and (max-width: 768px) {
  .orientationWarning {
    display: block;
  }
}