@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
/* 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;
}

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: #1691CE;
  color: #fff;
}

::-moz-selection {
  background: #1691CE;
  color: #fff;
}

/*General Elements */
body, input, textarea, select, option {
  font-family: "Poppins", 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;
}

section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
section.h100 {
  height: 100%;
  height: 100vh;
}
section.pt {
  padding-top: 12.5%;
}

.content {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 86%;
  margin: auto;
  padding: 0;
}
.content:after {
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  content: "";
}
.content.padded {
  padding: 11% 7% 0 0;
}
.content.pt15 {
  padding-top: 15% !important;
}

.pb100 {
  padding-bottom: 100px;
}

.pb200 {
  padding-bottom: 200px;
}

.text-pink {
  color: #9E0C4F !important;
}

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

.arrowBtn {
  width: 50px;
  height: 6px;
  position: relative;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border: 1px solid #fff;
  display: block;
}
.arrowBtn:before {
  content: "";
  width: 40%;
  height: 100%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  background-color: #fff;
  right: 0;
  top: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn {
  position: relative;
  height: 60px;
  padding: 0 25px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  background-color: #363636;
  border: none;
  text-align: left;
  margin-top: 60px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  background-color: #9E0C4F;
}
.btn:hover:before {
  display: none;
}

.triangleBtn {
  background: #525252;
  display: inline-block;
  padding: 15px 90px 15px 25px;
  position: relative;
}
.triangleBtn span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}
.triangleBtn span.darkColor {
  color: #262626 !important;
}
.triangleBtn span.darkColor:hover {
  color: white !important;
}
.triangleBtn:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #ffffff;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  z-index: 2;
}
.triangleBtn:after {
  display: block;
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #9E0C4F;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  top: 0;
  z-index: 1;
}
.triangleBtn:hover:after {
  width: 100%;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.row .col {
  flex: 0 0 auto;
  width: 33.3333%;
}
.row .col.col-1 {
  width: 16.6666666667%;
}
.row .col.col-2 {
  width: 33.3%;
}
.row .col.col-3 {
  width: 50%;
}
.row .col.col-4 {
  width: 66.6666666667%;
}
.row .col.col-5 {
  width: 83.3%;
}
.row .col.col-6 {
  width: 100%;
}
.row.j-center {
  justify-content: center;
}
.row.center {
  align-items: center;
}

h1 {
  font-size: 60px;
  font-weight: normal;
  color: #9E0C4F;
  padding-bottom: 40px;
}

h2 {
  color: #9E0C4F;
  font-size: 60px;
  font-weight: normal;
  padding-bottom: 30px;
}
h2.small {
  font-size: 48px;
}

a.scroll {
  display: block;
  width: 20px;
  height: 30px;
  position: fixed;
  z-index: 5;
  right: 7%;
  top: 90vh;
}
a.scroll span {
  display: block;
  width: 20px;
  height: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border: 2px solid #9E0C4F;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
a.scroll span:after {
  width: 2px;
  height: 1px;
  background: #9E0C4F;
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  left: 45%;
  -webkit-animation: mainArrowAnim 1s infinite;
  /* Safari 4+ */
  -moz-animation: mainArrowAnim 1s infinite;
  /* Fx 5+ */
  -o-animation: mainArrowAnim 1s infinite;
  /* Opera 12+ */
  animation: mainArrowAnim 1s infinite;
}

@-webkit-keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
@-moz-keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
@-o-keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
@keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
.checkbox-box {
  display: block;
  color: #707070;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  padding-top: 10px;
}

.checkbox-box input {
  position: absolute;
  opacity: 0;
}

.checkbox-box label {
  margin-right: 0;
  position: relative;
  padding-left: 60px;
  min-width: auto;
  line-height: 1.5;
  display: block;
  padding-top: 5px;
  font-size: 10px;
}

.checkbox-box label:before {
  width: 30px;
  height: 30px;
  background-color: #D2D7D7;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
}

.checkbox-box input:checked + label:before {
  background-image: url(https://cdn.sinpas.com.tr/assets/images/icons/check.svg);
}

.line {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(112, 112, 122, 0.3);
  overflow: hidden;
  margin-bottom: 60px;
}

.lines {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}
.lines .vLine {
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  background: rgba(128, 128, 128, 0.2);
}
.lines.white div {
  background: #fff;
}
.lines.main {
  width: 100%;
}

.fluidBox {
  position: absolute;
}
.fluidBox .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.fluidBox .inner img {
  display: block;
  width: 100%;
}
.fluidBox .inner video {
  width: 100%;
}
.fluidBox.history {
  bottom: 0;
  left: 7%;
  width: 14%;
}
.fluidBox.history .angleBtn {
  width: 50%;
  top: -25%;
  position: absolute;
  height: 50%;
}
.fluidBox.sustainability {
  top: 0;
  left: 28%;
  width: 21%;
}
.fluidBox.sustainability .angleBtn {
  width: 66.6666%;
  top: 60%;
  position: absolute;
  right: 0;
}
.fluidBox.ocean {
  bottom: 0;
  left: 7%;
  width: 21%;
}
.fluidBox.ocean .angleBtn {
  width: 33.333%;
  left: 33.33%;
  top: 25%;
  position: absolute;
}
.fluidBox.ethic {
  top: 0;
  left: 35%;
  width: 14%;
}
.fluidBox.ethic .angleBtn {
  width: 50%;
  bottom: -25%;
  position: absolute;
  height: 50%;
  right: 0;
}
.fluidBox.itemLeft {
  bottom: 0;
  left: 7%;
  width: 21%;
}
.fluidBox.itemLeft .angleBtn {
  width: 50%;
  bottom: -25%;
  position: absolute;
  height: 50%;
  right: 0;
}
.fluidBox.itemRight {
  bottom: 0;
  right: 7%;
  width: 21%;
}
.fluidBox.itemRight .angleBtn {
  width: 50%;
  bottom: -25%;
  position: absolute;
  height: 50%;
  right: 0;
}
.fluidBox.workInBorusan {
  bottom: 0;
  left: 7%;
  width: 21%;
}
.fluidBox.workInBorusan .angleBtn {
  width: 66.666%;
  left: 33.33%;
  top: 30%;
  position: absolute;
}
.fluidBox.workModel {
  top: 0;
  left: 35%;
  width: 14%;
}
.fluidBox.workModel .angleBtn {
  width: 50%;
  top: 0%;
  position: absolute;
  height: 50%;
  right: 0;
}
.fluidBox.safety {
  bottom: 0;
  left: 7%;
  width: 14%;
  z-index: 2;
}
.fluidBox.safety .angleBtn {
  width: 50%;
  left: 0%;
  top: 0%;
  position: absolute;
}
.fluidBox.career {
  top: 0;
  left: 28%;
  width: 21%;
  z-index: 2;
}
.fluidBox.career .angleBtn {
  width: 66.666%;
  bottom: 0%;
  position: absolute;
  left: 0;
}

.bgBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.bgBox span {
  display: block;
  height: 0;
  width: 12.5%;
  position: absolute;
  bottom: 0;
  background: #333841;
}
.bgBox span:nth-child(2) {
  left: 12.5%;
}
.bgBox span:nth-child(3) {
  left: 25%;
}
.bgBox span:nth-child(4) {
  left: 37.5%;
}
.bgBox span:nth-child(5) {
  left: 50%;
}
.bgBox span:nth-child(6) {
  left: 62.5%;
}
.bgBox span:nth-child(7) {
  left: 75%;
}
.bgBox span:nth-child(8) {
  left: 87.5%;
}

p {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5;
  color: #363636;
}
p.arrow {
  position: relative;
}
p.arrow:before {
  display: block;
  width: 10px;
  height: 5px;
  position: absolute;
  content: "";
  top: 10px;
  left: -25px;
  border-top: 1px solid #9E0C4F;
  border-bottom: 1px solid #9E0C4F;
}

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

div.w100 {
  width: 100%;
}

a.back {
  color: #DDD2B1;
  font-size: 17px;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
  display: block;
  margin-bottom: 30px;
}
a.back:before {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 3px;
}
a.back:hover:before {
  left: -10px;
}

.subPage p {
  font-size: 18px;
}
.subPage p.s64 {
  font-weight: 400;
  color: #9E0C4F;
  font-size: 44px;
  padding: 100px 0px;
  line-height: 1.1;
}
.subPage p.w600 {
  max-width: 600px;
  width: 100%;
}

.dFlex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.dFlex p {
  max-width: 515px;
}
.dFlex p:first-child {
  margin-right: 175px;
}

.headFixed {
  display: block;
  min-height: 640px;
  background-attachment: fixed !important;
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
.headFixed.authorizedServicesHead {
  background-image: url(https://cdn.sinpas.com.tr/assets/images/img/authorizedServicesHead.jpg);
}
.headFixed.applicationFormHead {
  background-image: url(https://cdn.sinpas.com.tr/assets/images/img/applicationFormHead.jpg);
}
.headFixed .caption {
  left: 7%;
  top: 60%;
  position: absolute;
  color: white;
}
.headFixed .caption.t30 {
  top: 30%;
}
.headFixed .caption span {
  font-size: 48px;
  font-weight: 400;
  display: block;
  width: 60%;
}
.headFixed .caption h1 {
  font-size: 48px;
  font-weight: 400;
}
.headFixed.workModelHead {
  background-image: url(https://cdn.sinpas.com.tr/assets/images/hr/workModelHead.jpg);
}

.pageContent {
  width: 75%;
  margin: auto;
}
.pageContent.applicationFormArea {
  width: 50%;
  margin: 0 auto 7% auto;
  padding-top: 70px;
  color: white;
}
.pageContent.applicationFormArea h2 {
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 40px;
}
.pageContent.applicationFormArea h2 b {
  display: block;
  font-weight: 700;
}
.pageContent.textArea p {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 40px;
}
.pageContent.textArea p b {
  font-weight: 700;
}
.pageContent.textArea .appBtn {
  width: 50%;
  padding-left: 20px;
  z-index: 10000;
}
.pageContent.textArea .appBtn span {
  text-align: left;
  font-size: 20px;
  font-weight: 400;
}
.pageContent.textArea .appBtn i {
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/arrowRight-white.svg) no-repeat center;
  width: 16px;
  height: 16px;
  right: 20px;
  left: auto;
  top: 22px;
}

.formStep {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
}
.formStep a {
  width: 25%;
  font-size: 25px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}
.formStep a span {
  display: block;
}
.formStep a.active {
  color: white;
}
.formStep a:last-child {
  width: auto;
}

.formContent {
  background: #1D2228;
  z-index: 10000;
  position: relative;
  border: 1px solid rgba(128, 128, 128, 0.2);
  margin-top: 30px;
}
.formContent .row {
  display: flex;
}
.formContent .row.fRight {
  justify-content: flex-end;
}
.formContent .row .col {
  width: 100%;
  height: 100%;
}
.formContent .row .col.col33 {
  width: 33.3%;
}
.formContent .row .col.col50 {
  width: 50%;
}
.formContent .row .col.col66 {
  width: 66.6%;
}
.formContent .row .col.col75 {
  width: 75%;
}
.formContent .row .col.col25 {
  width: 25%;
}
.formContent .row .col.p25 {
  padding: 25px;
}
.formContent .row .col p {
  font-size: 14px;
  font-weight: 300;
  text-align: left;
}
.formContent .row .col p b {
  font-weight: 700;
}
.formContent .row .col.submitBtn {
  min-height: auto;
}
.formContent .row .col.submitBtn button {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 20px;
  font-weight: 400;
  color: white;
  position: relative;
  background: none;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}
.formContent .row .col.submitBtn button:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 16px;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/arrowRight.svg) no-repeat;
  top: 35%;
  left: 32%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.formContent .row .col.submitBtn button:hover {
  background-color: #343941;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.formContent .row .col.submitBtn button:hover:before {
  left: 60%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.formContent .row .col.smallBtn {
  height: 70px;
}
.formContent .row .col.smallBtn button {
  text-align: left;
  padding: 0 10px;
}
.formContent .row .col.smallBtn button:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 16px;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/arrowRight.svg) no-repeat;
  top: 40%;
  right: 15%;
  left: auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.formContent .row .col.smallBtn button:hover {
  background-color: #343941;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.formContent .row .col.smallBtn button:hover:before {
  left: auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  right: 5%;
}
.formContent .row .col.backBtn button {
  text-align: left;
  padding-left: 80px;
}
.formContent .row .col.backBtn button:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 16px;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/arrowRight.svg) no-repeat;
  top: 40%;
  left: 10%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  transform: rotate(-180deg);
}
.formContent .row .col.backBtn button:hover {
  background-color: #343941;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.formContent .row .col.backBtn button:hover:before {
  left: 5%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.formContent .row .col.angleBtn {
  min-height: 0px;
}
.formContent .row .col .kvkMetni {
  font-size: 12px;
  font-weight: 300;
  margin: 20px 0px;
  background-color: #24282F;
  padding: 20px;
  position: relative;
}
.formContent .row .col .kvkMetni:after {
  content: "";
  width: 100%;
  height: 84px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: url(https://cdn.sinpas.com.tr/assets/images/img/shadow.png) no-repeat;
}
.formContent .row .col input {
  width: 100%;
  border: none;
  background: none;
  color: white;
  font-size: 17px;
  font-weight: 300;
  padding: 0px 20px;
}
.formContent .row .col input::placeholder {
  font-size: 17px;
  font-weight: 300;
  color: white;
}
.formContent .row .col input[type=radio] {
  display: none;
  appearance: none;
}
.formContent .row .col input[type=radio] + label {
  cursor: pointer;
  position: relative;
}
.formContent .row .col input[type=radio] + label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  position: absolute;
  top: 50%;
  left: 0px;
  opacity: 1;
  transition: all 0.3s;
  transform: translateY(-50%);
  border-radius: 100%;
}
.formContent .row .col input[type=radio] + label:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: white;
  position: absolute;
  top: 50%;
  left: 5px;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(-50%);
  border-radius: 100%;
}
.formContent .row .col input[type=radio]:checked + label:after {
  opacity: 1;
}
.formContent .row .col textarea {
  width: 100%;
  border: none;
  background: none;
  resize: none;
  color: white;
  font-size: 17px;
  font-weight: 300;
  padding: 0px 20px;
  padding-top: 20px;
  height: 100%;
}
.formContent .row .col textarea::placeholder {
  font-size: 17px;
  font-weight: 300;
  color: white;
}
.formContent .row .col .angleBtn {
  min-height: auto;
  text-align: left;
}
.formContent .row .col .angleBtn:after {
  pointer-events: none;
}
.formContent .row .col .inputArea {
  width: 100%;
  height: 70px;
  line-height: 70px;
}
.formContent .row .col .inputArea:hover {
  background-color: #343941;
}
.formContent .row .col .inputArea input {
  height: 100%;
  display: block;
}
.formContent .row .col .selectArea {
  width: 100%;
  height: 70px;
  line-height: 70px;
}
.formContent .row .col .selectArea:hover {
  background-color: #343941;
}
.formContent .row .col .selectArea select {
  height: 100%;
  display: block;
  width: 100%;
  background: none;
  color: white;
  font-size: 17px;
  font-weight: 300;
  padding: 0 20px;
}
.formContent .row .col .selectArea select option {
  background-color: #fff;
}
.formContent .row .col .textArea {
  width: 100%;
  height: 230px;
}
.formContent .row .col .textArea.h120 {
  height: 120px;
}
.formContent .row .col .textArea:hover {
  background-color: #343941;
}
.formContent .row .col .h210 {
  height: 210px;
}
.formContent .row .col .h300 {
  height: 300px;
}
.formContent .row .col .logosArea {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.formContent .row .col .logosArea a {
  margin-right: 20px;
}
.formContent .row .col .labelArea {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
}
.formContent .row .col .labelArea div {
  width: 20%;
}
.formContent .row .col .labelArea div label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  padding-left: 30px;
}

.breadCrumb {
  position: absolute;
  top: 50px;
  right: 112px;
  display: flex;
  z-index: 100000;
}
.breadCrumb a {
  color: white;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  padding-right: 30px;
}
.breadCrumb a:after {
  content: "";
  width: 12px;
  height: 1px;
  position: absolute;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/line2.svg) no-repeat center;
  right: 0px;
  top: 50%;
  transform: translateX(-50%);
}
.breadCrumb a:last-child {
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/home.svg) no-repeat center center;
  width: 16px;
  height: 21px;
  display: inline-block;
}
.breadCrumb a:last-child:after {
  display: none;
}

/*General Elements */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  padding: 20px 7% 0;
}
header:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  height: 85%;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
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;
  align-items: start;
  z-index: 2;
}
header .left {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
header a.logo {
  display: block;
  background: url(https://cdn.sinpas.com.tr/assets/images/logo.svg) no-repeat left center;
  background-size: auto 100%;
  width: 122px;
  padding-bottom: 98px;
}
header .tools {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding-top: 70px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .tools ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
header .tools ul li a {
  font-size: 17px;
  font-weight: bold;
  color: #363636;
  display: block;
  padding: 0 25px;
}
header .tools ul li a:hover {
  color: #9E0C4F;
}
header .tools .right {
  padding-left: 90px;
}
header .tools .right a {
  display: block;
  width: 100%;
  height: 50px;
}
header .tools .right a i {
  display: block;
  width: 28px;
  height: 25px;
}
header .tools a.menuLink {
  margin-bottom: 30px;
}
header .tools a.menuLink span {
  display: block;
  width: 28px;
  height: 100%;
  position: relative;
}
header .tools a.menuLink span i {
  position: absolute;
  background: #9E0C4F;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 4px;
  right: 0;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
header .tools a.menuLink span i:nth-child(1) {
  width: 28px;
}
header .tools a.menuLink span i:nth-child(2) {
  width: 18px;
  top: 8px;
}
header .tools a.menuLink span i:nth-child(3) {
  width: 18px;
  top: 16px;
}
header .tools a.menuLink:hover span i:nth-child(1) {
  width: 18px;
}
header .tools a.menuLink:hover span i:nth-child(2) {
  width: 28px;
}
header .tools a.menuLink.opened span i {
  width: 10px !important;
}
header .tools a.menuLink.opened span i:nth-child(1) {
  width: 29px !important;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  left: 0;
  top: 15px;
}
header .tools a.menuLink.opened span i:nth-child(2) {
  opacity: 0;
}
header .tools a.menuLink.opened span i:nth-child(3) {
  width: 29px !important;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  left: 0;
  top: 15px;
}
header .nav {
  width: 100%;
  height: 100vh;
  background: #363636;
  position: absolute;
  top: -100vh;
  left: 0;
  z-index: 1;
  padding: 15% 0 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
header .nav nav {
  width: 86%;
  position: relative;
  margin: auto;
  height: 100%;
}
header .nav nav ul {
  width: 20%;
  float: left;
}
header .nav nav ul li.caption a {
  font-size: 32px;
  color: #fff;
  font-weight: 400;
  display: block;
  position: relative;
  margin-bottom: 25px;
}
header .nav nav ul li.caption ul {
  width: 100%;
  float: none;
}
header .nav nav ul li.caption ul li a {
  font-size: 17px;
  min-height: auto;
  margin-bottom: 0;
  padding: 10px 0;
}
header .nav nav ul.showOnMobile {
  display: none;
}
header .nav .bottomNav {
  position: absolute;
  width: 100%;
  bottom: 30px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
header .nav .bottomNav span {
  display: block;
  padding: 60px 0 20px;
  color: #fff;
  width: 100%;
  font-size: 32px;
}
header .nav .bottomNav .left a {
  font-size: 17px;
  color: #fff;
  margin-right: 20px;
}
header .nav .bottomNav .social {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 0 60px 70px;
  margin-left: 70px;
}
header .nav .bottomNav .social a {
  font-size: 22px;
  color: #fff;
  margin-right: 50px;
}
header .subNav {
  padding: 70px 0 0 100px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .subNav strong {
  font-size: 17px;
  color: #9E0C4F;
  display: block;
  padding-bottom: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .subNav ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
header .subNav ul li {
  margin-right: 20px;
}
header .subNav ul li a {
  color: #363636;
  font-size: 17px;
  background: #E9EEF0;
  padding: 5px 20px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}
header .subNav ul li a:hover {
  color: #9E0C4F;
}
header .subNav ul li a.selected {
  background: #9E0C4F;
  color: #fff;
  box-shadow: 0px 10px 20px rgba(158, 12, 79, 0.25);
}
header .searchArea {
  top: 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.opened .nav {
  top: 0;
}
header.opened .subNav {
  opacity: 0;
  pointer-events: none;
}
header.sticky:before {
  background: #fff;
}
header.sticky .tools {
  padding-top: 50px;
}
header.sticky .subNav {
  padding-top: 50px;
}
header.sticky .subNav strong {
  padding-bottom: 0;
  opacity: 0;
  height: 0;
  pointer-events: none;
}
header.sticky a.logo {
  padding-bottom: 75px;
}
header.sticky .searchArea {
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.light .tools ul li a {
  color: #fff;
}
header.light .tools a.menuLink span i {
  background: #fff;
}
header.light .tools .right a i.icon.globeIco {
  background-image: url(https://cdn.sinpas.com.tr/assets/images/icons/globeWhite.svg);
}

.mobileMenuLink {
  height: 100%;
  width: 60px;
  float: left;
  display: block;
  margin-top: 5px;
}

.mobileMenuLinkContent {
  width: 20px;
  height: 20px;
  position: relative;
  margin: auto;
}

.line1 {
  width: 20px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.line2 {
  width: 20px;
  height: 2px;
  position: absolute;
  top: 8px;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.line3 {
  width: 20px;
  height: 2px;
  position: absolute;
  top: 16px;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mobileMenuLink.closer .line1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  top: 10px;
}

.mobileMenuLink.closer .line2 {
  display: none;
}

.mobileMenuLink.closer .line3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  top: 10px;
}

main {
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 4;
}

section.mainSlider {
  width: 100%;
  height: 100%;
  height: 100vh;
  background: #fff;
  margin: 0;
  position: relative;
}
section.mainSlider .videoBg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}
section.mainSlider video {
  height: 100%;
  width: auto;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  position: absolute;
}
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 {
  position: relative;
  overflow: hidden;
}
section.mainSlider .item .content {
  height: 100%;
}
section.mainSlider .item .caption {
  position: absolute;
  width: 100%;
  top: 70%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  z-index: 5;
}
section.mainSlider .item .caption h2 {
  font-size: 60px;
  font-weight: normal;
  line-height: 1.2;
  color: #9E0C4F;
  letter-spacing: -0.05em;
  padding-bottom: 0;
}
section.mainSlider .item .caption h2 span {
  display: block;
  font-size: 90px;
  color: #BCAD7F;
}
section.mainSlider .item .caption p {
  margin: 45px 0;
  max-width: 460px;
}
section.mainSlider .active .item .caption {
  top: 30%;
  opacity: 1;
}
section.mainSlider .owl-nav {
  position: absolute;
  right: 7%;
  top: 60%;
  width: 120px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.mainSlider .owl-nav button {
  display: block;
  width: 50px;
  height: 50px;
}
section.mainSlider .owl-nav button span {
  display: block;
  width: 100%;
  height: 6px;
  border: 1px solid #9E0C4F;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  position: relative;
}
section.mainSlider .owl-nav button span:before {
  display: block;
  width: 33%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #9E0C4F;
  content: "";
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.mainSlider .owl-nav button:hover span:before {
  width: 100%;
}
section.mainSlider .owl-nav button.owl-next span:before {
  left: auto;
  right: 0;
}
section.mainSlider .owl-dots {
  position: absolute;
  right: calc(7% - 45px);
  top: 45%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
section.mainSlider .owl-dots .owl-dot {
  font-size: 90px;
  color: #BCAD7F;
  display: block;
  margin: 0 45px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.mainSlider .owl-dots .owl-dot.active {
  opacity: 0;
  font-size: 0px;
  margin: 0;
}

section.numbers {
  background: linear-gradient(#fff 0%, #d8e2e5 100%);
}
section.numbers .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.numbers .left {
  width: 30%;
  position: relative;
  z-index: 3;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
section.numbers .left h2 {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 0;
}
section.numbers .nBoxes {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
section.numbers .nBoxes.en .nBox span {
  font-size: 15px;
}
section.numbers .nBoxes i {
  display: block;
  content: "";
  position: absolute;
  width: 33.333%;
  height: 33.333%;
  border: 1px solid #9E0C4F;
  background: #fff;
  margin: 0 0 -1px -1px;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0px 15px 30px rgba(158, 12, 79, 0.15);
}
section.numbers .nBoxes .clr {
  width: 100%;
}
section.numbers .nBoxes .nBox {
  width: 33.3333%;
  padding-bottom: 33.3333%;
  position: relative;
  border: 1px solid #BCAD7F;
  margin: 0 0 -1px -1px;
}
section.numbers .nBoxes .nBox span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  font-size: 20px;
  color: #363636;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.2;
  z-index: 3;
}
section.numbers .nBoxes .nBox:hover span, section.numbers .nBoxes .nBox.selected span {
  color: #9E0C4F;
}
section.numbers .right {
  width: 60%;
}
section.numbers .right p {
  max-width: 50%;
  float: right;
  z-index: 3;
}
section.numbers .right .title {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
section.numbers .right .title h3 {
  width: 50%;
  font-size: 350px;
  color: #9E0C4F;
  line-height: 1;
  text-align: right;
}
section.numbers .right .title h4 {
  width: 50%;
  font-size: 120px;
  color: #BCAD7F;
  padding-top: 30px;
}
section.numbers .right .title h4 span {
  display: block;
  color: #9E0C4F;
  line-height: 1;
}
section.numbers .right .title.sector h4 {
  font-size: 100px;
}
section.numbers .right .title.employee h4 {
  font-size: 90px;
}
section.numbers .right #nContentSlider {
  position: relative;
  z-index: 3;
}
section.numbers .right #nContentSlider p {
  float: right;
}
section.numbers .right .owl-dots {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  width: 100%;
  justify-content: center;
}
section.numbers .right .owl-dots.disabled {
  display: none;
}
section.numbers .right .owl-dots .owl-dot {
  display: block;
  width: 10px;
  height: 10px;
  position: relative;
  margin: 0 3px;
}
section.numbers .right .owl-dots .owl-dot span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: #363636;
  -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%;
}
section.numbers .right .owl-dots .owl-dot.active span {
  display: block;
  width: 10px;
  height: 10px;
  background: #9E0C4F;
}
section.numbers .right .owl-nav button {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: -15px;
}
section.numbers .right .owl-nav button span {
  display: block;
  width: 100%;
  height: 6px;
  border: 1px solid #9E0C4F;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  position: relative;
}
section.numbers .right .owl-nav button span:before {
  display: block;
  width: 33%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #9E0C4F;
  content: "";
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.numbers .right .owl-nav button:hover span:before {
  width: 100%;
}
section.numbers .right .owl-nav button.owl-next span:before {
  left: auto;
  right: 0;
}
section.numbers .right .owl-nav button.owl-next {
  right: 0;
}
section.numbers .right .owl-nav.disabled {
  display: none;
}
section.numbers .cloudBg {
  display: block;
  width: 100%;
  height: 100%;
  /*background: url(https://cdn.sinpas.com.tr/assets/images/img/cloud.webp) no-repeat bottom;*/
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
section.numbers.en .right .title h3 {
  font-size: 200px;
}
section.numbers.en .right .title h4 {
  font-size: 70px;
}
section.numbers.en .right .title.sector h4 {
  font-size: 70px;
}
section.numbers.en .right .title.employee h4 {
  font-size: 70px;
}

section.sectors h2 {
  font-size: 24px;
  font-weight: 500;
}
section.sectors .sBoxes {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.sectors .sBoxes .sBox {
  width: 33.3333%;
  padding-bottom: 20%;
  position: relative;
  z-index: 1;
}
section.sectors .sBoxes .sBox span.img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.sectors .sBoxes .sBox span.img img {
  display: block;
  width: 100%;
}
section.sectors .sBoxes .sBox h3 {
  position: absolute;
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 50px;
  font-size: 32px;
  font-weight: 500;
  z-index: 3;
}
section.sectors .sBoxes .sBox .detail {
  display: block;
  width: 100%;
  height: 105%;
  position: absolute;
  top: 0%;
  left: 0;
  background: #363636;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  padding: 50px 50px 50px 75px;
}
section.sectors .sBoxes .sBox .detail a {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  display: block;
  position: relative;
  margin-bottom: 20px;
}
section.sectors .sBoxes .sBox .detail a:before {
  display: block;
  width: 10px;
  height: 5px;
  position: absolute;
  content: "";
  top: 15px;
  left: -25px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
section.sectors .sBoxes .sBox:hover, section.sectors .sBoxes .sBox.opened {
  z-index: 2;
}
section.sectors .sBoxes .sBox:hover .detail, section.sectors .sBoxes .sBox.opened .detail {
  top: 100%;
  opacity: 1;
}
section.sectors .sBoxes .sBox:hover span.img, section.sectors .sBoxes .sBox.opened span.img {
  height: 105%;
}
section.sectors .sBoxes .sBox p {
  position: absolute;
  color: #9E0C4F;
  padding: 50px;
  top: 0;
  left: 0;
  max-width: none;
}
section.sectors .sBoxes .sBox.bottom span.img {
  bottom: auto;
  top: 0;
}
section.sectors .sBoxes .sBox.bottom:hover .detail, section.sectors .sBoxes .sBox.bottom.opened .detail {
  top: -105%;
}

section.ideas {
  background: #363636;
}
section.ideas .ideasBack {
  width: 65%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 0;
}
section.ideas .ideasBack .owl-carousel, section.ideas .ideasBack .owl-stage-outer, section.ideas .ideasBack .owl-stage, section.ideas .ideasBack .owl-item, section.ideas .ideasBack .item {
  height: 100%;
}
section.ideas .ideasBack .item {
  background-position: center;
  background-size: cover;
}
section.ideas .ideasBack a.videoLink {
  display: none;
}
section.ideas .content.padded {
  padding-bottom: 5%;
}
section.ideas .ideasSlider {
  width: 100%;
  height: 100%;
  border: 2px solid #DDD2B1;
}
section.ideas .ideasSlider .owl-carousel, section.ideas .ideasSlider .owl-stage-outer, section.ideas .ideasSlider .owl-stage, section.ideas .ideasSlider .owl-item, section.ideas .ideasSlider .item {
  height: 100%;
}
section.ideas .ideasSlider .item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 7%;
}
section.ideas .ideasSlider .item h2 {
  color: #fff;
  font-size: 100px;
  width: 100%;
}
section.ideas .ideasSlider .item h2 small {
  display: block;
  font-size: 40px;
  line-height: 1;
}
section.ideas .ideasSlider .item p {
  color: #fff;
  max-width: 460px;
}
section.ideas .ideasSlider .owl-nav {
  position: absolute;
  left: 20%;
  bottom: 20px;
  width: 120px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.ideas .ideasSlider .owl-nav button {
  display: block;
  width: 50px;
  height: 50px;
}
section.ideas .ideasSlider .owl-nav button span {
  display: block;
  width: 100%;
  height: 6px;
  border: 1px solid #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  position: relative;
}
section.ideas .ideasSlider .owl-nav button span:before {
  display: block;
  width: 33%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  content: "";
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.ideas .ideasSlider .owl-nav button:hover span:before {
  width: 100%;
}
section.ideas .ideasSlider .owl-nav button.owl-next span:before {
  left: auto;
  right: 0;
}
section.ideas .ideasSlider .owl-nav.disabled {
  display: none;
}
section.ideas .ideasSlider .owl-dots {
  position: absolute;
  left: 7%;
  bottom: 40px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
section.ideas .ideasSlider .owl-dots .owl-dot {
  width: 9px;
  height: 9px;
  border: 1px solid #DDD2B1;
  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;
  margin-right: 10px;
}
section.ideas .ideasSlider .owl-dots .owl-dot.active {
  background: #DDD2B1;
}
section.ideas a.videoLink {
  display: block;
  width: 120px;
  height: 120px;
  background: #9E0C4F;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  text-align: center;
  line-height: 120px;
  color: #fff;
  position: absolute;
  top: 44%;
  right: 30%;
}
section.ideas a.videoLink:before {
  content: "";
  font-size: 50px;
}
section.ideas a.videoLink:hover {
  background: #BCAD7F;
}

section.history {
  background: linear-gradient(#e9eef0 0%, #fff 100%);
  background: #f5f6f8;
}
section.history h2 {
  font-size: 24px;
  width: 100%;
  font-weight: 500;
}
section.history .content.padded {
  padding-bottom: 5%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.history .historyYears {
  height: 100%;
  width: 20%;
  padding: 110px 0;
  position: relative;
}
section.history .historyYears:before {
  display: block;
  width: 80%;
  height: 1px;
  background: #9E0C4F;
  content: "";
  position: absolute;
  left: 100px;
  top: 50%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
section.history .historyYears .historyYearsInner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
section.history .historyYears .historyYearsInner ul {
  position: relative;
  width: 100%;
}
section.history .historyYears .historyYearsInner ul li {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: #222630;
  font-size: 24px;
  font-weight: normal;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
section.history .historyYears .historyYearsInner ul li.active {
  color: #9E0C4F;
  font-weight: bold;
}
section.history .historyYears .historyYearsInner ul li.active:before {
  width: 100%;
}
section.history .historyYears .historyYearsInner::-webkit-scrollbar {
  display: none;
}
section.history .historyContent {
  width: 55%;
  height: 100%;
  padding: 5% 0 0 0;
  position: relative;
}
section.history .historyContent .year {
  position: absolute;
  font-weight: bold;
  font-size: 400px;
  top: 33px;
  left: -35%;
  line-height: 1;
  letter-spacing: -40px;
  z-index: 5;
  color: transparent;
  -webkit-text-stroke: 1px linear-gradient(310deg, #ddd2b1 0%, #9e0c4f 100%);
}
section.history .historyContent .historyList {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
section.history .historyContent .hItem {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
section.history .historyContent .hItem .hItemContent {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 150%;
}
section.history .historyContent .hItem .hItemContent h2 {
  display: none;
}
section.history .historyContent .hItem .hItemContent strong {
  color: #9E0C4F;
}
section.history .historyContent .hItem .hItemContent p {
  font-size: 16px;
}
section.history .historyContent .hItem .hItemContent .owl-carousel {
  height: 100%;
}
section.history .historyContent .hItem.active {
  z-index: 2;
}
section.history .historyContent svg text {
  letter-spacing: -30px;
  font-size: 360px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  fill: transparent;
}
section.history .historyContent .item {
  padding-left: 25px;
}
section.history .historyContent .item span.img {
  width: 99.8%;
  display: block;
}
section.history .historyContent .item p {
  margin-top: 40px;
  max-width: 460px;
}
section.history .historyContent .owl-nav {
  position: absolute;
  right: 0%;
  top: 300px;
  width: 120px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: none;
}
section.history .historyContent .owl-nav button {
  display: block;
  width: 50px;
  height: 50px;
}
section.history .historyContent .owl-nav button span {
  display: block;
  width: 100%;
  height: 6px;
  border: 1px solid #9E0C4F;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  position: relative;
}
section.history .historyContent .owl-nav button span:before {
  display: block;
  width: 33%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #9E0C4F;
  content: "";
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.history .historyContent .owl-nav button:hover span:before {
  width: 100%;
}
section.history .historyContent .owl-nav button.owl-next span:before {
  left: auto;
  right: 0;
}
section.history .historyContent .owl-nav.disabled {
  opacity: 0;
}
section.history .historyContent .owl-dots {
  position: absolute;
  right: 0;
  top: 55%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  background: #f5f6f8;
  padding: 5px;
}
section.history .historyContent .owl-dots.disabled {
  display: none;
}
section.history .historyContent .owl-dots .owl-dot {
  display: block;
  width: 10px;
  height: 10px;
  position: relative;
  margin: 0 3px;
}
section.history .historyContent .owl-dots .owl-dot span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: #363636;
  -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%;
}
section.history .historyContent .owl-dots .owl-dot.active span {
  display: block;
  width: 10px;
  height: 10px;
  background: #9E0C4F;
}

footer {
  position: relative;
  z-index: 6;
  padding-bottom: 60px;
}
footer .content {
  background: #fff;
  border-top: 1px solid #9E0C4F;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .content:after {
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  content: "";
}
footer .left {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  padding-top: 20px;
}
footer .left a {
  display: block;
  width: 100px;
}
footer .left a img {
  display: block;
  width: 100%;
}
footer .left span {
  font-size: 15px;
  color: #9E0C4F;
  padding-left: 25px;
}
footer .left span strong {
  display: block;
}
footer .nav {
  padding-top: 55px;
}
footer .nav a {
  font-size: 15px;
  color: #363636;
  display: inline-block;
  padding: 0 5px;
  border-right: 1px solid #363636;
  line-height: 1;
}
footer .nav a:hover {
  color: #9E0C4F;
}
footer .nav a:last-child {
  border: none;
}
footer .social {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 0 10px 30px;
  border-top: 1px solid #BCAD7F;
  margin-top: -1px;
  border-left: 1px solid rgba(188, 173, 127, 0.4);
}
footer .social span {
  font-size: 32px;
  color: #363636;
}
footer .social a {
  color: #9E0C4F;
  margin: 0 20px;
}

.txtImgContent .row {
  justify-content: center;
}
.txtImgContent .col {
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.txtImgContent .textArea {
  color: #fff;
}
.txtImgContent .textArea.right p {
  float: right;
}
.txtImgContent .textArea h1 {
  font-size: 72px;
  display: block;
  padding-bottom: 5%;
}
.txtImgContent .textArea h1 span {
  display: block;
  font-weight: 100;
}
.txtImgContent .textArea p {
  max-width: 66.666%;
}
.txtImgContent.m100 {
  margin-bottom: 100px;
}

/*Contact*/
.mapsArea img {
  display: block;
}

.contact {
  color: white;
  padding-top: 7%;
}
.contact .item {
  background-color: #fff;
  padding: 75px;
  min-height: 500px;
  z-index: 10000;
  border-top: 1px solid #32353B;
  border-bottom: 1px solid #32353B;
}
.contact .item.itemLeft {
  border-right: 1px solid #32353B;
  border-left: 1px solid #32353B;
}
.contact .item h2 {
  font-size: 35px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
}
.contact .item p {
  font-size: 18px;
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
}
.contact .item p:last-child {
  margin-bottom: 0px;
}
.contact .item p span {
  display: inline-block;
  font-weight: 300;
  width: 30%;
}
.contact .item p a {
  color: white;
}
.contact p.contactValue {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}
.contact p.contactValue img {
  width: 23px;
  height: 23px;
}
.contact p.contactValue a {
  padding-left: 10px;
}
.contact p.contactValue:last-child img {
  width: 27px;
  height: 27px;
}
.contact h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
}
.contact small {
  font-size: 20px;
  font-weight: 300;
}

/*Contact*/
/*Form Page*/
.formWrapper {
  display: block;
  border-top-right-radius: 10px;
  overflow: hidden;
}
.formWrapper .left {
  width: 58.3%;
  float: left;
}
.formWrapper .left img {
  width: 100%;
}
.formWrapper .right {
  width: 41.7%;
  background-color: #eee;
  float: left;
  padding: 95px;
}
.formWrapper .right .formContent h1 {
  font-size: 40px;
}
.formWrapper .right .formContent .titleAlt {
  font-size: 18px;
  font-weight: normal;
  display: block;
  line-height: 25px;
}
.formWrapper .right .formContent .titleAlt.greyText {
  color: #6D6E73;
  padding-top: 60px;
  border-top: 1px solid #6D6E73;
  margin-top: 50px;
  padding-bottom: 30px;
}

/*Form Page*/
.tabsBtn {
  margin-bottom: 40px;
}
.tabsBtn a {
  width: auto;
  display: inline-block;
  padding: 10px 15px;
  color: #363636;
  background-color: #fff;
  position: relative;
  font-size: 23px;
  font-weight: 600;
  margin-right: 10px;
}
.tabsBtn a:hover {
  color: #9E0C4F;
}
.tabsBtn a.active-tab {
  color: #9E0C4F;
}

.tabs-content .tabs {
  display: none;
}
.tabs-content .tabs .galleryList {
  width: calc(100% + 20px);
  margin-left: -20px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tabs-content .tabs .galleryList .col {
  width: calc(25% - 20px);
  margin-left: 20px;
  margin-bottom: 20px;
}
.tabs-content .tabs .galleryList .item {
  width: 24%;
}
.tabs-content .tabs .galleryList .item a {
  border: 1px solid #BCAD7F;
  display: block;
  padding: 20px;
  height: 420px;
  margin-bottom: 50px;
}
.tabs-content .tabs .galleryList .item a i {
  position: relative;
}
.tabs-content .tabs .galleryList .item a i img {
  width: 100%;
  margin-bottom: 15px;
  object-fit: cover;
  height: 200px;
}
.tabs-content .tabs .galleryList .item a small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #9E0C4F;
  margin-bottom: 25px;
}
.tabs-content .tabs .galleryList .item a span {
  font-size: 23px;
  font-weight: 600;
  color: #363636;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.tabs-content .tabs .galleryList .item a:hover {
  border: 1px solid #9E0C4F;
  box-shadow: 0px 20px 20px 5px rgba(158, 12, 79, 0.15);
}
.tabs-content .tabs .galleryList.videos .item a {
  height: auto;
}
.tabs-content .tabs .galleryList.videos .item a i {
  position: relative;
  display: block;
}
.tabs-content .tabs .galleryList.videos .item a i:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/play.svg) no-repeat;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.sliderArea {
  margin-right: 14%;
  padding-top: 60px;
}
.sliderArea .contentSlider .item a, .sliderArea #divIsIlanlari .item a {
  padding: 30px 50px 50px;
  text-align: center;
  border: 1px solid #BCAD7F;
  display: block;
  margin: 0 1%;
  height: 400px;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sliderArea .contentSlider .item a .img, .sliderArea #divIsIlanlari .item a .img {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.sliderArea .contentSlider .item a .img img, .sliderArea #divIsIlanlari .item a .img img {
  width: auto;
  height: auto;
}
.sliderArea .contentSlider .item a img, .sliderArea #divIsIlanlari .item a img {
  display: block;
  max-width: 140px;
  margin-bottom: 10px;
}
.sliderArea .contentSlider .item a p, .sliderArea #divIsIlanlari .item a p {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
.sliderArea .contentSlider .item a p strong, .sliderArea #divIsIlanlari .item a p strong {
  color: #9E0C4F;
  display: block;
}
.sliderArea .contentSlider .item a:hover, .sliderArea #divIsIlanlari .item a:hover {
  border: 1px solid #9E0C4F;
  box-shadow: 0px 20px 20px 5px rgba(158, 12, 79, 0.15);
}
.sliderArea .contentSlider .owl-nav, .sliderArea #divIsIlanlari .owl-nav {
  position: absolute;
  right: 0px;
  top: -108px;
  width: 120px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sliderArea .contentSlider .owl-nav button, .sliderArea #divIsIlanlari .owl-nav button {
  display: block;
  width: 50px;
  height: 50px;
}
.sliderArea .contentSlider .owl-nav button span, .sliderArea #divIsIlanlari .owl-nav button span {
  display: block;
  width: 100%;
  height: 6px;
  border: 1px solid #9E0C4F;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  position: relative;
}
.sliderArea .contentSlider .owl-nav button span:before, .sliderArea #divIsIlanlari .owl-nav button span:before {
  display: block;
  width: 33%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #9E0C4F;
  content: "";
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sliderArea .contentSlider .owl-nav button:hover span:before, .sliderArea #divIsIlanlari .owl-nav button:hover span:before {
  width: 100%;
}
.sliderArea .contentSlider .owl-nav button.owl-next span:before, .sliderArea #divIsIlanlari .owl-nav button.owl-next span:before {
  left: auto;
  right: 0;
}
.sliderArea .contentSlider .owl-dots, .sliderArea #divIsIlanlari .owl-dots {
  position: absolute;
  top: -90px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  right: 0;
}
.sliderArea .contentSlider .owl-dots .owl-dot, .sliderArea #divIsIlanlari .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border: 1px solid #9E0C4F;
  margin-left: 15px;
}
.sliderArea .contentSlider .owl-dots .owl-dot.active, .sliderArea #divIsIlanlari .owl-dots .owl-dot.active {
  background-color: #9E0C4F;
}
.sliderArea.positions #divIsIlanlari .item a {
  height: 330px;
  position: relative;
}
.sliderArea.positions #divIsIlanlari .item a .img {
  height: 80px;
  justify-content: start;
  margin-bottom: 10px;
  min-height: auto;
  align-items: center;
}
.sliderArea.positions #divIsIlanlari .item a .img img {
  max-height: 100%;
  display: block;
  margin-bottom: 0;
}
.sliderArea.positions #divIsIlanlari .item a strong {
  display: block;
  text-align: left;
  color: #000;
  font-size: 19px;
  min-height: 60px;
  margin-bottom: 15px;
}
.sliderArea.positions #divIsIlanlari .item a span.company {
  color: #9E0C4F;
  text-align: left;
  display: block;
  font-size: 14px;
}
.sliderArea.positions #divIsIlanlari .item a i {
  width: 50px;
  height: 50px;
  border: 1px solid #BCAD7F;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/arrowBrown.svg) no-repeat center;
  position: absolute;
  right: 25px;
  bottom: 25px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sliderArea.positions #divIsIlanlari .item a:hover i {
  background: #BCAD7F url(https://cdn.sinpas.com.tr/assets/images/icons/arrowPink.svg) no-repeat center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sliderArea.positions #divIsIlanlari .item a small {
  display: block;
  font-weight: normal;
  font-size: 12px;
  text-align: left;
  color: #1D2228;
}
.sliderArea.positions #familySlider .item a {
  padding: 50px;
  text-align: center;
  border: 1px solid #BCAD7F;
  display: block;
  margin: 0 1%;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 280px;
  position: relative;
}
.sliderArea.positions #familySlider .item a img {
  width: auto !important;
  max-width: 100%;
  margin: auto;
}
.sliderArea.positions #familySlider .item a i {
  width: 50px;
  height: 50px;
  border: 1px solid #BCAD7F;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/arrowBrown.svg) no-repeat center;
  position: absolute;
  right: 25px;
  bottom: 25px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sliderArea.positions #familySlider .item a:hover i {
  background: #BCAD7F url(https://cdn.sinpas.com.tr/assets/images/icons/arrowPink.svg) no-repeat center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.pressSlider {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.pressSlider.newsSlider .item {
  margin-right: 10px;
}
.pressSlider.newsSlider .item a {
  height: 550px;
  background-color: #fff;
  padding: 20px;
  position: relative;
}
.pressSlider.newsSlider .item a img {
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  width: 100%;
}
.pressSlider.newsSlider .item a small {
  margin-bottom: 15px;
}
.pressSlider.newsSlider .item a span {
  -webkit-line-clamp: 4;
  min-height: 50px !important;
}
.pressSlider.newsSlider .item a span.sm {
  font-size: 16px;
  font-weight: 400;
}
.pressSlider.newsSlider .item a .btn {
  display: block;
  line-height: 60px;
  margin-top: 30px;
  float: right;
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.pressSlider.newsSlider .item a .btn:before {
  border: 7px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.pressSlider.newsSlider .item a:hover .btn {
  background-color: #9E0C4F;
}
.pressSlider.newsSlider .item a:hover .btn:before {
  display: none;
}
.pressSlider.sinpasInPressSlider .item {
  margin-right: 10px;
}
.pressSlider.sinpasInPressSlider .item a {
  height: 420px;
}
.pressSlider.sinpasInPressSlider .item a img {
  object-position: top center;
}
.pressSlider.sinpasInPressSlider .item a span {
  -webkit-line-clamp: 2;
  min-height: 70px;
}
.pressSlider .item {
  width: 24%;
  margin-right: 10px;
}
.pressSlider .item a {
  height: 350px;
  border: 1px solid #BCAD7F;
  margin: 0 1%;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  padding: 30px;
  position: relative;
}
.pressSlider .item a small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #9E0C4F;
  margin-bottom: 25px;
}
.pressSlider .item a span {
  font-size: 23px;
  font-weight: 600;
  color: #363636;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.pressSlider .item a i {
  width: 50px;
  height: 50px;
  border: 1px solid #BCAD7F;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/arrowBrown.svg) no-repeat center;
  position: absolute;
  right: 25px;
  bottom: 25px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.pressSlider .item a:hover {
  border: 1px solid #9E0C4F;
  box-shadow: 0px 20px 20px 5px rgba(158, 12, 79, 0.15);
}
.pressSlider .item a:hover i {
  background: #BCAD7F url(https://cdn.sinpas.com.tr/assets/images/icons/arrowPink.svg) no-repeat center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pressSlider .owl-nav {
  position: absolute;
  top: 35%;
  width: 100%;
}
.pressSlider .owl-nav button {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff url(https://cdn.sinpas.com.tr/assets/images/icons/arrowBrown.svg) no-repeat center !important;
  border: 1px solid #BCAD7F !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pressSlider .owl-nav button.owl-next {
  right: -90px;
}
.pressSlider .owl-nav button.owl-prev {
  left: -90px;
  transform: rotate(-180deg);
}
.pressSlider .owl-nav button:hover {
  background: #BCAD7F url(https://cdn.sinpas.com.tr/assets/images/icons/arrowPink.svg) no-repeat center !important;
}
.pressSlider .owl-dots {
  position: absolute;
  right: 0;
}
.pressSlider .owl-dots .owl-dot {
  margin-left: 20px;
}
.pressSlider .owl-dots .owl-dot span {
  font-size: 17px;
  font-weight: 500;
  color: #363636;
}
.pressSlider .owl-dots .owl-dot.active span {
  color: #9E0C4F;
  border-bottom: 2px solid #9E0C4F;
}

.pagList {
  width: 100%;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
.pagList div {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.pagList ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.pagList ul li {
  margin-left: 5px;
}
.pagList a {
  font-size: 14px;
  font-weight: 500;
  color: #363636;
  display: block;
  width: 25px;
  height: 25px;
  text-align: center;
  border: 1px solid #808080;
  line-height: 25px;
}
.pagList a:hover, .pagList a.active {
  background: #9E0C4F;
  color: #fff;
  border: 1px solid #9E0C4F;
}
.pagList li.active a {
  background: #9E0C4F;
  color: #fff;
  border: 1px solid #9E0C4F;
}

.newsDetail {
  padding-bottom: 100px;
}
.newsDetail h2 {
  font-size: 40px;
  line-height: 50px;
}
.newsDetail .img {
  width: 60%;
  float: right;
  padding: 0px 0px 30px 30px;
}
.newsDetail:after {
  clear: both;
  content: "";
  display: block;
  width: 100%;
}

.textContent.left {
  padding-right: 100px;
}
.textContent.right {
  padding-left: 100px;
}

.imgContent.left {
  padding-right: 100px;
}

.visionMission .inner {
  background-color: #DDD2B1;
  padding: 115px 180px 140px 140px;
  position: relative;
}
.visionMission .inner span.title {
  font-size: 48px;
  color: #9E0C4F;
  font-weight: 400;
  display: block;
  margin-bottom: 40px;
}
.visionMission .inner .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.visionMission .inner .row .col {
  padding-right: 60px;
}
.visionMission .inner .row .col:last-child {
  padding-right: 0;
}
.visionMission .inner .link {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  height: 25%;
  z-index: 1;
}
.visionMission .inner .link a {
  display: flex;
  background-color: #9E0C4F;
  width: 100%;
  height: 100%;
  align-items: center;
  padding-left: 140px;
  padding-right: 70px;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  border: 1px solid transparent;
}
.visionMission .inner .link a:hover {
  background-color: #fff;
  color: #9E0C4F;
  border: 1px solid #9E0C4F;
}
.visionMission .inner .link a:hover .arrowBtn {
  border-color: #9E0C4F;
}
.visionMission .inner .link a:hover .arrowBtn:before {
  width: 100%;
  background-color: #9E0C4F;
}
.visionMission:after {
  content: "";
  position: absolute;
  right: 180px;
  top: 0;
  background: url(https://cdn.sinpas.com.tr/assets/images/img/visionMisionBg.png) no-repeat;
  display: block;
  width: 865px;
  height: 787px;
  background-size: 100% auto;
  z-index: 0;
}

.publications {
  background: linear-gradient(#e9eef0 0%, #fff 100%);
  height: 1200px;
}
.publications .content.padded {
  padding-top: 100px;
}
.publications .content .pubblicationsSlider {
  margin-top: 60px;
}
.publications .content .pubblicationsSlider .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.publications .content .pubblicationsSlider .item .col {
  width: 49.5%;
  margin-bottom: 1%;
}
.publications .content .pubblicationsSlider .item a {
  display: flex;
  height: 220px;
  background-color: #fff;
  padding: 35px;
  align-items: center;
  position: relative;
  border: 1px solid #BCAD7F;
}
.publications .content .pubblicationsSlider .item a i.img {
  margin-right: 40px;
}
.publications .content .pubblicationsSlider .item a i.img img {
  width: 100px;
  height: 150px;
  object-fit: contain;
}
.publications .content .pubblicationsSlider .item a span {
  margin-right: 70px;
  font-size: 21px;
  color: #363636;
  font-weight: 600;
}
.publications .content .pubblicationsSlider .item a i.arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #BCAD7F;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/arrowBrown.svg) no-repeat center;
  position: absolute;
  right: 35px;
  bottom: 35px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.publications .content .pubblicationsSlider .item a:hover {
  border: 1px solid #9E0C4F;
  box-shadow: 0px 5px 5px 5px rgba(158, 12, 79, 0.15);
}
.publications .content .pubblicationsSlider .item a:hover i.arrow {
  background: #BCAD7F url(https://cdn.sinpas.com.tr/assets/images/icons/arrowPink.svg) no-repeat center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.publications .content .pubblicationsSlider .owl-nav {
  position: absolute;
  right: 180px;
  top: -108px;
  width: 120px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.publications .content .pubblicationsSlider .owl-nav button {
  display: block;
  width: 50px;
  height: 50px;
}
.publications .content .pubblicationsSlider .owl-nav button span {
  display: block;
  width: 100%;
  height: 6px;
  border: 1px solid #9E0C4F;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  position: relative;
}
.publications .content .pubblicationsSlider .owl-nav button span:before {
  display: block;
  width: 33%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #9E0C4F;
  content: "";
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.publications .content .pubblicationsSlider .owl-nav button:hover span:before {
  width: 100%;
}
.publications .content .pubblicationsSlider .owl-nav button.owl-next span:before {
  left: auto;
  right: 0;
}
.publications .content .pubblicationsSlider .owl-dots {
  position: absolute;
  top: -90px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  right: 0;
}
.publications .content .pubblicationsSlider .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border: 1px solid #9E0C4F;
  margin-left: 15px;
}
.publications .content .pubblicationsSlider .owl-dots .owl-dot.active {
  background-color: #9E0C4F;
}
.publications .content .publicationsBottom .row .col:nth-child(1) {
  width: 35.7%;
  background-color: #9E0C4F;
}
.publications .content .publicationsBottom .row .col:nth-child(2) {
  width: 36.8%;
  background-color: #E9EEF0;
}
.publications .content .publicationsBottom .row .col:nth-child(3) {
  width: 27.5%;
  background-color: #BCAD7F;
}
.publications .content .publicationsBottom .row .col a {
  display: block;
  padding: 50px;
  position: relative;
  height: 100%;
}
.publications .content .publicationsBottom .row .col a .title {
  font-size: 36px;
  font-weight: 400;
  display: block;
  margin-bottom: 25px;
  color: #363636;
  line-height: 30px;
}
.publications .content .publicationsBottom .row .col a .title.gold {
  color: #BCAD7F;
}
.publications .content .publicationsBottom .row .col a .title.pink {
  color: #9E0C4F;
}
.publications .content .publicationsBottom .row .col a .title i {
  font-style: normal;
  font-weight: bold;
}
.publications .content .publicationsBottom .row .col a small {
  color: #363636;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
}
.publications .content .publicationsBottom .row .col a small.white {
  color: #fff;
}
.publications .content .publicationsBottom .row .col a b {
  border: 10px solid #9E0C4F;
  position: absolute;
  right: 25px;
  bottom: 25px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.publications .content .publicationsBottom .row .col a b.gold {
  border-color: #BCAD7F;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

/*Popup ı üste çıkarmak için vermem gerekti abi.*/
.fancybox-container {
  z-index: 99999 !important;
}

.publicationsWrapper {
  padding: 0 !important;
  width: 85%;
  height: 85%;
}
.publicationsWrapper .row .col {
  padding: 100px 0px;
}
.publicationsWrapper .row .col:nth-child(1) {
  width: 33%;
  background-color: #E9EEF0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.publicationsWrapper .row .col:nth-child(1) img {
  display: block;
  width: 250px;
  height: 375px;
}
.publicationsWrapper .row .col:nth-child(2) {
  width: 66%;
  padding-left: 100px;
  padding-right: 100px;
  overflow: auto;
  height: 100%;
}
.publicationsWrapper .row .col:nth-child(2) .title {
  font-weight: 400;
  font-size: 50px;
  color: #9E0C4F;
  display: block;
  margin-bottom: 40px;
}
.publicationsWrapper .row .col:nth-child(2) p {
  font-size: 18px;
}
.publicationsWrapper .row ::-webkit-scrollbar {
  width: 5px;
}
.publicationsWrapper .row ::-webkit-scrollbar-track {
  background: none;
}
.publicationsWrapper .row ::-webkit-scrollbar-thumb {
  background-color: #9E0C4F;
  border-radius: 10px;
}
.publicationsWrapper .fancybox-close-small {
  background: #9E0C4F;
}
.publicationsWrapper .fancybox-close-small svg {
  color: #fff;
}

.contact p {
  margin-bottom: 10px;
}
.contact p.mb80 {
  margin-bottom: 80px;
}
.contact p i {
  color: #9E0C4F;
  font-weight: bold;
  font-style: normal;
}
.contact p a {
  color: #363636;
}

.contactForm {
  background-color: #E8EEF0;
  padding: 90px;
}
.contactForm:after {
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  content: "";
}
.contactForm .row .col.col-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contactForm .row input, .contactForm .row select {
  width: 49%;
  border: none;
  height: 70px;
  font-size: 17px;
  font-weight: 500;
  padding-left: 20px;
}
.contactForm .row input::placeholder, .contactForm .row select::placeholder {
  color: #363636;
}
.contactForm .row input.mb2, .contactForm .row select.mb2 {
  margin-bottom: 2%;
}
.contactForm .row .select {
  position: relative;
  width: 49%;
}
.contactForm .row .select select {
  width: 100%;
}
.contactForm .row .select:before {
  width: 50px;
  height: 70px;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  display: block;
  text-align: center;
  line-height: 70px;
  font-size: 16px;
}
.contactForm .row input[type=checkbox] {
  display: none;
  appearance: none;
}
.contactForm .row input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  color: #363636;
  font-weight: 400;
  line-height: 1.3;
  display: inline-block;
  cursor: default;
}
.contactForm .row input[type=checkbox] + label a {
  color: #363636;
  font-weight: bold;
}
.contactForm .row input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #808080;
  position: absolute;
  top: 50%;
  left: 0px;
  opacity: 1;
  transition: all 0.3s;
  transform: translateY(-50%);
}
.contactForm .row input[type=checkbox] + label:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #363636;
  position: absolute;
  top: 50%;
  left: 5px;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(-50%);
}
.contactForm .row input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.contactForm .row textarea {
  width: 96%;
  height: 100%;
  margin-bottom: 0;
  margin-left: 4%;
  border: none;
  font-size: 17px;
  font-weight: 500;
  padding-left: 20px;
  padding-top: 22px;
  resize: none;
}
.contactForm .row textarea::placeholder {
  color: #363636;
}
.contactForm .row .chkBox {
  width: 100%;
}
.contactForm .btn {
  float: right;
  margin-top: 0;
}
.contactForm .btn:before {
  border: 7px solid #E8EEF0;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.legalNote {
  width: 100%;
  max-width: 1200px !important;
}
.legalNote h2 {
  font-size: 24px;
}
.legalNote h3 {
  font-weight: normal;
  font-size: 18px;
  color: #9E0C4F;
  margin: 15px 0 5px;
}
.legalNote p {
  font-size: 14px;
}

.eBultenEthics span.title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 44px;
  display: block;
  line-height: 1.5;
  color: #fff;
}
.eBultenEthics span.title.pink {
  color: #9E0C4F;
  margin-bottom: 60px;
}
.eBultenEthics p {
  font-size: 15px;
  font-weight: 400;
  padding-right: 60px;
  color: #fff;
}
.eBultenEthics p a {
  color: #9E0C4F;
}
.eBultenEthics .row {
  justify-content: space-between;
}
.eBultenEthics .row .col {
  padding: 80px 0 0 90px;
  min-height: 600px;
}
.eBultenEthics .row .col:nth-child(1) {
  width: 60%;
  background: url(https://cdn.sinpas.com.tr/assets/images/img/eBultenBg.jpg) no-repeat right top;
}
.eBultenEthics .row .col:nth-child(2) {
  width: 36.8%;
  background: url(https://cdn.sinpas.com.tr/assets/images/img/ethicsLine.jpg) no-repeat bottom right;
  margin-left: 2px;
  padding-left: 60px;
}
.eBultenEthics .eBulten {
  max-width: 480px;
}
.eBultenEthics .eBulten input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #363636;
  height: 60px;
  font-weight: bold;
  padding: 0px 20px;
  margin-bottom: 40px;
}
.eBultenEthics .eBulten input::placeholder {
  font-weight: bold;
  font-size: 15px;
  color: #363636;
}
.eBultenEthics .eBulten input[type=checkbox] {
  display: none;
  appearance: none;
}
.eBultenEthics .eBulten input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  color: #363636;
  font-weight: 400;
  line-height: 1.3;
  display: inline-block;
  cursor: default;
}
.eBultenEthics .eBulten input[type=checkbox] + label a {
  color: #363636;
  font-weight: bold;
}
.eBultenEthics .eBulten input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0px;
  opacity: 1;
  transition: all 0.3s;
  transform: translateY(-50%);
}
.eBultenEthics .eBulten input[type=checkbox] + label:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #9E0C4F;
  position: absolute;
  top: 50%;
  left: 5px;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(-50%);
}
.eBultenEthics .eBulten input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.eBultenEthics .eBulten .btn:before {
  border: 7px solid #BCAD7F;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.salesOffice .contentSlider .item a {
  height: 460px;
}
.salesOffice .contentSlider .item a .img {
  min-height: 130px;
}
.salesOffice .contentSlider .item a .img img {
  width: 100%;
  max-width: 100%;
}
.salesOffice .contentSlider .item a p {
  height: 68px;
}
.salesOffice .contentSlider .item a .btn {
  margin-top: 40px;
  line-height: 60px;
  float: left;
}
.salesOffice .contentSlider .item a .btn:before {
  border: 7px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.salesOffice .contentSlider .item a:hover .btn {
  background-color: #9E0C4F;
}
.salesOffice .contentSlider .item a:hover .btn:before {
  display: none;
}

.pressHead {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.pressHead .selectArea {
  width: 100%;
  max-width: 200px;
  position: relative;
  margin-top: 20px;
}
.pressHead .selectArea:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 54px;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/selectArrow.svg) no-repeat center;
  background-size: 100%;
  top: 0px;
  right: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pressHead .selectArea select {
  width: 100%;
  border: none;
  padding: 15px 30px;
  font-size: 17px;
  color: #363636;
  appearance: none;
  -webkit-appearance: none;
  font-weight: 400;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  background-color: #E9EEF0;
}
.pressHead .selectArea select option {
  font-size: 19px;
}
.pressHead .selectArea:focus-within:after {
  transform: rotate(180deg);
}
.pressHead .selectArea.white select {
  background-color: #fff;
}

.pressReleases {
  margin-bottom: 100px;
}

.newsArea {
  background-color: #e9eef0;
}
.newsArea .content.padded {
  padding-top: 100px;
}

.logos .contentSlider .item a {
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logos .contentSlider .item a .img {
  min-height: 130px;
  margin-bottom: 100px;
}
.logos .contentSlider .item a .pdfIcon {
  width: 90%;
  height: 60px;
  border: 1px solid #BCAD7F;
  display: block;
  line-height: 60px;
  font-size: 20px;
  font-weight: 500;
  color: #363636;
  text-align: left;
  padding-left: 20px;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.logos .contentSlider .item a .pdfIcon:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 14px;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/arrowBrown.svg) no-repeat center;
  right: 20px;
  transform: rotate(90deg) translateX(-50%);
  top: 50%;
}
.logos .contentSlider .item a:hover .pdfIcon {
  background-color: #BCAD7F;
  color: #9E0C4F;
}
.logos .contentSlider .item a:hover .pdfIcon:after {
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/arrowPink.svg) no-repeat center;
}

.visualGallery {
  position: relative;
}
.visualGallery .tabsBtn {
  position: absolute;
  right: 7%;
  top: 20%;
}

.education .inner {
  background-color: #DDD2B1;
  display: flex;
}
.education .inner .left {
  width: 55%;
  padding: 120px;
}
.education .inner .left .title {
  font-size: 48px;
  color: #9E0C4F;
  display: block;
  margin-bottom: 50px;
}
.education .inner .right {
  width: 45%;
}
.education .inner .right img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.companies {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  /*.textContent p{overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 16;
      -webkit-box-orient: vertical;}*/
}
.companies .subNav {
  display: none;
}
.companies h2 {
  font-size: 40px;
  line-height: 1.2;
}
.companies > .left {
  position: fixed;
  top: 30%;
}
.companies > .left h3 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 45px;
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/downArrowPink.svg) no-repeat left center;
  padding-left: 20px;
}
.companies > .left .sidebarMenu li a {
  font-size: 24px;
  font-weight: bold;
  color: #363636;
  margin-bottom: 40px;
  padding-left: 20px;
  display: block;
}
.companies > .left .sidebarMenu li a:hover {
  color: #9E0C4F;
}
.companies > .left .sidebarMenu li a.selected {
  background: url(https://cdn.sinpas.com.tr/assets/images/icons/rightArrowPink.svg) no-repeat left center;
  color: #9E0C4F;
}
.companies > .right {
  width: 75%;
  margin-left: 25%;
}
.companies > .right .row {
  height: auto;
}
.companies > .right .row .col {
  position: relative;
}
.companies > .right .row .col.col-38 {
  width: 38%;
}
.companies > .right .row .col.col-62 {
  width: 62%;
}
.companies > .right .row .col .imgContent img {
  display: block;
  width: 100%;
}
.companies > .right .row .col .imgContent .inner {
  position: absolute;
  right: 0;
  bottom: 0px;
  background-color: #fff;
  height: 90px;
  width: 260px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.companies > .right .row .col .imgContent .inner img {
  width: auto;
  display: inline;
}
.companies > .right .row .col .imgContent .inner.smallBg {
  width: 130px !important;
}
.companies > .right .row .col .imgContent .inner.left {
  right: auto;
  left: 0;
}
.companies > .right .row .col .linkArea {
  position: absolute;
  bottom: 0;
  left: 0;
}
.companies > .right .row .col .linkArea a {
  float: left;
  line-height: 90px;
  position: relative;
  padding: 0 30px 0 120px;
  color: #9E0C4F;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
}
.companies > .right .row .col .linkArea a:before {
  content: "";
  position: absolute;
  background: #BCAD7F url(https://cdn.sinpas.com.tr/assets/images/icons/linkArrowPink.svg) no-repeat center;
  width: 90px;
  height: 90px;
  display: block;
  left: 0;
  top: 0;
  transition: 0.3s;
}
.companies > .right .row .col .linkArea a span {
  position: relative;
  z-index: 2;
}
.companies > .right .row .col .linkArea a:hover {
  color: #9E0C4F;
  padding: 0 90px 0 30px;
}
.companies > .right .row .col .linkArea a:hover:before {
  width: 100%;
  background-position: 85% center;
}
.companies > .right .row .col .linkArea.right {
  right: 0;
  left: auto;
}
.companies > .right .row .col .linkArea.right a {
  padding: 0 120px 0 30px;
}
.companies > .right .row .col .linkArea.right a:before {
  right: 0;
  left: auto;
}
.companies > .right .row .col .linkArea.right a:hover {
  padding: 0 120px 0 30px;
}
.companies > .right .scrollContent {
  height: 100%;
}

.fancybox-container {
  z-index: 99999 !important;
}

.publicationsWrapper {
  padding: 0 !important;
  width: 85%;
  height: 85%;
}
.publicationsWrapper .row .col {
  padding: 100px 0px;
}
.publicationsWrapper .row .col:nth-child(1) {
  width: 33%;
  background-color: #E9EEF0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.publicationsWrapper .row .col:nth-child(1) img {
  display: block;
  width: 250px;
  height: 375px;
}
.publicationsWrapper .row .col:nth-child(2) {
  width: 66%;
  padding-left: 100px;
  padding-right: 100px;
  overflow: auto;
  height: 100%;
}
.publicationsWrapper .row .col:nth-child(2) .title {
  font-weight: 400;
  font-size: 50px;
  color: #9E0C4F;
  display: block;
  margin-bottom: 40px;
}
.publicationsWrapper .row .col:nth-child(2) p {
  font-size: 18px;
}
.publicationsWrapper .row ::-webkit-scrollbar {
  width: 5px;
}
.publicationsWrapper .row ::-webkit-scrollbar-track {
  background: none;
}
.publicationsWrapper .row ::-webkit-scrollbar-thumb {
  background-color: #9E0C4F;
  border-radius: 10px;
}
.publicationsWrapper .fancybox-close-small {
  background: #9E0C4F;
}
.publicationsWrapper .fancybox-close-small svg {
  color: #fff;
}

.career-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-hover {
  position: relative;
  display: block;
  overflow: hidden;
}

.careerPage {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  justify-content: space-around;
  margin: 250px auto 80px;
}
.careerPage .careerPageLeft {
  width: 49%;
}
.careerPage .careerPageLeft a {
  display: block;
  position: relative;
}
.careerPage .careerPageLeft a .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.careerPage .careerPageLeft a .video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
}
.careerPage .careerPageLeft a .video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(158, 12, 79, 0.8);
  z-index: 1;
}
.careerPage .careerPageLeft a span {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 40px;
  display: inline-block;
  width: max-content;
  z-index: 2;
}
.careerPage .careerPageLeft a span strong {
  display: block;
  margin-bottom: 75px;
  font-size: 32px;
  font-weight: 500;
}
.careerPage .careerPageLeft a span span {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}
.careerPage .careerPageRight {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.careerPage .careerPageRight a {
  display: block;
  position: relative;
}
.careerPage .careerPageRight a img {
  width: 100%;
  height: 100%;
}
.careerPage .careerPageRight a .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.careerPage .careerPageRight a .video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
}
.careerPage .careerPageRight a .video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(158, 12, 79, 0.8);
  z-index: 1;
}
.careerPage .careerPageRight a span {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 40px;
  display: inline-block;
  width: max-content;
  z-index: 2;
}
.careerPage .careerPageRight a span strong {
  display: block;
  margin-bottom: 35px;
  font-size: 32px;
  font-weight: 500;
}
.careerPage .careerPageRight a span span {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}

.careerDetail {
  width: 95%;
  padding: 70px !important;
  max-width: 1640px !important;
  height: 90%;
  height: 90vh;
  max-height: 860px;
}
.careerDetail .inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.careerDetail .inner .left {
  width: 40%;
  height: 100%;
}
.careerDetail .inner .left h2 {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  padding: 0;
}
.careerDetail .inner .left h4 {
  color: #9E0C4F;
  font-size: 17px;
  font-weight: 600;
  padding: 15px 0;
}
.careerDetail .inner .left span {
  color: grey;
}
.careerDetail .inner .left .detailsBaslik img {
  max-width: 120px;
  height: auto !important;
}
.careerDetail .inner .triangleBtn {
  background: #9E0C4F;
  margin: 40px 0;
}
.careerDetail .inner .triangleBtn span {
  color: #fff;
}
.careerDetail .inner .tableContainer {
  background: #E9EEF0;
  padding: 40px;
}
.careerDetail .inner table td {
  font-size: 18px;
  padding-right: 11px;
  padding-bottom: 29px;
}
.careerDetail .inner .detailsButton a {
  color: #fff;
}
.careerDetail .inner .right {
  width: 60%;
  padding-left: 10%;
  padding-top: 100px;
  height: 100%;
}
.careerDetail .inner .right h2 {
  color: #9E0C4F;
  font-size: 30px;
  font-weight: normal;
  padding-bottom: 30px;
}
.careerDetail .inner .right p {
  margin-bottom: 40px;
}
.careerDetail .inner .right h3 {
  font-size: 23px;
  margin-bottom: 14px;
}
.careerDetail .inner .right ul li {
  list-style: circle;
}
.careerDetail .inner .right ul {
  padding-left: 22px;
}
.careerDetail .inner .right .detailsInfo {
  height: 100%;
}
.careerDetail .inner .right .detailsInfo .scrollContent {
  height: 100%;
}

/* Blog */
section#populer, #dvBlogList {
  width: 100%;
  max-width: 1290px;
  margin: auto;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
}
section#populer .box, #dvBlogList .box {
  width: 33.333%;
  margin: 0;
  padding: 20px;
}
section#populer .box:nth-child(4), #dvBlogList .box:nth-child(4) {
  clear: both;
}
section#populer:after, #dvBlogList:after {
  width: 100%;
  height: 0;
  clear: both;
  display: block;
  content: "";
}

.kariyerBlog {
  margin-top: 270px;
}

.kariyerBlog .companies h1 {
  width: 100%;
  max-width: 1290px;
  margin: auto;
  padding-bottom: 20px;
  font-size: 42px;
}

.pagList {
  max-width: 1290px;
  margin: 0 auto 60px;
}

/* Blog */
.cookie {
  border: 1px solid #BCAD7F;
  width: 28%;
  position: fixed;
  bottom: -1500px;
  right: 50px;
  background-color: #fff;
  z-index: 99;
  padding: 30px;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}
.cookie.active {
  bottom: 20px;
}
.cookie strong {
  font-size: 18px;
  color: #3e5554;
}
.cookie p {
  font-size: 13px;
  color: #3e5554;
  margin: 10px 0;
}
.cookie a.cookie-content {
  font-size: 13px;
  text-decoration: underline;
  color: #0213bf;
}
.cookie .btns {
  margin-top: 20px;
}
.cookie .btns .cookie-reject {
  padding: 5px 25px;
  background-color: #d8d8d8 !important;
  color: #262626 !important;
}
.cookie .btns .cookie-allow {
  padding: 5px 25px;
  background-color: #b27554 !important;
  color: white !important;
}

#cookie-content {
  z-index: 999999;
  width: 85%;
}
#cookie-content ul {
  margin: 20px 0 20px 20px;
}
#cookie-content ul li {
  list-style-type: disc;
}
#cookie-content ul li ul {
  margin: 10px 10px 10px;
}

@media screen and (max-width: 1680px) {
  h2 {
    padding-bottom: 10px;
    font-size: 40px;
  }
  h2.small {
    font-size: 36px;
  }

  .triangleBtn {
    padding: 10px 30px 10px 25px;
  }
  .triangleBtn span {
    font-size: 16px;
  }

  .btn {
    height: 40px;
    line-height: 40px !important;
    font-size: 16px;
  }

  p {
    font-size: 16px;
  }

  .careerPage .careerPageLeft a span strong {
    font-size: 30px !important;
  }
  .careerPage .careerPageLeft a span span {
    font-size: 24px !important;
  }
  .careerPage .careerPageRight a span strong {
    font-size: 30px !important;
  }
  .careerPage .careerPageRight a span span {
    font-size: 24px !important;
  }

  .tabs-content .tabs .galleryList .item a span {
    font-size: 16px;
  }

  .visualGallery .tabsBtn {
    top: 140px;
  }

  header .nav nav ul li.caption a {
    font-size: 22px;
    margin-bottom: 15px;
  }
  header .nav nav ul li.caption ul li a {
    font-size: 14px;
    padding: 7px 0;
  }
  header .nav .bottomNav .left a {
    font-size: 14px;
  }
  header .nav .bottomNav span {
    padding: 15px 0;
    font-size: 22px;
  }
  header .nav .bottomNav .social {
    padding-bottom: 15px;
  }
  header .tools .right {
    padding-left: 30px;
  }
  header .subNav {
    padding-left: 70px;
  }
  header .subNav strong {
    padding-bottom: 15px;
  }
  header .subNav ul li {
    margin-right: 10px;
  }
  header .subNav ul li a {
    padding: 5px 15px;
    font-size: 13px;
  }

  section.mainSlider .item .caption h2 {
    font-size: 40px;
  }
  section.mainSlider .item .caption h2 span {
    font-size: 60px;
  }
  section.mainSlider .item .caption p {
    margin: 25px 0;
  }
  section.mainSlider .owl-dots .owl-dot {
    font-size: 60px;
  }

  section.numbers .nBoxes .nBox span {
    padding: 15px;
    font-size: 16px;
  }
  section.numbers:after {
    bottom: -15%;
  }
  section.numbers .right {
    padding-top: 10%;
  }
  section.numbers .right .title h3 {
    font-size: 220px;
  }
  section.numbers .right .title h4 {
    font-size: 70px;
  }
  section.numbers .right .title.sector h4 {
    font-size: 70px;
  }
  section.numbers .right .title.employee h4 {
    font-size: 60px;
  }
  section.numbers .right p {
    font-size: 14px;
  }
  section.numbers.en .right .title h3 {
    font-size: 180px;
  }
  section.numbers.en .right .title h4 {
    font-size: 50px;
  }
  section.numbers.en .right .title.sector h4 {
    font-size: 50px;
  }
  section.numbers.en .right .title.employee h4 {
    font-size: 50px;
  }

  section.sectors .sBoxes .sBox h3 {
    bottom: 30px;
    left: 30px;
    font-size: 24px;
  }
  section.sectors .sBoxes .sBox .detail {
    padding: 30px 30px 30px 45px;
  }
  section.sectors .sBoxes .sBox .detail a {
    font-size: 18px;
    margin-bottom: 10px;
  }
  section.sectors .sBoxes .sBox p {
    padding: 30px;
  }

  section.ideas .ideasSlider .item h2 {
    font-size: 60px;
  }
  section.ideas .ideasSlider .item h2 small {
    font-size: 30px;
  }
  section.ideas .ideasSlider a.videoLink {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  section.ideas .ideasSlider a.videoLink:before {
    font-size: 30px;
  }

  section.history .historyYears {
    padding: 0;
  }
  section.history .historyContent .year {
    top: -65px;
  }
  section.history .historyContent svg text {
    font-size: 250px;
  }

  footer {
    background: #fff;
  }
  footer .left a {
    width: 80px;
  }
  footer .left span {
    font-size: 9px;
  }
  footer .nav a {
    font-size: 11px;
  }
  footer .social {
    padding-top: 55px;
  }
  footer .social span {
    font-size: 15px;
  }
  footer .social a {
    margin: 0 10px;
  }

  .subPage p {
    font-size: 15px;
  }
  .subPage p.s64 {
    padding: 50px 0;
    font-size: 36px;
  }

  .visionMission .inner {
    padding: 60px 90px 120px 70px;
  }

  .sliderArea .contentSlider .item a {
    padding: 25px;
  }
  .sliderArea .contentSlider .item a .img {
    margin-bottom: 25px;
  }
  .sliderArea .contentSlider .item a p {
    font-size: 13px;
  }

  .publications .content .pubblicationsSlider .item a {
    padding: 25px;
  }
  .publications .content .pubblicationsSlider .item a span {
    font-size: 18px;
  }
  .publications .content .publicationsBottom .row .col a {
    padding: 25px;
  }
  .publications .content .publicationsBottom .row .col a .title {
    font-size: 28px;
  }
  .publications .content .publicationsBottom .row .col a small {
    font-size: 15px;
  }

  .companies h2 {
    font-size: 30px;
  }
  .companies .left h3 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .companies .left .sidebarMenu li a {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .companies .right .row .col .imgContent .inner {
    height: 50px;
    width: 200px;
  }
  .companies .right .row .col .imgContent .inner img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
  }
  .companies .right .row .col .linkArea a {
    line-height: 50px;
    padding: 0 30px 0 60px;
  }
  .companies .right .row .col .linkArea a:before {
    width: 50px;
    height: 50px;
    background-size: 17px auto;
  }

  .education .inner .left {
    padding: 50px;
  }
  .education .inner .left .title {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .textContent.left {
    padding-right: 50px;
  }
  .textContent.right {
    padding-left: 60px;
  }

  .pressSlider .item a span {
    font-size: 16px;
  }

  .pressHead .selectArea select {
    padding: 5px 30px;
  }
  .pressHead .selectArea:after {
    height: 33px;
  }
}
@media screen and (max-width: 1540px) {
  .careerPage {
    width: 90%;
  }
  .careerPage .careerPageLeft a span strong {
    font-size: 27px !important;
  }
  .careerPage .careerPageLeft a span span {
    font-size: 22px !important;
  }
  .careerPage .careerPageRight a span strong {
    font-size: 27px !important;
  }
  .careerPage .careerPageRight a span span {
    font-size: 22px !important;
  }

  .pressSlider .item a {
    height: 250px;
  }

  .pressSlider.newsSlider .item a {
    height: 400px !important;
  }
  .pressSlider.newsSlider .item a img {
    height: 120px;
  }
  .pressSlider.newsSlider .item a span {
    -webkit-line-clamp: 3;
    min-height: 70px;
  }

  section.numbers .nBoxes.en .nBox span {
    font-size: 13px;
  }

  #sinpasInPressSlider.pressSlider.newsSlider .item a {
    height: 300px;
  }

  .tabs-content .tabs .galleryList .item a {
    height: 280px;
  }
  .tabs-content .tabs .galleryList .item a i img {
    height: 120px;
  }

  .salesOffice .sliderArea .contentSlider .item a {
    height: 340px;
  }
  .salesOffice .sliderArea .contentSlider .item a .btn {
    margin-top: 20px;
  }

  .logos .contentSlider .item a {
    height: 280px;
  }
  .logos .contentSlider .item a .img img {
    height: 80px;
    object-fit: contain;
  }
  .logos .contentSlider .item a .pdfIcon {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }

  .content.padded {
    padding-top: 5%;
  }

  section.numbers .content.padded {
    padding-top: 11%;
  }
  section.numbers:after {
    z-index: 0;
  }

  .careerDetail {
    padding: 35px !important;
  }
  .careerDetail .inner .left h2 {
    font-size: 24px;
  }
  .careerDetail .inner .left h4 {
    font-size: 14px;
  }
  .careerDetail .inner .triangleBtn {
    margin: 20px 0;
  }
  .careerDetail .inner .tableContainer {
    padding: 20px;
  }
  .careerDetail .inner table td {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .careerDetail .inner .detailsButton a {
    color: #fff;
  }
  .careerDetail .inner .right {
    padding-right: 30px;
  }
  .careerDetail .inner .right h2 {
    color: #9E0C4F;
    font-size: 30px;
    font-weight: normal;
    padding-bottom: 30px;
  }
  .careerDetail .inner .right p {
    margin-bottom: 40px;
  }
  .careerDetail .inner .right h3 {
    font-size: 23px;
    margin-bottom: 14px;
  }
  .careerDetail .inner .right ul li {
    list-style: circle;
  }
  .careerDetail .inner .right ul {
    padding-left: 22px;
  }
  .careerDetail .inner .right .detailsInfo {
    height: 100%;
  }
  .careerDetail .inner .right .detailsInfo .scrollContent {
    height: 100%;
  }

  .sliderArea.positions {
    margin-right: 0;
  }
  .sliderArea.positions #familySlider .item a {
    padding: 25px;
    height: 190px;
  }
  .sliderArea.positions #familySlider .item a img {
    height: 54px;
    width: auto !important;
  }

  .sliderArea.positions #divIsIlanlari .item a {
    padding: 30px;
  }
  .sliderArea.positions #divIsIlanlari .item a strong {
    font-size: 16px;
  }
}
@media screen and (max-width: 1380px) {
  .careerPage .careerPageLeft a span strong {
    font-size: 24px !important;
    margin-bottom: 55px !important;
  }
  .careerPage .careerPageLeft a span span {
    font-size: 19px !important;
  }
  .careerPage .careerPageRight a span strong {
    font-size: 24px !important;
  }
  .careerPage .careerPageRight a span span {
    font-size: 19px !important;
  }
}
@media screen and (max-width: 1050px) {
  .careerPage {
    flex-direction: column;
  }
  .careerPage .careerPageLeft {
    width: 100%;
  }
  .careerPage .careerPageLeft a span {
    padding: 0 20px 30px;
  }
  .careerPage .careerPageLeft a span strong {
    font-size: 20px !important;
  }
  .careerPage .careerPageLeft a span span {
    font-size: 16px !important;
  }
  .careerPage .careerPageRight {
    width: 100%;
  }
  .careerPage .careerPageRight a {
    margin-top: 10px;
  }
  .careerPage .careerPageRight a span {
    padding: 0 20px 30px;
  }
  .careerPage .careerPageRight a span strong {
    font-size: 20px !important;
  }
  .careerPage .careerPageRight a span span {
    font-size: 16px !important;
  }

  .cookie {
    width: 95%;
    right: 10px;
  }

  #cookie-content {
    width: 92%;
  }
}
@media screen and (max-width: 780px) {
  h2 {
    font-size: 34px;
  }

  .content.padded {
    padding: 30px 0 0;
  }

  p {
    font-size: 14px;
  }

  header:before {
    height: 110px;
  }
  header a.logo {
    width: 88px;
    padding-bottom: 70px;
  }
  header .tools {
    padding-top: 50px;
  }
  header .tools ul {
    display: none;
  }
  header .tools .right {
    padding-left: 0;
  }
  header .tools .right a {
    float: right;
    width: 50px;
    margin-bottom: 0;
  }
  header .tools .right a.menuLink span {
    float: right;
  }
  header .tools .right a i {
    float: right;
  }
  header.sticky a.logo {
    padding-bottom: 70px;
  }
  header .nav {
    padding-top: 120px;
  }
  header .nav nav {
    overflow: scroll;
  }
  header .nav nav ul {
    width: 100%;
    float: none;
  }
  header .nav nav ul ul {
    display: none;
  }
  header .nav nav ul li.caption {
    position: relative;
  }
  header .nav nav ul li.caption:before {
    content: "";
    position: absolute;
    right: 0;
    color: #fff;
    top: 5px;
    font-size: 20px;
  }
  header .nav nav ul.showOnMobile {
    display: block;
  }
  header .nav .bottomNav {
    position: relative;
    bottom: auto;
  }
  header .nav .bottomNav .left a {
    font-size: 12px;
  }
  header .nav .bottomNav .social {
    margin: 0;
    padding: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 15px;
  }
  header .subNav {
    display: none;
  }

  section.mainSlider {
    height: auto;
  }
  section.mainSlider .videoBg {
    height: auto;
    position: relative;
  }
  section.mainSlider .videoBg:after {
    display: block;
    width: 100%;
    content: "";
    background: linear-gradient(0deg, white 50%, rgba(255, 255, 255, 0) 100%);
    height: 50px;
    position: absolute;
    bottom: 0;
  }
  section.mainSlider video {
    width: 170%;
    height: auto;
    top: 0;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    position: relative;
  }
  section.mainSlider .item .caption {
    top: auto;
    position: relative;
  }
  section.mainSlider .item .caption h2 {
    font-size: 30px;
  }
  section.mainSlider .item .caption h2 span {
    font-size: 46px;
  }
  section.mainSlider .item .caption p {
    font-size: 12px;
  }
  section.mainSlider .active .item .caption {
    top: 40%;
  }

  section.sectors {
    height: auto;
  }
  section.sectors .sBoxes .sBox {
    width: 100%;
    padding-bottom: 64%;
  }
  section.sectors .sBoxes .sBox p {
    padding: 30px 0;
  }
  section.sectors .sBoxes .sBox span.img {
    height: 100% !important;
  }
  section.sectors .sBoxes .sBox:hover .detail {
    top: 0%;
    opacity: 0;
  }
  section.sectors .sBoxes .sBox:hover span.img {
    height: 100%;
  }
  section.sectors .sBoxes .sBox.bottom span.img {
    bottom: auto;
    top: 0;
  }
  section.sectors .sBoxes .sBox.bottom:hover .detail {
    top: 0%;
  }
  section.sectors .sBoxes .sBox.opened .detail {
    top: 100%;
    opacity: 1;
  }
  section.sectors .sBoxes .sBox.opened.bottom .detail {
    top: 100%;
  }

  section.numbers {
    height: auto;
  }
  section.numbers:after {
    background-size: auto 80%;
  }
  section.numbers .left {
    width: 100%;
    height: auto;
  }
  section.numbers .left h2 {
    padding-bottom: 20px;
  }
  section.numbers .left .clr {
    display: none;
  }
  section.numbers .left i {
    height: auto;
    padding-bottom: 33.333%;
  }
  section.numbers .right {
    width: 100%;
    padding: 0 0 30px;
  }
  section.numbers .right p {
    max-width: 100%;
  }
  section.numbers .right p.arrow {
    padding-left: 30px;
  }
  section.numbers .right p.arrow:before {
    left: 0;
  }
  section.numbers .right .title {
    padding-top: 20px;
  }
  section.numbers .right .title h3 {
    width: auto;
    font-size: 110px;
  }
  section.numbers .right .title h4 {
    width: auto;
    font-size: 42px;
    padding-top: 0;
  }
  section.numbers .right .title.sector h4 {
    font-size: 62px;
  }
  section.numbers .right .title.employee h4 {
    font-size: 40px;
  }
  section.numbers .nBoxes {
    display: none;
  }
  section.numbers.en .right .title h3 {
    font-size: 110px;
  }
  section.numbers.en .right .title h4 {
    font-size: 40px;
  }
  section.numbers.en .right .title.sector h4 {
    font-size: 40px;
  }
  section.numbers.en .right .title.employee h4 {
    font-size: 40px;
  }

  section.ideas {
    height: auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  section.ideas .ideasSlider {
    order: 1;
  }
  section.ideas .ideasSlider .item {
    padding: 30px 30px 60px 30px;
  }
  section.ideas .ideasSlider .item .caption {
    width: 50%;
  }
  section.ideas .ideasSlider .item h2 {
    font-size: 23px;
    padding: 0;
  }
  section.ideas .ideasSlider .item h2 small {
    font-size: 14px;
  }
  section.ideas .ideasSlider .item p {
    font-size: 12px;
  }
  section.ideas .ideasSlider a.videoLink {
    width: 50px;
    height: 50px;
    line-height: 50px;
    right: 25%;
    margin-right: -25px;
    top: 50%;
  }
  section.ideas .ideasSlider a.videoLink:before {
    font-size: 20px;
  }
  section.ideas .ideasSlider .owl-dots {
    left: 30px;
  }
  section.ideas .ideasSlider .owl-dots .owl-dot {
    margin-right: 5px;
  }
  section.ideas .ideasSlider .owl-nav {
    left: auto;
    right: 30px;
    bottom: 0;
  }
  section.ideas .ideasBack {
    order: 2;
    width: 50%;
    /*a.videoLink{display: block; width: 80px; height: 80px; line-height: 80px; top:50%; left:50%; transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%);-moz-transform: translate(-50%,-50%);
        &:before{font-size: 30px;}
    }*/
  }

  section.history .historyYears {
    width: 25%;
    padding-bottom: 30px;
  }
  section.history .historyYears:before {
    top: 19px;
    left: auto;
    right: 0;
    width: 25px;
  }
  section.history .historyYears .historyYearsInner ul li {
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  section.history .historyContent {
    width: 75%;
  }
  section.history .historyContent .year {
    left: 0;
    position: relative;
    height: auto;
    font-size: inherit;
    top: 0;
  }
  section.history .historyContent svg {
    width: 100%;
    height: 200px;
  }
  section.history .historyContent svg text {
    font-size: 200px;
    letter-spacing: 0px;
    line-height: 1;
    transform: translateY(-150px);
  }
  section.history .historyContent .item {
    padding-left: 0;
  }
  section.history .historyContent .item p {
    margin-top: 40px;
    font-size: 14px !important;
  }
  section.history .historyContent .item p.arrow {
    padding-left: 25px;
  }
  section.history .historyContent .item p.arrow:before {
    left: 0;
  }

  footer .left {
    width: 100%;
    justify-content: space-between;
  }
  footer .left span {
    text-align: right;
  }
  footer .nav {
    width: 100%;
    padding: 30px 0;
    text-align: center;
  }
  footer .social {
    width: 100%;
    border-left: none;
    padding: 30px 0 0 0;
    justify-content: space-between;
  }
  footer .social span {
    display: block;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
  }
  footer .social a {
    font-size: 24px;
  }

  .subPage {
    padding-top: 90px;
  }
  .subPage p.s64 {
    font-size: 20px;
    line-height: normal;
    padding: 30px 0;
  }

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

  .dFlex p:first-child {
    margin-right: 0;
  }

  .pb100, .pb200 {
    padding-bottom: 30px;
  }

  .textContent.left {
    padding-right: 0px;
  }
  .textContent.right {
    padding-left: 0;
  }

  .imgContent {
    padding-top: 30px;
  }

  .col-62 .imgContent {
    padding-top: 0;
  }

  .visionMission .inner {
    padding: 30px;
  }
  .visionMission .inner span.title {
    margin-bottom: 5px;
  }
  .visionMission .inner .row .col {
    padding-right: 0;
    padding-bottom: 15px;
  }
  .visionMission .inner .link {
    position: relative;
    width: 100%;
    height: 50px;
  }
  .visionMission .inner .link a {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sliderArea {
    margin-right: 0;
    padding: 60px 0 0;
  }
  .sliderArea .contentSlider .owl-nav {
    top: -60px;
    right: 30px;
  }

  .publications {
    height: auto;
  }
  .publications .content.padded {
    padding-top: 30px;
  }

  .publications .content .pubblicationsSlider .item a {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: flex-start;
  }
  .publications .content .pubblicationsSlider .item a i.img {
    width: 100%;
    margin: 0;
  }
  .publications .content .pubblicationsSlider .item a i.img img {
    width: 100%;
    display: block;
  }
  .publications .content .pubblicationsSlider .item a span {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 11px;
    text-align: center;
    padding-top: 10px;
  }
  .publications .content .pubblicationsSlider .item a i.arrow {
    width: 30px;
    height: 30px;
    right: -1px;
    bottom: -1px;
  }
  .publications .content .pubblicationsSlider .owl-nav {
    right: 0;
    top: -60px;
  }
  .publications .content .pubblicationsSlider .owl-dots {
    top: -45px;
    left: 0;
    width: auto;
    right: auto;
  }

  .publicationsWrapper .row .col {
    padding: 80px 0 25px;
  }
  .publicationsWrapper .row .col:nth-child(1) img {
    width: auto;
    height: 200px;
  }
  .publicationsWrapper .row .col:nth-child(2) {
    padding: 25px;
  }
  .publicationsWrapper .row .col:nth-child(2) .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .publicationsWrapper .row .col:nth-child(2) p {
    font-size: 15px;
  }

  .pressSlider .item {
    margin-right: 0;
  }

  .pressSlider.newsSlider .item a img {
    height: 160px;
  }

  .pressHead {
    flex-wrap: wrap;
  }
  .pressHead h2 {
    width: 100%;
  }
  .pressHead .selectArea {
    max-width: none;
    margin: 0 0 20px 0;
  }

  .newsArea .content.padded {
    padding-top: 30px;
  }

  .visualGallery .tabsBtn {
    top: auto;
    position: relative;
    right: 0;
  }

  .tabs-content .tabs .galleryList .col {
    width: calc(50% - 20px);
  }
  .tabs-content .tabs .galleryList .col .item a {
    height: auto;
    min-height: 200px;
  }
  .tabs-content .tabs .galleryList .col .item a span {
    font-size: 14px;
  }
  .tabs-content .tabs .galleryList .col .item a small {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .companies .left {
    width: 100%;
    position: relative;
  }
  .companies .left ul {
    display: none;
  }
  .companies .right {
    width: 100%;
    margin-left: 0;
  }
  .companies .right .scrollContent {
    height: auto;
    padding: 30px 0 60px;
  }
  .companies .right .col-62 {
    order: 1;
  }
  .companies .right .col-38 {
    order: 2;
  }
  .companies .subNav {
    width: 100%;
    margin-bottom: 30px;
    display: block;
  }
  .companies .subNav strong {
    display: block;
    width: 100%;
    padding: 5px;
    background: #9E0C4F;
    color: #fff;
    position: relative;
  }
  .companies .subNav strong:before {
    background: url(https://cdn.sinpas.com.tr/assets/images/icons/downArrow.svg) no-repeat left center;
    display: block;
    content: "";
    height: 100%;
    width: 20px;
    position: absolute;
    top: 0;
    right: 0;
    font-weight: normal;
  }
  .companies .subNav ul {
    display: none;
    width: 100%;
    border: 1px solid #9E0C4F;
  }
  .companies .subNav ul li {
    display: block;
    width: 100%;
    padding: 3px 10px;
  }
  .companies .subNav ul li a {
    color: #9E0C4F;
  }
  .companies.blog .subNav {
    margin: 30px auto 0;
    width: 86%;
  }

  .education .inner {
    flex-wrap: wrap;
  }
  .education .inner .left {
    width: 100%;
    padding: 30px;
  }
  .education .inner .right {
    width: 100%;
  }

  .imgContent.left {
    padding-right: 0;
  }

  .contactForm {
    padding: 30px;
  }
  .contactForm .row input {
    width: 100%;
  }
  .contactForm .row select {
    width: 100%;
    margin: 0 0 2% 0;
  }
  .contactForm .row .select {
    width: 100%;
  }
  .contactForm .row textarea {
    width: 100%;
    margin-left: 0;
  }

  .eBultenEthics span.title.pink {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .eBultenEthics .row .col {
    padding: 30px;
  }

  .imgContent iframe {
    height: 300px;
  }

  .contact p.mb80 {
    margin-bottom: 20px;
  }

  .pressSlider .item {
    width: 100%;
  }
  .pressSlider .item a {
    margin-bottom: 30px;
  }

  .tabs-content .tabs .galleryList {
    width: 100%;
    margin-left: 0;
  }
  .tabs-content .tabs .galleryList .item {
    width: 100%;
  }

  .pagList a {
    margin: 2px;
  }

  .companies > .right .row .col .imgContent .inner {
    bottom: 0;
  }

  .companies > .right .row .col .imgContent .inner img {
    object-fit: contain;
    width: auto;
    height: auto;
  }

  .companies > .right .row .col .imgContent img {
    object-fit: cover;
  }

  .sliderArea.positions .contentSlider .item a {
    height: 200px;
  }

  .careerDetail .inner .left {
    width: 100%;
    height: auto;
  }
  .careerDetail .inner .right {
    width: 100%;
    padding: 20px 0 60px 0;
    height: auto;
  }

  .subPage #slider, .subPage #blogList, .subPage #blogDetay {
    padding-top: 0 !important;
  }

  section#populer .box, #dvBlogList .box {
    width: 100%;
  }
  section#populer .box a, #dvBlogList .box a {
    display: block;
    width: 100%;
  }

  .kariyerBlog {
    margin-top: 60px;
  }

  .kariyerBlog .companies h1 {
    max-width: 100%;
    padding: 0 7%;
    font-size: 30px;
  }

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

  .blogDetayContainer {
    width: 100% !important;
    padding: 30px 7% !important;
  }

  .blogRow {
    width: 100% !important;
    float: none !important;
  }

  .blogContainer {
    width: 100% !important;
  }

  .blogDetayBanner {
    margin: 20px 0;
  }
  .blogDetayBanner h1 {
    width: 100% !important;
    padding: 0 7%;
    font-size: 28px !important;
  }

  .blogSlider .swiper-slide h2 {
    font-size: 28px !important;
    padding: 0 25%;
  }

  .blogDetayContainer {
    margin-top: 0 !important;
  }
  .blogDetayContainer .comeBack {
    top: 0 !important;
  }
  .blogDetayContainer h1 {
    font-size: 23px !important;
    padding-bottom: 20px !important;
    margin-top: 30px !important;
  }

  .box.masonry-brick {
    width: 100% !important;
    margin: 15px 0 !important;
    padding: 0 7% !important;
  }

  section#populer .box, #dvBlogList .box {
    padding: 20px 7%;
  }
}
@media screen and (max-width: 1290px) {
  .ethics h2 {
    text-align: left !important;
    padding-left: 200px;
  }
}
@media screen and (max-width: 480px) {
  a.arrowBtn {
    width: 100%;
  }
}
@media screen and (max-height: 7230px) {
  section.numbers .right #nSlider {
    z-index: 3;
  }
}