@charset "UTF-8";
@font-face {
  font-family: "regular";
  src: url("/Content/assets/css/fonts/Nacelle-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "semibold";
  src: url("/Content/assets/css/fonts/Nacelle-SemiBold.otf");
  font-weight: 500;
}
/* CSS Document */
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #fff url(../images/bg.jpg) no-repeat top center;
  overflow-x: hidden;
}
body.fancybox-active {
  height: 100%;
}
body.homePage {
  background-color: #f7f7f7;
}

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: "regular";
}

*, *: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%;
  padding: 0px 100px 0 170px;
}
section.h100 {
  height: 100%;
  height: 100vh;
}
section.p0 {
  padding-left: 0;
  padding-right: 0;
}

.content {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 100%;
  margin: auto;
  padding: 0;
}
.content:after {
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  content: "";
}

.breadCrumbArea {
  width: 30%;
  border-bottom: 1px solid rgba(128, 128, 128, 0.3);
  padding-bottom: 10px;
  padding-left: 70px;
}
.breadCrumbArea.w100 {
  width: calc(100% - 100px);
  padding-top: 280px;
}
.breadCrumbArea .breadCrumb a {
  font-size: 14px;
  position: relative;
  color: #000;
  padding-left: 10px;
  padding-right: 10px;
}
.breadCrumbArea .breadCrumb a:first-child {
  padding-left: 0;
}
.breadCrumbArea .breadCrumb a:first-child::before {
  display: none;
}
.breadCrumbArea .breadCrumb a:before {
  content: "";
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #636569;
  position: absolute;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  transform: translateY(-50%);
}

.arrowBtn {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  position: relative;
  padding-right: 15px;
  padding-top: 10px;
  display: inline-block;
}
.arrowBtn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 1;
  background-color: #9E9E9E;
  width: 100%;
}
.arrowBtn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 2;
  background-color: #6A288A;
  width: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.arrowBtn:hover {
  color: #6A288A;
}
.arrowBtn:hover:after {
  width: 100%;
}

.btn {
  display: inline-block;
  background: #6A288A;
  border-radius: 36px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  padding: 10px 36px;
}
.btn span {
  font-weight: 500;
  font-size: 19px;
  color: #fff;
}

/* Forms */
.formArea input, .formArea textarea, .formArea button {
  width: 100%;
  padding: 15px 25px;
  border: none;
  border: 1px solid #8B97B1;
  resize: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  background: none !important;
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.34);
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
}
.formArea input:focus, .formArea textarea:focus, .formArea button:focus {
  border: 1px solid #6A288A;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #6A288A;
}
.formArea input::placeholder, .formArea textarea::placeholder, .formArea button::placeholder {
  padding-left: 0;
  color: rgba(0, 0, 0, 0.34);
}
.formArea label {
  color: #5A7184;
  font-size: 16px;
  font-family: semiBold;
  margin-bottom: 12px;
  display: block;
}
.formArea textarea {
  height: 150px;
}
.formArea button {
  background: none;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 18px;
  display: block;
  width: 70% !important;
  padding: 0;
  text-align: left;
  color: #000;
  float: right;
}
.formArea .row {
  justify-content: space-between;
  margin-bottom: 35px;
}
.formArea .row .col {
  margin-bottom: 35px;
}
.formArea .row .col.col-4 {
  width: 47%;
  position: relative;
}
.formArea .row .col.col-6 {
  width: 70%;
}
.formArea .row .col.col-2 {
  width: 30%;
}
.formArea .row .col.col-8 {
  width: 100%;
  position: relative;
}
.formArea .row.flexEnd {
  justify-content: flex-end;
}
.formArea .captcha {
  position: relative;
}
.formArea .captcha img {
  position: absolute;
  left: 0;
  top: 30%;
}
.formArea .captcha input {
  padding-left: 170px;
}
.formArea .kvkk {
  margin: 15px 0px 0px 0px;
}
.formArea .kvkk:after {
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  content: "";
}
.formArea .fileInput {
  position: relative;
}
.formArea .fileInput span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(128, 128, 128, 0.34);
  padding: 15px 20px 0px 60px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.34);
  line-height: 30px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
}
.formArea .fileInput span:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  color: #6A288A;
  font-weight: normal;
}
.formArea .fileInput input[type=file] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.formArea .uploadFile {
  position: relative;
  height: 100%;
  cursor: pointer;
}
.formArea .uploadFile label {
  width: 100%;
  height: 100%;
  display: block;
  padding: 20px 0px;
  color: #151D20;
  font-size: 16px;
  font-weight: 300;
}
.formArea .uploadFile label em {
  float: right;
  background: url(../images/icons/download.svg) no-repeat left center;
  padding-left: 25px;
  font-style: normal;
}
.formArea .uploadFile input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.formArea input[type=checkbox] {
  display: none;
  appearance: none;
}
.formArea input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  color: #8D98A1;
  font-weight: 300;
  line-height: 1.3;
  display: inline-block;
  cursor: default;
}
.formArea input[type=checkbox] + label a {
  color: #8D98A1;
  font-weight: bold;
}
.formArea input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #6A288A;
  position: absolute;
  top: 50%;
  left: 0px;
  opacity: 1;
  transition: all 0.3s;
  transform: translateY(-50%);
}
.formArea input[type=checkbox] + label:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #6A288A;
  position: absolute;
  top: 50%;
  left: 5px;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(-50%);
}
.formArea input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* Forms*/
/*
.btn{color:#fff; font-size:18px; font-weight:600; padding: 0 35px; background:$blue; @include rounded(24px); display: block; max-width: 200px;
  span{display: block; line-height: 48px; position: relative;
    &:before{display: block; content: ""; width: 18px; height: 18px; background: url(../images/icons/btnArrow.svg) no-repeat center; position: absolute; right:0; top:50%; margin-top: -9px; @include easing(.3s);}
  }
  &:hover{
    span:before{transform: rotate(45deg); -webkit-transform: rotate(45deg);-moz-transform: rotate(45deg); right:-10px;}
  }
  //FATİH
  &.center{margin: auto;}

}

*/
a.scroll {
  position: absolute;
  bottom: 80px;
  height: 88px;
  width: 20px;
  background: url(../images/icons/arrow-scroll.svg) no-repeat bottom center;
  z-index: 2;
  right: calc((100% - 1200px) / 2);
}
a.scroll:before {
  display: block;
  width: 100%;
  background: url(../images/icons/arrow-scroll-over.svg) no-repeat top center;
  content: "";
  top: 0;
  left: 0;
  height: 0;
  animation: scrollAnim ease-in-out 2s infinite alternate;
}
a.scroll span {
  font-size: 15px;
  font-weight: 200;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  position: absolute;
  left: -20px;
  top: -50px;
}

section {
  padding: 65px 60px;
  position: relative;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.row .col {
  width: 100%;
}
.row .col.col-1 {
  width: 1%;
}
.row .col.col-2 {
  width: 2%;
}
.row .col.col-3 {
  width: 3%;
}
.row .col.col-4 {
  width: 4%;
}
.row .col.col-5 {
  width: 5%;
}
.row .col.col-6 {
  width: 6%;
}
.row .col.col-7 {
  width: 7%;
}
.row .col.col-8 {
  width: 8%;
}
.row .col.col-9 {
  width: 9%;
}
.row .col.col-10 {
  width: 10%;
}
.row .col.col-11 {
  width: 11%;
}
.row .col.col-12 {
  width: 12%;
}
.row .col.col-13 {
  width: 13%;
}
.row .col.col-14 {
  width: 14%;
}
.row .col.col-15 {
  width: 15%;
}
.row .col.col-16 {
  width: 16%;
}
.row .col.col-17 {
  width: 17%;
}
.row .col.col-18 {
  width: 18%;
}
.row .col.col-19 {
  width: 19%;
}
.row .col.col-20 {
  width: 20%;
}
.row .col.col-21 {
  width: 21%;
}
.row .col.col-22 {
  width: 22%;
}
.row .col.col-23 {
  width: 23%;
}
.row .col.col-24 {
  width: 24%;
}
.row .col.col-25 {
  width: 25%;
}
.row .col.col-26 {
  width: 26%;
}
.row .col.col-27 {
  width: 27%;
}
.row .col.col-28 {
  width: 28%;
}
.row .col.col-29 {
  width: 29%;
}
.row .col.col-30 {
  width: 30%;
}
.row .col.col-31 {
  width: 31%;
}
.row .col.col-32 {
  width: 32%;
}
.row .col.col-33 {
  width: 33%;
}
.row .col.col-34 {
  width: 34%;
}
.row .col.col-35 {
  width: 35%;
}
.row .col.col-36 {
  width: 36%;
}
.row .col.col-37 {
  width: 37%;
}
.row .col.col-38 {
  width: 38%;
}
.row .col.col-39 {
  width: 39%;
}
.row .col.col-40 {
  width: 40%;
}
.row .col.col-41 {
  width: 41%;
}
.row .col.col-42 {
  width: 42%;
}
.row .col.col-43 {
  width: 43%;
}
.row .col.col-44 {
  width: 44%;
}
.row .col.col-45 {
  width: 45%;
}
.row .col.col-46 {
  width: 46%;
}
.row .col.col-47 {
  width: 47%;
}
.row .col.col-48 {
  width: 48%;
}
.row .col.col-49 {
  width: 49%;
}
.row .col.col-50 {
  width: 50%;
}
.row .col.col-51 {
  width: 51%;
}
.row .col.col-52 {
  width: 52%;
}
.row .col.col-53 {
  width: 53%;
}
.row .col.col-54 {
  width: 54%;
}
.row .col.col-55 {
  width: 55%;
}
.row .col.col-56 {
  width: 56%;
}
.row .col.col-57 {
  width: 57%;
}
.row .col.col-58 {
  width: 58%;
}
.row .col.col-59 {
  width: 59%;
}
.row .col.col-60 {
  width: 60%;
}
.row .col.col-61 {
  width: 61%;
}
.row .col.col-62 {
  width: 62%;
}
.row .col.col-63 {
  width: 63%;
}
.row .col.col-64 {
  width: 64%;
}
.row .col.col-65 {
  width: 65%;
}
.row .col.col-66 {
  width: 66%;
}
.row .col.col-67 {
  width: 67%;
}
.row .col.col-68 {
  width: 68%;
}
.row .col.col-69 {
  width: 69%;
}
.row .col.col-70 {
  width: 70%;
}
.row .col.col-71 {
  width: 71%;
}
.row .col.col-72 {
  width: 72%;
}
.row .col.col-73 {
  width: 73%;
}
.row .col.col-74 {
  width: 74%;
}
.row .col.col-75 {
  width: 75%;
}
.row .col.col-76 {
  width: 76%;
}
.row .col.col-77 {
  width: 77%;
}
.row .col.col-78 {
  width: 78%;
}
.row .col.col-79 {
  width: 79%;
}
.row .col.col-80 {
  width: 80%;
}
.row .col.col-81 {
  width: 81%;
}
.row .col.col-82 {
  width: 82%;
}
.row .col.col-83 {
  width: 83%;
}
.row .col.col-84 {
  width: 84%;
}
.row .col.col-85 {
  width: 85%;
}
.row .col.col-86 {
  width: 86%;
}
.row .col.col-87 {
  width: 87%;
}
.row .col.col-88 {
  width: 88%;
}
.row .col.col-89 {
  width: 89%;
}
.row .col.col-90 {
  width: 90%;
}
.row .col.col-91 {
  width: 91%;
}
.row .col.col-92 {
  width: 92%;
}
.row .col.col-93 {
  width: 93%;
}
.row .col.col-94 {
  width: 94%;
}
.row .col.col-95 {
  width: 95%;
}
.row .col.col-96 {
  width: 96%;
}
.row .col.col-97 {
  width: 97%;
}
.row .col.col-98 {
  width: 98%;
}
.row .col.col-99 {
  width: 99%;
}
.row .col.col-100 {
  width: 100%;
}
.row .col.col-101 {
  width: 101%;
}
.row .col.col-102 {
  width: 102%;
}
.row .col.col-103 {
  width: 103%;
}
.row .col.col-104 {
  width: 104%;
}
.row .col.col-105 {
  width: 105%;
}
.row .col.col-106 {
  width: 106%;
}
.row .col.col-107 {
  width: 107%;
}
.row .col.col-108 {
  width: 108%;
}
.row .col.col-109 {
  width: 109%;
}
.row .col.col-110 {
  width: 110%;
}
.row .col.col-111 {
  width: 111%;
}
.row .col.col-112 {
  width: 112%;
}
.row .col.col-113 {
  width: 113%;
}
.row .col.col-114 {
  width: 114%;
}
.row .col.col-115 {
  width: 115%;
}
.row .col.col-116 {
  width: 116%;
}
.row .col.col-117 {
  width: 117%;
}
.row .col.col-118 {
  width: 118%;
}
.row .col.col-119 {
  width: 119%;
}
.row .col.col-120 {
  width: 120%;
}
.row .col.col-121 {
  width: 121%;
}
.row .col.col-122 {
  width: 122%;
}
.row .col.col-123 {
  width: 123%;
}
.row .col.col-124 {
  width: 124%;
}
.row .col.col-125 {
  width: 125%;
}
.row .col.col-126 {
  width: 126%;
}
.row .col.col-127 {
  width: 127%;
}
.row .col.col-128 {
  width: 128%;
}
.row .col.col-129 {
  width: 129%;
}
.row .col.col-130 {
  width: 130%;
}
.row .col.col-131 {
  width: 131%;
}
.row .col.col-132 {
  width: 132%;
}
.row .col.col-133 {
  width: 133%;
}
.row .col.col-134 {
  width: 134%;
}
.row .col.col-135 {
  width: 135%;
}
.row .col.col-136 {
  width: 136%;
}
.row .col.col-137 {
  width: 137%;
}
.row .col.col-138 {
  width: 138%;
}
.row .col.col-139 {
  width: 139%;
}
.row .col.col-140 {
  width: 140%;
}
.row .col.col-141 {
  width: 141%;
}
.row .col.col-142 {
  width: 142%;
}
.row .col.col-143 {
  width: 143%;
}
.row .col.col-144 {
  width: 144%;
}
.row .col.col-145 {
  width: 145%;
}
.row .col.col-146 {
  width: 146%;
}
.row .col.col-147 {
  width: 147%;
}
.row .col.col-148 {
  width: 148%;
}
.row .col.col-149 {
  width: 149%;
}
.row .col.col-150 {
  width: 150%;
}
.row .col.col-151 {
  width: 151%;
}
.row .col.col-152 {
  width: 152%;
}
.row .col.col-153 {
  width: 153%;
}
.row .col.col-154 {
  width: 154%;
}
.row .col.col-155 {
  width: 155%;
}
.row .col.col-156 {
  width: 156%;
}
.row .col.col-157 {
  width: 157%;
}
.row .col.col-158 {
  width: 158%;
}
.row .col.col-159 {
  width: 159%;
}
.row .col.col-160 {
  width: 160%;
}
.row .col.col-161 {
  width: 161%;
}
.row .col.col-162 {
  width: 162%;
}
.row .col.col-163 {
  width: 163%;
}
.row .col.col-164 {
  width: 164%;
}
.row .col.col-165 {
  width: 165%;
}
.row .col.col-166 {
  width: 166%;
}
.row .col.col-167 {
  width: 167%;
}
.row .col.col-168 {
  width: 168%;
}
.row .col.col-169 {
  width: 169%;
}
.row .col.col-170 {
  width: 170%;
}
.row .col.col-171 {
  width: 171%;
}
.row .col.col-172 {
  width: 172%;
}
.row .col.col-173 {
  width: 173%;
}
.row .col.col-174 {
  width: 174%;
}
.row .col.col-175 {
  width: 175%;
}
.row .col.col-176 {
  width: 176%;
}
.row .col.col-177 {
  width: 177%;
}
.row .col.col-178 {
  width: 178%;
}
.row .col.col-179 {
  width: 179%;
}
.row .col.col-180 {
  width: 180%;
}
.row .col.col-181 {
  width: 181%;
}
.row .col.col-182 {
  width: 182%;
}
.row .col.col-183 {
  width: 183%;
}
.row .col.col-184 {
  width: 184%;
}
.row .col.col-185 {
  width: 185%;
}
.row .col.col-186 {
  width: 186%;
}
.row .col.col-187 {
  width: 187%;
}
.row .col.col-188 {
  width: 188%;
}
.row .col.col-189 {
  width: 189%;
}
.row .col.col-190 {
  width: 190%;
}
.row .col.col-191 {
  width: 191%;
}
.row .col.col-192 {
  width: 192%;
}
.row .col.col-193 {
  width: 193%;
}
.row .col.col-194 {
  width: 194%;
}
.row .col.col-195 {
  width: 195%;
}
.row .col.col-196 {
  width: 196%;
}
.row .col.col-197 {
  width: 197%;
}
.row .col.col-198 {
  width: 198%;
}
.row .col.col-199 {
  width: 199%;
}
.row .col.col-200 {
  width: 200%;
}
.row .col.col-201 {
  width: 201%;
}
.row .col.col-202 {
  width: 202%;
}
.row .col.col-203 {
  width: 203%;
}
.row .col.col-204 {
  width: 204%;
}
.row .col.col-205 {
  width: 205%;
}
.row .col.col-206 {
  width: 206%;
}
.row .col.col-207 {
  width: 207%;
}
.row .col.col-208 {
  width: 208%;
}
.row .col.col-209 {
  width: 209%;
}
.row .col.col-210 {
  width: 210%;
}
.row .col.col-211 {
  width: 211%;
}
.row .col.col-212 {
  width: 212%;
}
.row .col.col-213 {
  width: 213%;
}
.row .col.col-214 {
  width: 214%;
}
.row .col.col-215 {
  width: 215%;
}
.row .col.col-216 {
  width: 216%;
}
.row .col.col-217 {
  width: 217%;
}
.row .col.col-218 {
  width: 218%;
}
.row .col.col-219 {
  width: 219%;
}
.row .col.col-220 {
  width: 220%;
}
.row .col.col-221 {
  width: 221%;
}
.row .col.col-222 {
  width: 222%;
}
.row .col.col-223 {
  width: 223%;
}
.row .col.col-224 {
  width: 224%;
}
.row .col.col-225 {
  width: 225%;
}
.row .col.col-226 {
  width: 226%;
}
.row .col.col-227 {
  width: 227%;
}
.row .col.col-228 {
  width: 228%;
}
.row .col.col-229 {
  width: 229%;
}
.row .col.col-230 {
  width: 230%;
}
.row .col.col-231 {
  width: 231%;
}
.row .col.col-232 {
  width: 232%;
}
.row .col.col-233 {
  width: 233%;
}
.row .col.col-234 {
  width: 234%;
}
.row .col.col-235 {
  width: 235%;
}
.row .col.col-236 {
  width: 236%;
}
.row .col.col-237 {
  width: 237%;
}
.row .col.col-238 {
  width: 238%;
}
.row .col.col-239 {
  width: 239%;
}
.row .col.col-240 {
  width: 240%;
}
.row .col.col-241 {
  width: 241%;
}
.row .col.col-242 {
  width: 242%;
}
.row .col.col-243 {
  width: 243%;
}
.row .col.col-244 {
  width: 244%;
}
.row .col.col-245 {
  width: 245%;
}
.row .col.col-246 {
  width: 246%;
}
.row .col.col-247 {
  width: 247%;
}
.row .col.col-248 {
  width: 248%;
}
.row .col.col-249 {
  width: 249%;
}
.row .col.col-250 {
  width: 250%;
}
.row .col.col-251 {
  width: 251%;
}
.row .col.col-252 {
  width: 252%;
}
.row .col.col-253 {
  width: 253%;
}
.row .col.col-254 {
  width: 254%;
}
.row .col.col-255 {
  width: 255%;
}
.row .col.col-256 {
  width: 256%;
}
.row .col.col-257 {
  width: 257%;
}
.row .col.col-258 {
  width: 258%;
}
.row .col.col-259 {
  width: 259%;
}
.row .col.col-260 {
  width: 260%;
}
.row .col.col-261 {
  width: 261%;
}
.row .col.col-262 {
  width: 262%;
}
.row .col.col-263 {
  width: 263%;
}
.row .col.col-264 {
  width: 264%;
}
.row .col.col-265 {
  width: 265%;
}
.row .col.col-266 {
  width: 266%;
}
.row .col.col-267 {
  width: 267%;
}
.row .col.col-268 {
  width: 268%;
}
.row .col.col-269 {
  width: 269%;
}
.row .col.col-270 {
  width: 270%;
}
.row .col.col-271 {
  width: 271%;
}
.row .col.col-272 {
  width: 272%;
}
.row .col.col-273 {
  width: 273%;
}
.row .col.col-274 {
  width: 274%;
}
.row .col.col-275 {
  width: 275%;
}
.row .col.col-276 {
  width: 276%;
}
.row .col.col-277 {
  width: 277%;
}
.row .col.col-278 {
  width: 278%;
}
.row .col.col-279 {
  width: 279%;
}
.row .col.col-280 {
  width: 280%;
}
.row .col.col-281 {
  width: 281%;
}
.row .col.col-282 {
  width: 282%;
}
.row .col.col-283 {
  width: 283%;
}
.row .col.col-284 {
  width: 284%;
}
.row .col.col-285 {
  width: 285%;
}
.row .col.col-286 {
  width: 286%;
}
.row .col.col-287 {
  width: 287%;
}
.row .col.col-288 {
  width: 288%;
}
.row .col.col-289 {
  width: 289%;
}
.row .col.col-290 {
  width: 290%;
}
.row .col.col-291 {
  width: 291%;
}
.row .col.col-292 {
  width: 292%;
}
.row .col.col-293 {
  width: 293%;
}
.row .col.col-294 {
  width: 294%;
}
.row .col.col-295 {
  width: 295%;
}
.row .col.col-296 {
  width: 296%;
}
.row .col.col-297 {
  width: 297%;
}
.row .col.col-298 {
  width: 298%;
}
.row .col.col-299 {
  width: 299%;
}
.row .col.col-300 {
  width: 300%;
}
.row .col.col-301 {
  width: 301%;
}
.row .col.col-302 {
  width: 302%;
}
.row .col.col-303 {
  width: 303%;
}
.row .col.col-304 {
  width: 304%;
}
.row .col.col-305 {
  width: 305%;
}
.row .col.col-306 {
  width: 306%;
}
.row .col.col-307 {
  width: 307%;
}
.row .col.col-308 {
  width: 308%;
}
.row .col.col-309 {
  width: 309%;
}
.row .col.col-310 {
  width: 310%;
}
.row .col.col-311 {
  width: 311%;
}
.row .col.col-312 {
  width: 312%;
}
.row .col.col-313 {
  width: 313%;
}
.row .col.col-314 {
  width: 314%;
}
.row .col.col-315 {
  width: 315%;
}
.row .col.col-316 {
  width: 316%;
}
.row .col.col-317 {
  width: 317%;
}
.row .col.col-318 {
  width: 318%;
}
.row .col.col-319 {
  width: 319%;
}
.row .col.col-320 {
  width: 320%;
}
.row .col.col-321 {
  width: 321%;
}
.row .col.col-322 {
  width: 322%;
}
.row .col.col-323 {
  width: 323%;
}
.row .col.col-324 {
  width: 324%;
}
.row .col.col-325 {
  width: 325%;
}
.row .col.col-326 {
  width: 326%;
}
.row .col.col-327 {
  width: 327%;
}
.row .col.col-328 {
  width: 328%;
}
.row .col.col-329 {
  width: 329%;
}
.row .col.col-330 {
  width: 330%;
}
.row .col.col-331 {
  width: 331%;
}
.row .col.col-332 {
  width: 332%;
}
.row .col.col-333 {
  width: 333%;
}
.row .col.col-334 {
  width: 334%;
}
.row .col.col-335 {
  width: 335%;
}
.row .col.col-336 {
  width: 336%;
}
.row .col.col-337 {
  width: 337%;
}
.row .col.col-338 {
  width: 338%;
}
.row .col.col-339 {
  width: 339%;
}
.row .col.col-340 {
  width: 340%;
}
.row .col.col-341 {
  width: 341%;
}
.row .col.col-342 {
  width: 342%;
}
.row .col.col-343 {
  width: 343%;
}
.row .col.col-344 {
  width: 344%;
}
.row .col.col-345 {
  width: 345%;
}
.row .col.col-346 {
  width: 346%;
}
.row .col.col-347 {
  width: 347%;
}
.row .col.col-348 {
  width: 348%;
}
.row .col.col-349 {
  width: 349%;
}
.row .col.col-350 {
  width: 350%;
}
.row .col.col-351 {
  width: 351%;
}
.row .col.col-352 {
  width: 352%;
}
.row .col.col-353 {
  width: 353%;
}
.row .col.col-354 {
  width: 354%;
}
.row .col.col-355 {
  width: 355%;
}
.row .col.col-356 {
  width: 356%;
}
.row .col.col-357 {
  width: 357%;
}
.row .col.col-358 {
  width: 358%;
}
.row .col.col-359 {
  width: 359%;
}
.row .col.col-360 {
  width: 360%;
}
.row .col.col-361 {
  width: 361%;
}
.row .col.col-362 {
  width: 362%;
}
.row .col.col-363 {
  width: 363%;
}
.row .col.col-364 {
  width: 364%;
}
.row .col.col-365 {
  width: 365%;
}
.row .col.col-366 {
  width: 366%;
}
.row .col.col-367 {
  width: 367%;
}
.row .col.col-368 {
  width: 368%;
}
.row .col.col-369 {
  width: 369%;
}
.row .col.col-370 {
  width: 370%;
}
.row .col.col-371 {
  width: 371%;
}
.row .col.col-372 {
  width: 372%;
}
.row .col.col-373 {
  width: 373%;
}
.row .col.col-374 {
  width: 374%;
}
.row .col.col-375 {
  width: 375%;
}
.row .col.col-376 {
  width: 376%;
}
.row .col.col-377 {
  width: 377%;
}
.row .col.col-378 {
  width: 378%;
}
.row .col.col-379 {
  width: 379%;
}
.row .col.col-380 {
  width: 380%;
}
.row .col.col-381 {
  width: 381%;
}
.row .col.col-382 {
  width: 382%;
}
.row .col.col-383 {
  width: 383%;
}
.row .col.col-384 {
  width: 384%;
}
.row .col.col-385 {
  width: 385%;
}
.row .col.col-386 {
  width: 386%;
}
.row .col.col-387 {
  width: 387%;
}
.row .col.col-388 {
  width: 388%;
}
.row .col.col-389 {
  width: 389%;
}
.row .col.col-390 {
  width: 390%;
}
.row .col.col-391 {
  width: 391%;
}
.row .col.col-392 {
  width: 392%;
}
.row .col.col-393 {
  width: 393%;
}
.row .col.col-394 {
  width: 394%;
}
.row .col.col-395 {
  width: 395%;
}
.row .col.col-396 {
  width: 396%;
}
.row .col.col-397 {
  width: 397%;
}
.row .col.col-398 {
  width: 398%;
}
.row .col.col-399 {
  width: 399%;
}
.row .col.col-400 {
  width: 400%;
}
.row .col.col-401 {
  width: 401%;
}
.row .col.col-402 {
  width: 402%;
}
.row .col.col-403 {
  width: 403%;
}
.row .col.col-404 {
  width: 404%;
}
.row .col.col-405 {
  width: 405%;
}
.row .col.col-406 {
  width: 406%;
}
.row .col.col-407 {
  width: 407%;
}
.row .col.col-408 {
  width: 408%;
}
.row .col.col-409 {
  width: 409%;
}
.row .col.col-410 {
  width: 410%;
}
.row .col.col-411 {
  width: 411%;
}
.row .col.col-412 {
  width: 412%;
}
.row .col.col-413 {
  width: 413%;
}
.row .col.col-414 {
  width: 414%;
}
.row .col.col-415 {
  width: 415%;
}
.row .col.col-416 {
  width: 416%;
}
.row .col.col-417 {
  width: 417%;
}
.row .col.col-418 {
  width: 418%;
}
.row .col.col-419 {
  width: 419%;
}
.row .col.col-420 {
  width: 420%;
}
.row .col.col-421 {
  width: 421%;
}
.row .col.col-422 {
  width: 422%;
}
.row .col.col-423 {
  width: 423%;
}
.row .col.col-424 {
  width: 424%;
}
.row .col.col-425 {
  width: 425%;
}
.row .col.col-426 {
  width: 426%;
}
.row .col.col-427 {
  width: 427%;
}
.row .col.col-428 {
  width: 428%;
}
.row .col.col-429 {
  width: 429%;
}
.row .col.col-430 {
  width: 430%;
}
.row .col.col-431 {
  width: 431%;
}
.row .col.col-432 {
  width: 432%;
}
.row .col.col-433 {
  width: 433%;
}
.row .col.col-434 {
  width: 434%;
}
.row .col.col-435 {
  width: 435%;
}
.row .col.col-436 {
  width: 436%;
}
.row .col.col-437 {
  width: 437%;
}
.row .col.col-438 {
  width: 438%;
}
.row .col.col-439 {
  width: 439%;
}
.row .col.col-440 {
  width: 440%;
}
.row .col.col-441 {
  width: 441%;
}
.row .col.col-442 {
  width: 442%;
}
.row .col.col-443 {
  width: 443%;
}
.row .col.col-444 {
  width: 444%;
}
.row .col.col-445 {
  width: 445%;
}
.row .col.col-446 {
  width: 446%;
}
.row .col.col-447 {
  width: 447%;
}
.row .col.col-448 {
  width: 448%;
}
.row .col.col-449 {
  width: 449%;
}
.row .col.col-450 {
  width: 450%;
}
.row .col.col-451 {
  width: 451%;
}
.row .col.col-452 {
  width: 452%;
}
.row .col.col-453 {
  width: 453%;
}
.row .col.col-454 {
  width: 454%;
}
.row .col.col-455 {
  width: 455%;
}
.row .col.col-456 {
  width: 456%;
}
.row .col.col-457 {
  width: 457%;
}
.row .col.col-458 {
  width: 458%;
}
.row .col.col-459 {
  width: 459%;
}
.row .col.col-460 {
  width: 460%;
}
.row .col.col-461 {
  width: 461%;
}
.row .col.col-462 {
  width: 462%;
}
.row .col.col-463 {
  width: 463%;
}
.row .col.col-464 {
  width: 464%;
}
.row .col.col-465 {
  width: 465%;
}
.row .col.col-466 {
  width: 466%;
}
.row .col.col-467 {
  width: 467%;
}
.row .col.col-468 {
  width: 468%;
}
.row .col.col-469 {
  width: 469%;
}
.row .col.col-470 {
  width: 470%;
}
.row .col.col-471 {
  width: 471%;
}
.row .col.col-472 {
  width: 472%;
}
.row .col.col-473 {
  width: 473%;
}
.row .col.col-474 {
  width: 474%;
}
.row .col.col-475 {
  width: 475%;
}
.row .col.col-476 {
  width: 476%;
}
.row .col.col-477 {
  width: 477%;
}
.row .col.col-478 {
  width: 478%;
}
.row .col.col-479 {
  width: 479%;
}
.row .col.col-480 {
  width: 480%;
}
.row .col.col-481 {
  width: 481%;
}
.row .col.col-482 {
  width: 482%;
}
.row .col.col-483 {
  width: 483%;
}
.row .col.col-484 {
  width: 484%;
}
.row .col.col-485 {
  width: 485%;
}
.row .col.col-486 {
  width: 486%;
}
.row .col.col-487 {
  width: 487%;
}
.row .col.col-488 {
  width: 488%;
}
.row .col.col-489 {
  width: 489%;
}
.row .col.col-490 {
  width: 490%;
}
.row .col.col-491 {
  width: 491%;
}
.row .col.col-492 {
  width: 492%;
}
.row .col.col-493 {
  width: 493%;
}
.row .col.col-494 {
  width: 494%;
}
.row .col.col-495 {
  width: 495%;
}
.row .col.col-496 {
  width: 496%;
}
.row .col.col-497 {
  width: 497%;
}
.row .col.col-498 {
  width: 498%;
}
.row .col.col-499 {
  width: 499%;
}
.row .col.col-500 {
  width: 500%;
}
.row .col.col-501 {
  width: 501%;
}
.row .col.col-502 {
  width: 502%;
}
.row .col.col-503 {
  width: 503%;
}
.row .col.col-504 {
  width: 504%;
}
.row .col.col-505 {
  width: 505%;
}
.row .col.col-506 {
  width: 506%;
}
.row .col.col-507 {
  width: 507%;
}
.row .col.col-508 {
  width: 508%;
}
.row .col.col-509 {
  width: 509%;
}
.row .col.col-510 {
  width: 510%;
}
.row .col.col-511 {
  width: 511%;
}
.row .col.col-512 {
  width: 512%;
}
.row .col.col-513 {
  width: 513%;
}
.row .col.col-514 {
  width: 514%;
}
.row .col.col-515 {
  width: 515%;
}
.row .col.col-516 {
  width: 516%;
}
.row .col.col-517 {
  width: 517%;
}
.row .col.col-518 {
  width: 518%;
}
.row .col.col-519 {
  width: 519%;
}
.row .col.col-520 {
  width: 520%;
}
.row .col.col-521 {
  width: 521%;
}
.row .col.col-522 {
  width: 522%;
}
.row .col.col-523 {
  width: 523%;
}
.row .col.col-524 {
  width: 524%;
}
.row .col.col-525 {
  width: 525%;
}
.row .col.col-526 {
  width: 526%;
}
.row .col.col-527 {
  width: 527%;
}
.row .col.col-528 {
  width: 528%;
}
.row .col.col-529 {
  width: 529%;
}
.row .col.col-530 {
  width: 530%;
}
.row .col.col-531 {
  width: 531%;
}
.row .col.col-532 {
  width: 532%;
}
.row .col.col-533 {
  width: 533%;
}
.row .col.col-534 {
  width: 534%;
}
.row .col.col-535 {
  width: 535%;
}
.row .col.col-536 {
  width: 536%;
}
.row .col.col-537 {
  width: 537%;
}
.row .col.col-538 {
  width: 538%;
}
.row .col.col-539 {
  width: 539%;
}
.row .col.col-540 {
  width: 540%;
}
.row .col.col-541 {
  width: 541%;
}
.row .col.col-542 {
  width: 542%;
}
.row .col.col-543 {
  width: 543%;
}
.row .col.col-544 {
  width: 544%;
}
.row .col.col-545 {
  width: 545%;
}
.row .col.col-546 {
  width: 546%;
}
.row .col.col-547 {
  width: 547%;
}
.row .col.col-548 {
  width: 548%;
}
.row .col.col-549 {
  width: 549%;
}
.row .col.col-550 {
  width: 550%;
}
.row .col.col-551 {
  width: 551%;
}
.row .col.col-552 {
  width: 552%;
}
.row .col.col-553 {
  width: 553%;
}
.row .col.col-554 {
  width: 554%;
}
.row .col.col-555 {
  width: 555%;
}
.row .col.col-556 {
  width: 556%;
}
.row .col.col-557 {
  width: 557%;
}
.row .col.col-558 {
  width: 558%;
}
.row .col.col-559 {
  width: 559%;
}
.row .col.col-560 {
  width: 560%;
}
.row .col.col-561 {
  width: 561%;
}
.row .col.col-562 {
  width: 562%;
}
.row .col.col-563 {
  width: 563%;
}
.row .col.col-564 {
  width: 564%;
}
.row .col.col-565 {
  width: 565%;
}
.row .col.col-566 {
  width: 566%;
}
.row .col.col-567 {
  width: 567%;
}
.row .col.col-568 {
  width: 568%;
}
.row .col.col-569 {
  width: 569%;
}
.row .col.col-570 {
  width: 570%;
}
.row .col.col-571 {
  width: 571%;
}
.row .col.col-572 {
  width: 572%;
}
.row .col.col-573 {
  width: 573%;
}
.row .col.col-574 {
  width: 574%;
}
.row .col.col-575 {
  width: 575%;
}
.row .col.col-576 {
  width: 576%;
}
.row .col.col-577 {
  width: 577%;
}
.row .col.col-578 {
  width: 578%;
}
.row .col.col-579 {
  width: 579%;
}
.row .col.col-580 {
  width: 580%;
}
.row .col.col-581 {
  width: 581%;
}
.row .col.col-582 {
  width: 582%;
}
.row .col.col-583 {
  width: 583%;
}
.row .col.col-584 {
  width: 584%;
}
.row .col.col-585 {
  width: 585%;
}
.row .col.col-586 {
  width: 586%;
}
.row .col.col-587 {
  width: 587%;
}
.row .col.col-588 {
  width: 588%;
}
.row .col.col-589 {
  width: 589%;
}
.row .col.col-590 {
  width: 590%;
}
.row .col.col-591 {
  width: 591%;
}
.row .col.col-592 {
  width: 592%;
}
.row .col.col-593 {
  width: 593%;
}
.row .col.col-594 {
  width: 594%;
}
.row .col.col-595 {
  width: 595%;
}
.row .col.col-596 {
  width: 596%;
}
.row .col.col-597 {
  width: 597%;
}
.row .col.col-598 {
  width: 598%;
}
.row .col.col-599 {
  width: 599%;
}
.row .col.col-600 {
  width: 600%;
}
.row .col.col-601 {
  width: 601%;
}
.row .col.col-602 {
  width: 602%;
}
.row .col.col-603 {
  width: 603%;
}
.row .col.col-604 {
  width: 604%;
}
.row .col.col-605 {
  width: 605%;
}
.row .col.col-606 {
  width: 606%;
}
.row .col.col-607 {
  width: 607%;
}
.row .col.col-608 {
  width: 608%;
}
.row .col.col-609 {
  width: 609%;
}
.row .col.col-610 {
  width: 610%;
}
.row .col.col-611 {
  width: 611%;
}
.row .col.col-612 {
  width: 612%;
}
.row .col.col-613 {
  width: 613%;
}
.row .col.col-614 {
  width: 614%;
}
.row .col.col-615 {
  width: 615%;
}
.row .col.col-616 {
  width: 616%;
}
.row .col.col-617 {
  width: 617%;
}
.row .col.col-618 {
  width: 618%;
}
.row .col.col-619 {
  width: 619%;
}
.row .col.col-620 {
  width: 620%;
}
.row .col.col-621 {
  width: 621%;
}
.row .col.col-622 {
  width: 622%;
}
.row .col.col-623 {
  width: 623%;
}
.row .col.col-624 {
  width: 624%;
}
.row .col.col-625 {
  width: 625%;
}
.row .col.col-626 {
  width: 626%;
}
.row .col.col-627 {
  width: 627%;
}
.row .col.col-628 {
  width: 628%;
}
.row .col.col-629 {
  width: 629%;
}
.row .col.col-630 {
  width: 630%;
}
.row .col.col-631 {
  width: 631%;
}
.row .col.col-632 {
  width: 632%;
}
.row .col.col-633 {
  width: 633%;
}
.row .col.col-634 {
  width: 634%;
}
.row .col.col-635 {
  width: 635%;
}
.row .col.col-636 {
  width: 636%;
}
.row .col.col-637 {
  width: 637%;
}
.row .col.col-638 {
  width: 638%;
}
.row .col.col-639 {
  width: 639%;
}
.row .col.col-640 {
  width: 640%;
}
.row .col.col-641 {
  width: 641%;
}
.row .col.col-642 {
  width: 642%;
}
.row .col.col-643 {
  width: 643%;
}
.row .col.col-644 {
  width: 644%;
}
.row .col.col-645 {
  width: 645%;
}
.row .col.col-646 {
  width: 646%;
}
.row .col.col-647 {
  width: 647%;
}
.row .col.col-648 {
  width: 648%;
}
.row .col.col-649 {
  width: 649%;
}
.row .col.col-650 {
  width: 650%;
}
.row .col.col-651 {
  width: 651%;
}
.row .col.col-652 {
  width: 652%;
}
.row .col.col-653 {
  width: 653%;
}
.row .col.col-654 {
  width: 654%;
}
.row .col.col-655 {
  width: 655%;
}
.row .col.col-656 {
  width: 656%;
}
.row .col.col-657 {
  width: 657%;
}
.row .col.col-658 {
  width: 658%;
}
.row .col.col-659 {
  width: 659%;
}
.row .col.col-660 {
  width: 660%;
}
.row .col.col-661 {
  width: 661%;
}
.row .col.col-662 {
  width: 662%;
}
.row .col.col-663 {
  width: 663%;
}
.row .col.col-664 {
  width: 664%;
}
.row .col.col-665 {
  width: 665%;
}
.row .col.col-666 {
  width: 666%;
}
.row .col.col-667 {
  width: 667%;
}
.row .col.col-668 {
  width: 668%;
}
.row .col.col-669 {
  width: 669%;
}
.row .col.col-670 {
  width: 670%;
}
.row .col.col-671 {
  width: 671%;
}
.row .col.col-672 {
  width: 672%;
}
.row .col.col-673 {
  width: 673%;
}
.row .col.col-674 {
  width: 674%;
}
.row .col.col-675 {
  width: 675%;
}
.row .col.col-676 {
  width: 676%;
}
.row .col.col-677 {
  width: 677%;
}
.row .col.col-678 {
  width: 678%;
}
.row .col.col-679 {
  width: 679%;
}
.row .col.col-680 {
  width: 680%;
}
.row .col.col-681 {
  width: 681%;
}
.row .col.col-682 {
  width: 682%;
}
.row .col.col-683 {
  width: 683%;
}
.row .col.col-684 {
  width: 684%;
}
.row .col.col-685 {
  width: 685%;
}
.row .col.col-686 {
  width: 686%;
}
.row .col.col-687 {
  width: 687%;
}
.row .col.col-688 {
  width: 688%;
}
.row .col.col-689 {
  width: 689%;
}
.row .col.col-690 {
  width: 690%;
}
.row .col.col-691 {
  width: 691%;
}
.row .col.col-692 {
  width: 692%;
}
.row .col.col-693 {
  width: 693%;
}
.row .col.col-694 {
  width: 694%;
}
.row .col.col-695 {
  width: 695%;
}
.row .col.col-696 {
  width: 696%;
}
.row .col.col-697 {
  width: 697%;
}
.row .col.col-698 {
  width: 698%;
}
.row .col.col-699 {
  width: 699%;
}
.row .col.col-700 {
  width: 700%;
}
.row .col.col-701 {
  width: 701%;
}
.row .col.col-702 {
  width: 702%;
}
.row .col.col-703 {
  width: 703%;
}
.row .col.col-704 {
  width: 704%;
}
.row .col.col-705 {
  width: 705%;
}
.row .col.col-706 {
  width: 706%;
}
.row .col.col-707 {
  width: 707%;
}
.row .col.col-708 {
  width: 708%;
}
.row .col.col-709 {
  width: 709%;
}
.row .col.col-710 {
  width: 710%;
}
.row .col.col-711 {
  width: 711%;
}
.row .col.col-712 {
  width: 712%;
}
.row .col.col-713 {
  width: 713%;
}
.row .col.col-714 {
  width: 714%;
}
.row .col.col-715 {
  width: 715%;
}
.row .col.col-716 {
  width: 716%;
}
.row .col.col-717 {
  width: 717%;
}
.row .col.col-718 {
  width: 718%;
}
.row .col.col-719 {
  width: 719%;
}
.row .col.col-720 {
  width: 720%;
}
.row .col.col-721 {
  width: 721%;
}
.row .col.col-722 {
  width: 722%;
}
.row .col.col-723 {
  width: 723%;
}
.row .col.col-724 {
  width: 724%;
}
.row .col.col-725 {
  width: 725%;
}
.row .col.col-726 {
  width: 726%;
}
.row .col.col-727 {
  width: 727%;
}
.row .col.col-728 {
  width: 728%;
}
.row .col.col-729 {
  width: 729%;
}
.row .col.col-730 {
  width: 730%;
}
.row .col.col-731 {
  width: 731%;
}
.row .col.col-732 {
  width: 732%;
}
.row .col.col-733 {
  width: 733%;
}
.row .col.col-734 {
  width: 734%;
}
.row .col.col-735 {
  width: 735%;
}
.row .col.col-736 {
  width: 736%;
}
.row .col.col-737 {
  width: 737%;
}
.row .col.col-738 {
  width: 738%;
}
.row .col.col-739 {
  width: 739%;
}
.row .col.col-740 {
  width: 740%;
}
.row .col.col-741 {
  width: 741%;
}
.row .col.col-742 {
  width: 742%;
}
.row .col.col-743 {
  width: 743%;
}
.row .col.col-744 {
  width: 744%;
}
.row .col.col-745 {
  width: 745%;
}
.row .col.col-746 {
  width: 746%;
}
.row .col.col-747 {
  width: 747%;
}
.row .col.col-748 {
  width: 748%;
}
.row .col.col-749 {
  width: 749%;
}
.row .col.col-750 {
  width: 750%;
}
.row .col.col-751 {
  width: 751%;
}
.row .col.col-752 {
  width: 752%;
}
.row .col.col-753 {
  width: 753%;
}
.row .col.col-754 {
  width: 754%;
}
.row .col.col-755 {
  width: 755%;
}
.row .col.col-756 {
  width: 756%;
}
.row .col.col-757 {
  width: 757%;
}
.row .col.col-758 {
  width: 758%;
}
.row .col.col-759 {
  width: 759%;
}
.row .col.col-760 {
  width: 760%;
}
.row .col.col-761 {
  width: 761%;
}
.row .col.col-762 {
  width: 762%;
}
.row .col.col-763 {
  width: 763%;
}
.row .col.col-764 {
  width: 764%;
}
.row .col.col-765 {
  width: 765%;
}
.row .col.col-766 {
  width: 766%;
}
.row .col.col-767 {
  width: 767%;
}
.row .col.col-768 {
  width: 768%;
}
.row .col.col-769 {
  width: 769%;
}
.row .col.col-770 {
  width: 770%;
}
.row .col.col-771 {
  width: 771%;
}
.row .col.col-772 {
  width: 772%;
}
.row .col.col-773 {
  width: 773%;
}
.row .col.col-774 {
  width: 774%;
}
.row .col.col-775 {
  width: 775%;
}
.row .col.col-776 {
  width: 776%;
}
.row .col.col-777 {
  width: 777%;
}
.row .col.col-778 {
  width: 778%;
}
.row .col.col-779 {
  width: 779%;
}
.row .col.col-780 {
  width: 780%;
}
.row .col.col-781 {
  width: 781%;
}
.row .col.col-782 {
  width: 782%;
}
.row .col.col-783 {
  width: 783%;
}
.row .col.col-784 {
  width: 784%;
}
.row .col.col-785 {
  width: 785%;
}
.row .col.col-786 {
  width: 786%;
}
.row .col.col-787 {
  width: 787%;
}
.row .col.col-788 {
  width: 788%;
}
.row .col.col-789 {
  width: 789%;
}
.row .col.col-790 {
  width: 790%;
}
.row .col.col-791 {
  width: 791%;
}
.row .col.col-792 {
  width: 792%;
}
.row .col.col-793 {
  width: 793%;
}
.row .col.col-794 {
  width: 794%;
}
.row .col.col-795 {
  width: 795%;
}
.row .col.col-796 {
  width: 796%;
}
.row .col.col-797 {
  width: 797%;
}
.row .col.col-798 {
  width: 798%;
}
.row .col.col-799 {
  width: 799%;
}
.row .col.col-800 {
  width: 800%;
}
.row .col.col-801 {
  width: 801%;
}
.row .col.col-802 {
  width: 802%;
}
.row .col.col-803 {
  width: 803%;
}
.row .col.col-804 {
  width: 804%;
}
.row .col.col-805 {
  width: 805%;
}
.row .col.col-806 {
  width: 806%;
}
.row .col.col-807 {
  width: 807%;
}
.row .col.col-808 {
  width: 808%;
}
.row .col.col-809 {
  width: 809%;
}
.row .col.col-810 {
  width: 810%;
}
.row .col.col-811 {
  width: 811%;
}
.row .col.col-812 {
  width: 812%;
}
.row .col.col-813 {
  width: 813%;
}
.row .col.col-814 {
  width: 814%;
}
.row .col.col-815 {
  width: 815%;
}
.row .col.col-816 {
  width: 816%;
}
.row .col.col-817 {
  width: 817%;
}
.row .col.col-818 {
  width: 818%;
}
.row .col.col-819 {
  width: 819%;
}
.row .col.col-820 {
  width: 820%;
}
.row .col.col-821 {
  width: 821%;
}
.row .col.col-822 {
  width: 822%;
}
.row .col.col-823 {
  width: 823%;
}
.row .col.col-824 {
  width: 824%;
}
.row .col.col-825 {
  width: 825%;
}
.row .col.col-826 {
  width: 826%;
}
.row .col.col-827 {
  width: 827%;
}
.row .col.col-828 {
  width: 828%;
}
.row .col.col-829 {
  width: 829%;
}
.row .col.col-830 {
  width: 830%;
}
.row .col.col-831 {
  width: 831%;
}
.row .col.col-832 {
  width: 832%;
}
.row .col.col-833 {
  width: 833%;
}
.row .col.col-834 {
  width: 834%;
}
.row .col.col-835 {
  width: 835%;
}
.row .col.col-836 {
  width: 836%;
}
.row .col.col-837 {
  width: 837%;
}
.row .col.col-838 {
  width: 838%;
}
.row .col.col-839 {
  width: 839%;
}
.row .col.col-840 {
  width: 840%;
}
.row .col.col-841 {
  width: 841%;
}
.row .col.col-842 {
  width: 842%;
}
.row .col.col-843 {
  width: 843%;
}
.row .col.col-844 {
  width: 844%;
}
.row .col.col-845 {
  width: 845%;
}
.row .col.col-846 {
  width: 846%;
}
.row .col.col-847 {
  width: 847%;
}
.row .col.col-848 {
  width: 848%;
}
.row .col.col-849 {
  width: 849%;
}
.row .col.col-850 {
  width: 850%;
}
.row .col.col-851 {
  width: 851%;
}
.row .col.col-852 {
  width: 852%;
}
.row .col.col-853 {
  width: 853%;
}
.row .col.col-854 {
  width: 854%;
}
.row .col.col-855 {
  width: 855%;
}
.row .col.col-856 {
  width: 856%;
}
.row .col.col-857 {
  width: 857%;
}
.row .col.col-858 {
  width: 858%;
}
.row .col.col-859 {
  width: 859%;
}
.row .col.col-860 {
  width: 860%;
}
.row .col.col-861 {
  width: 861%;
}
.row .col.col-862 {
  width: 862%;
}
.row .col.col-863 {
  width: 863%;
}
.row .col.col-864 {
  width: 864%;
}
.row .col.col-865 {
  width: 865%;
}
.row .col.col-866 {
  width: 866%;
}
.row .col.col-867 {
  width: 867%;
}
.row .col.col-868 {
  width: 868%;
}
.row .col.col-869 {
  width: 869%;
}
.row .col.col-870 {
  width: 870%;
}
.row .col.col-871 {
  width: 871%;
}
.row .col.col-872 {
  width: 872%;
}
.row .col.col-873 {
  width: 873%;
}
.row .col.col-874 {
  width: 874%;
}
.row .col.col-875 {
  width: 875%;
}
.row .col.col-876 {
  width: 876%;
}
.row .col.col-877 {
  width: 877%;
}
.row .col.col-878 {
  width: 878%;
}
.row .col.col-879 {
  width: 879%;
}
.row .col.col-880 {
  width: 880%;
}
.row .col.col-881 {
  width: 881%;
}
.row .col.col-882 {
  width: 882%;
}
.row .col.col-883 {
  width: 883%;
}
.row .col.col-884 {
  width: 884%;
}
.row .col.col-885 {
  width: 885%;
}
.row .col.col-886 {
  width: 886%;
}
.row .col.col-887 {
  width: 887%;
}
.row .col.col-888 {
  width: 888%;
}
.row .col.col-889 {
  width: 889%;
}
.row .col.col-890 {
  width: 890%;
}
.row .col.col-891 {
  width: 891%;
}
.row .col.col-892 {
  width: 892%;
}
.row .col.col-893 {
  width: 893%;
}
.row .col.col-894 {
  width: 894%;
}
.row .col.col-895 {
  width: 895%;
}
.row .col.col-896 {
  width: 896%;
}
.row .col.col-897 {
  width: 897%;
}
.row .col.col-898 {
  width: 898%;
}
.row .col.col-899 {
  width: 899%;
}
.row .col.col-900 {
  width: 900%;
}
.row .col.col-901 {
  width: 901%;
}
.row .col.col-902 {
  width: 902%;
}
.row .col.col-903 {
  width: 903%;
}
.row .col.col-904 {
  width: 904%;
}
.row .col.col-905 {
  width: 905%;
}
.row .col.col-906 {
  width: 906%;
}
.row .col.col-907 {
  width: 907%;
}
.row .col.col-908 {
  width: 908%;
}
.row .col.col-909 {
  width: 909%;
}
.row .col.col-910 {
  width: 910%;
}
.row .col.col-911 {
  width: 911%;
}
.row .col.col-912 {
  width: 912%;
}
.row .col.col-913 {
  width: 913%;
}
.row .col.col-914 {
  width: 914%;
}
.row .col.col-915 {
  width: 915%;
}
.row .col.col-916 {
  width: 916%;
}
.row .col.col-917 {
  width: 917%;
}
.row .col.col-918 {
  width: 918%;
}
.row .col.col-919 {
  width: 919%;
}
.row .col.col-920 {
  width: 920%;
}
.row .col.col-921 {
  width: 921%;
}
.row .col.col-922 {
  width: 922%;
}
.row .col.col-923 {
  width: 923%;
}
.row .col.col-924 {
  width: 924%;
}
.row .col.col-925 {
  width: 925%;
}
.row .col.col-926 {
  width: 926%;
}
.row .col.col-927 {
  width: 927%;
}
.row .col.col-928 {
  width: 928%;
}
.row .col.col-929 {
  width: 929%;
}
.row .col.col-930 {
  width: 930%;
}
.row .col.col-931 {
  width: 931%;
}
.row .col.col-932 {
  width: 932%;
}
.row .col.col-933 {
  width: 933%;
}
.row .col.col-934 {
  width: 934%;
}
.row .col.col-935 {
  width: 935%;
}
.row .col.col-936 {
  width: 936%;
}
.row .col.col-937 {
  width: 937%;
}
.row .col.col-938 {
  width: 938%;
}
.row .col.col-939 {
  width: 939%;
}
.row .col.col-940 {
  width: 940%;
}
.row .col.col-941 {
  width: 941%;
}
.row .col.col-942 {
  width: 942%;
}
.row .col.col-943 {
  width: 943%;
}
.row .col.col-944 {
  width: 944%;
}
.row .col.col-945 {
  width: 945%;
}
.row .col.col-946 {
  width: 946%;
}
.row .col.col-947 {
  width: 947%;
}
.row .col.col-948 {
  width: 948%;
}
.row .col.col-949 {
  width: 949%;
}
.row .col.col-950 {
  width: 950%;
}
.row .col.col-951 {
  width: 951%;
}
.row .col.col-952 {
  width: 952%;
}
.row .col.col-953 {
  width: 953%;
}
.row .col.col-954 {
  width: 954%;
}
.row .col.col-955 {
  width: 955%;
}
.row .col.col-956 {
  width: 956%;
}
.row .col.col-957 {
  width: 957%;
}
.row .col.col-958 {
  width: 958%;
}
.row .col.col-959 {
  width: 959%;
}
.row .col.col-960 {
  width: 960%;
}
.row .col.col-961 {
  width: 961%;
}
.row .col.col-962 {
  width: 962%;
}
.row .col.col-963 {
  width: 963%;
}
.row .col.col-964 {
  width: 964%;
}
.row .col.col-965 {
  width: 965%;
}
.row .col.col-966 {
  width: 966%;
}
.row .col.col-967 {
  width: 967%;
}
.row .col.col-968 {
  width: 968%;
}
.row .col.col-969 {
  width: 969%;
}
.row .col.col-970 {
  width: 970%;
}
.row .col.col-971 {
  width: 971%;
}
.row .col.col-972 {
  width: 972%;
}
.row .col.col-973 {
  width: 973%;
}
.row .col.col-974 {
  width: 974%;
}
.row .col.col-975 {
  width: 975%;
}
.row .col.col-976 {
  width: 976%;
}
.row .col.col-977 {
  width: 977%;
}
.row .col.col-978 {
  width: 978%;
}
.row .col.col-979 {
  width: 979%;
}
.row .col.col-980 {
  width: 980%;
}
.row .col.col-981 {
  width: 981%;
}
.row .col.col-982 {
  width: 982%;
}
.row .col.col-983 {
  width: 983%;
}
.row .col.col-984 {
  width: 984%;
}
.row .col.col-985 {
  width: 985%;
}
.row .col.col-986 {
  width: 986%;
}
.row .col.col-987 {
  width: 987%;
}
.row .col.col-988 {
  width: 988%;
}
.row .col.col-989 {
  width: 989%;
}
.row .col.col-990 {
  width: 990%;
}
.row .col.col-991 {
  width: 991%;
}
.row .col.col-992 {
  width: 992%;
}
.row .col.col-993 {
  width: 993%;
}
.row .col.col-994 {
  width: 994%;
}
.row .col.col-995 {
  width: 995%;
}
.row .col.col-996 {
  width: 996%;
}
.row .col.col-997 {
  width: 997%;
}
.row .col.col-998 {
  width: 998%;
}
.row .col.col-999 {
  width: 999%;
}
.row .col.col-1000 {
  width: 1000%;
}
.row .col.col-1220 {
  width: 1220px;
}
.row.h-130 {
  height: 130px;
}
.row.h-255 {
  height: 255px;
}
.row.h-510 {
  height: 510px;
}
.row.h-640 {
  height: 640px;
}
.row.h-calc {
  height: calc(100vh - 640px);
}
.row.gutter {
  margin-left: -10px;
  margin-right: -10px;
  align-items: stretch;
}
.row.gutter .col {
  padding: 0 10px;
  margin-bottom: 20px;
}
.row.gutter .col .mb-0 {
  margin-bottom: 0;
}
.row.end {
  justify-content: flex-end;
}
.row.between {
  justify-content: space-between;
}
.row.center {
  align-items: center;
}

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

/*


h2{ font-size: 58px; color:#262F2E; font-weight: normal;
  span{font-weight: 500; color:$blue;}
  strong{font-weight: 500;}
}

p{font-size: 18px; line-height: 1.5;}

*/
.w100 {
  width: 100%;
  display: block;
}

.owl-nav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
}
.owl-nav button {
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/icons/blueRightArrow.svg) no-repeat center !important;
  border: 1px solid #00073A !important;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  margin: 0 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.owl-nav button.owl-prev {
  transform: rotate(180deg);
}
.owl-nav button:hover {
  background: #6A288A url(../images/icons/whiteRightArrow.svg) no-repeat center !important;
  border: 1px solid #6A288A !important;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 50px 60px;
}
header .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  width: 100%;
  justify-content: space-between;
  max-width: none;
  margin: auto;
  z-index: 2;
}
header a.logo {
  display: block;
  background-image: url(../images/pasifik-holding-logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  width: 160px;
  height: 48px;
}
header .tools {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
header .tools a {
  display: block;
  height: 60px;
  line-height: 60px;
  position: relative;
  font-size: 15px;
  color: #00073A;
  font-weight: 600;
  margin-left: 10px;
  border: 1px solid #00073A;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  width: 60px;
  text-align: center;
}
header .tools a i {
  display: block;
  width: 30px;
  height: 30px;
}
header .tools a i.icon.searchIco {
  background-image: url(../images/icons/searchBtnBlack.svg);
}
header .tools .search {
  width: 60px;
  height: 60px;
  position: relative;
  overflow: hidden;
}
header .tools .search input[type=submit] {
  display: block;
  width: 60px;
  height: 42px;
  background: url(../images/icons/searchBtnBlack.svg) no-repeat center;
  border: none;
  height: 100%;
  float: right;
  border-radius: 0 8px 8px 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #00073A;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
header .tools .search input[type=text] {
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  border: none;
  top: 0;
  right: 60px;
  border-radius: 8px 0 0 8px;
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 18px;
}
header .tools .search input[type=text]::-webkit-input-placeholder {
  color: #A7A7A7;
}
header .tools .search input[type=text]:-moz-placeholder {
  color: #A7A7A7;
}
header .tools .search input[type=text]::-moz-placeholder {
  color: #A7A7A7;
}
header .tools .search input[type=text]:-ms-input-placeholder {
  color: #A7A7A7;
}
header .tools .search:hover {
  width: 320px;
}
header .tools .search:hover input[type=submit] {
  background: #6A288A url(../images/icons/searchBtn.svg) no-repeat center !important;
  border: 1px solid #6A288A;
}
header .tools a.menuLink {
  background-color: #00073A;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  width: 60px;
  height: 60px;
}
header .tools a.menuLink span {
  display: block;
  width: 18px;
  position: relative;
  margin: 15px auto;
}
header .tools a.menuLink span i {
  position: absolute;
  background: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 2px;
  left: 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}
header .tools a.menuLink span i:nth-child(1) {
  top: 8px;
}
header .tools a.menuLink span i:nth-child(2) {
  top: 13px;
}
header .tools a.menuLink span i:nth-child(3) {
  top: 18px;
}
header .tools a.menuLink.opened {
  background-color: #fff;
}
header .tools a.menuLink.opened span i {
  width: 10px !important;
  background: #000 !important;
}
header .tools a.menuLink.opened span i:nth-child(1) {
  width: 18px !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: 18px !important;
  transform: rotate(-5deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(-45deg);
  left: 0;
  top: 15px;
}
header .nav {
  width: calc(100% - 20px);
  height: 80vh;
  background: #221355;
  position: absolute;
  top: -100vh;
  left: 0;
  z-index: 1;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  padding: 200px 60px;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
}
header .nav nav {
  width: 100%;
  position: relative;
  margin: auto;
  height: 100%;
}
header .nav nav ul {
  width: 100%;
  display: flex;
}
header .nav nav ul li {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 40px;
  margin-right: 40px;
}
header .nav nav ul li a {
  font-size: 15px;
  color: #fff;
  font-weight: 200;
  display: block;
}
header .nav nav ul li a.caption {
  font-size: 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
header .nav nav ul li a:hover {
  color: #6A288A;
}
header .nav nav ul li ul {
  width: 100%;
  display: block;
}
header .nav nav ul li ul li {
  margin-bottom: 0;
  width: 100%;
}
header .nav nav ul li ul li a {
  padding-top: 7px;
  padding-bottom: 7px;
}
header .nav .bottom {
  position: absolute;
  bottom: 40px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 100px);
  left: 50px;
  align-items: center;
}
header .nav .bottom .social a {
  margin-right: 8px;
  display: inline-block;
}
header .nav .bottom .kvkk a {
  margin-right: 20px;
  color: #fff;
  font-size: 14px;
}
header.opened {
  background: none;
  backdrop-filter: none;
}
header.opened .nav {
  top: 10px;
  left: 10px;
}
header.opened a.logo {
  filter: brightness(0) invert(1);
}
header.opened .tools a {
  color: #fff;
  border: 1px solid #fff;
}
header.opened .tools .search input[type=submit] {
  border: 1px solid #fff;
  background: url(../images/icons/searchBtn.svg) no-repeat center;
}
header.opened .tools a.menuLink span i {
  background: #fff;
}

.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;
}

section.mainSlider {
  width: 100%;
  height: 100%;
  height: 100vh;
  background: transparent;
  margin: 0;
  position: relative;
  padding: 0;
  overflow: hidden;
}
section.mainSlider video {
  height: auto;
  width: 100%;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  position: absolute;
  z-index: 0;
}
section.mainSlider .owl-carousel, section.mainSlider .owl-stage-outer, section.mainSlider .owl-stage, section.mainSlider .owl-item, section.mainSlider .item {
  height: 100%;
}
section.mainSlider .item {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
section.mainSlider .item .content {
  height: 100%;
}
section.mainSlider .item .caption {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 0px;
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
  z-index: 10000;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  font-size: 24px;
  color: #fff;
  font-weight: 300;
  line-height: 40px;
}
section.mainSlider .item .caption b {
  font-size: 100px;
  font-weight: bold;
  display: block;
  margin-bottom: 30px;
  color: #221355;
  line-height: 100px;
}
section.mainSlider .item .caption strong {
  color: #6A288A;
  font-weight: 600;
}
section.mainSlider .item .caption .bottom {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
section.mainSlider .item .caption .bottom small {
  line-height: 25px;
  color: #221355;
}
section.mainSlider .active .item .caption {
  top: 50%;
  left: 170px;
}
section.mainSlider .owl-dots {
  position: absolute;
  height: 60px;
  bottom: 80px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  left: 170px;
  width: calc(100% - 340px);
}
section.mainSlider .owl-dots .owl-dot {
  width: 25%;
  height: 60px;
  position: relative;
  position: relative;
  margin-right: 1px;
}
section.mainSlider .owl-dots .owl-dot:before {
  display: block;
  width: 0;
  height: 10px;
  background: #6A288A;
  content: "";
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  left: 0;
  position: absolute;
}
section.mainSlider .owl-dots .owl-dot button {
  background: none;
  display: block;
  width: 100%;
  border: none;
  border-top: 10px solid rgba(34, 19, 85, 0.3);
  text-align: center;
  color: #221355;
  font-size: 16px;
  cursor: pointer;
  padding-top: 15px;
}
section.mainSlider .owl-dots .owl-dot.active:before {
  width: 100%;
  -webkit-transition: all 10s;
  -moz-transition: all 10s;
  -o-transition: all 10s;
  transition: all 10s;
}
section.mainSlider .owl-nav {
  width: 20.3%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  bottom: 200px;
  right: 170px;
  justify-content: center;
}
section.mainSlider .owl-nav:before {
  content: "";
  width: 100%;
  height: 10px;
  background: rgba(34, 19, 85, 0.3) !important;
  right: 0;
  bottom: -70px;
  position: absolute;
}
section.mainSlider .owl-nav button {
  display: block;
  width: 6px;
  height: 12px;
  background: url(../images/icons/blueRightArrow.svg) no-repeat center !important;
  background-size: 100% auto !important;
  margin: 0 15%;
  border: none !important;
}
section.mainSlider .owl-nav button.owl-prev {
  transform: rotate(180deg);
}
footer {
  position: relative;
  z-index: 1000;
  padding: 50px 60px;
}
footer .content {
  background: #221355;
  padding: 0;
  border-radius: 56px;
  -webkit-border-radius: 56px;
  -moz-border-radius: 56px;
}
footer .content:after {
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  content: "";
}
footer .footerTop {
  padding: 150px 180px;
}
footer .footerTop ul {
  width: 100%;
  display: flex;
}
footer .footerTop ul li {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 40px;
  margin-right: 40px;
}
footer .footerTop ul li a {
  font-size: 15px;
  color: #fff;
  font-weight: 200;
  display: block;
}
footer .footerTop ul li a.caption {
  font-size: 15px;
  position: relative;
  margin-bottom: 20px;
}
footer .footerTop ul li a:hover {
  color: #6A288A;
}
footer .footerTop ul li ul {
  width: 100%;
  display: block;
}
footer .footerTop ul li ul li {
  margin-bottom: 0;
  width: 100%;
}
footer .footerTop ul li ul li a {
  padding-top: 7px;
  padding-bottom: 7px;
}
footer .footerBottom {
  padding: 0px 180px;
}
footer .footerBottom .inner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 90px 0px;
}
footer .footerBottom .inner a.logo {
  display: block;
  background: url(../images/pasifik-holding-logo.svg) no-repeat center;
  background-size: 100% auto;
  width: 160px;
  height: 48px;
  filter: brightness(0) invert(1);
}
footer .footerBottom .inner .social a {
  margin-left: 8px;
  display: inline-block;
}
footer .footerBottom .inner .kvkk a {
  margin-right: 20px;
  color: #fff;
  font-size: 14px;
}

/*Page Elements*/
section.subPage {
  position: relative;
  overflow: hidden;
  padding: 170px 0px 160px 0px;
}
section.subPage.sticky {
  overflow: visible;
  top: 0px;
}
section.subPage .mb160 {
  margin-bottom: 160px;
}
section.subPage .content {
  padding: 0px 12.5%;
}
section.subPage .content.small {
  padding: 0 22%;
}
section.subPage .content.mid {
  padding: 0 7%;
}
section.subPage .content.large {
  padding: 0px 60px;
}
section.subPage p {
  font-size: 23px;
  font-weight: 400;
  color: #00073A;
  line-height: 35px;
}
section.subPage p.line {
  position: relative;
  padding-left: 170px;
}
section.subPage p.line:before {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #6A288A;
}
section.subPage p.s40 {
  font-size: 40px;
  line-height: 50px;
}
section.subPage p.center {
  text-align: center;
}
section.subPage h1 {
  font-size: 48px;
  color: #00073A;
  font-family: semibold;
}

.pageHeader {
  margin-bottom: 160px;
}
.pageHeader .subpageNav {
  border-bottom: 1px solid rgba(34, 19, 85, 0.2);
  margin-bottom: 50px;
}
.pageHeader .subpageNav ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.pageHeader .subpageNav ul li {
  margin-right: 56px;
}
.pageHeader .subpageNav ul li a {
  color: #221355;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 30px;
  display: inline-block;
  position: relative;
}
.pageHeader .subpageNav ul li a.active {
  color: #6A288A;
  font-family: "semibold";
}
.pageHeader .subpageNav ul li a.active:after {
  content: "";
  width: 100%;
  height: 5px;
  bottom: 0;
  background-color: #6A288A;
  position: absolute;
  left: 0;
}

section.about {
  padding: 0 0 160px 0px;
}
section.about .pageHeader {
  background: url(../images/img/about/1.png) no-repeat bottom center;
  background-size: cover;
  height: 100vh;
}
section.about .pageHeader .content {
  padding-top: 170px;
}

.textImgContent .left h1 {
  margin-bottom: 45px;
}
.textImgContent .left .btn {
  margin-top: 140px;
}
.rounded {
  width: 260px;
  height: 260px;
  background-color: #6A288A;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  color: #fff;
  margin-bottom: 32px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  justify-content: center;
  text-align: center;
}
.rounded.blue {
  background-color: #221355;
}
.rounded span {
  font-family: semibold;
  font-size: 60px;
  display: block;
}
.rounded small {
  font-size: 20px;
}

.pageSliderArea {
  margin-left: 12.5%;
}
.pageSliderArea .title {
  font-size: 24px;
  display: block;
  margin-bottom: 70px;
}
.pageSliderArea .pageSlider .item a {
  padding: 65px;
  color: #000;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: 380px;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
}
.pageSliderArea .pageSlider .item a svg {
  display: block;
}
.pageSliderArea .pageSlider .item a span {
  margin-top: auto;
  font-size: 24px;
}
.pageSliderArea .pageSlider .item a:hover {
  background-color: #6A288A;
}
.pageSliderArea .pageSlider .item a:hover svg {
  filter: brightness(0) invert(1);
}
.pageSliderArea .pageSlider .item a:hover span {
  color: #fff;
}
.pageSliderArea .pageSlider .owl-nav {
  right: 240px;
  top: -110px;
}

.careerList .item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 7, 58, 0.2);
  padding: 80px 0px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.careerList .item .left {
  width: 20%;
}
.careerList .item .right {
  width: 80%;
}
.careerList .item .right span {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}
.careerList .item:hover {
  background-color: #6A288A;
  padding-left: 20px;
  padding-right: 20px;
}
.careerList .item:hover .left svg {
  filter: brightness(0) invert(1);
}
.careerList .item:hover .right span {
  color: #fff;
}
.careerList .item:hover .right p {
  color: #fff;
}

.investorRelationsHome {
  margin-top: 160px;
  margin-bottom: 160px;
}
.investorRelationsHome .item {
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
}
.investorRelationsHome .item a {
  padding: 25px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.investorRelationsHome .item a svg {
  display: block;
}
.investorRelationsHome .item a span {
  color: #fff;
  margin-top: auto;
}
.investorRelationsHome .item a img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.investorRelationsHome .item a i {
  width: 6px;
  height: 12px;
  background: url(../images/icons/whiteRightArrow.svg) no-repeat;
  position: absolute;
  bottom: 30px;
  right: 50px;
  background-size: 100% auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.investorRelationsHome .item a:hover i {
  right: 30px;
}
.investorRelationsHome .item.img a {
  padding: 0;
}
.investorRelationsHome .item.img a img {
  position: absolute;
  z-index: -1;
}
.investorRelationsHome .item.img a span {
  padding-left: 25px;
  padding-bottom: 25px;
}
.investorRelationsHome .item.purple {
  background-color: #6A288A;
}
.investorRelationsHome .item.lightBlue {
  background-color: #AED8F2;
}
.investorRelationsHome .item.lightBlue span {
  color: #121315;
}
.investorRelationsHome .item.lightBlue i {
  background: url(../images/icons/blueRightArrow.svg) no-repeat;
  background-size: 100% auto;
}
.investorRelationsHome .item.darkBlue {
  background-color: #2A165C;
}
.investorRelationsHome .item.white {
  background-color: #fff;
}
.investorRelationsHome .item.white span {
  color: #121315;
}
.investorRelationsHome .item.white i {
  background: url(../images/icons/blueRightArrow.svg) no-repeat;
  background-size: 100% auto;
}
.investorRelationsHome .item.green {
  background: radial-gradient(50% 50% at 50% 50%, #227389 0%, #165B6E 100%);
}
.investorRelationsHome .item.linearPurple {
  background: linear-gradient(119.78deg, #6E2A90 31.8%, #973AC4 90.48%);
}
.investorRelationsHome .item.h179 {
  height: 179px;
}
.investorRelationsHome .item.h235 {
  height: 235px;
}
.investorRelationsHome .item.h434 {
  height: 434px;
}
.investorRelationsHome .item.h193 {
  height: 193px;
}

.investorRelationsHomeContact {
  background-color: #29165C;
  padding: 65px 130px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  font-size: 14px;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  position: relative;
}
.investorRelationsHomeContact a {
  color: #fff;
}
.investorRelationsHomeContact .desc {
  width: 35%;
  margin-right: 10%;
}
.investorRelationsHomeContact .desc span {
  display: block;
  font-size: 20px;
  font-family: semiBold;
  margin-bottom: 15px;
}
.investorRelationsHomeContact img {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 21%;
}

.investorRelationsPage {
  position: relative;
  z-index: 1;
}
.investorRelationsPage h1 {
  margin-bottom: 25px;
}
.investorRelationsPage h2 {
  font-size: 36px;
  color: #00073A;
}
.investorRelationsPage .investorSidebar {
  background: #E4F6FF;
  box-shadow: 0px 138px 92.5px rgba(37, 130, 219, 0.25);
  border-radius: 48px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  padding: 35px 30px;
  height: 519px;
  position: sticky;
  top: 170px;
}
.investorRelationsPage .investorSidebar ul li a {
  font-size: 18px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 15px 0 15px 15px;
  font-weight: 500;
  cursor: pointer;
}
.investorRelationsPage .investorSidebar ul li a svg {
  margin-right: 30px;
  position: relative;
  z-index: 2;
  width: 30px;
}
.investorRelationsPage .investorSidebar ul li a svg path {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.investorRelationsPage .investorSidebar ul li a span {
  color: #121315;
}
.investorRelationsPage .investorSidebar ul li.active {
  background-color: #6A288A;
  border-radius: 84px;
  -webkit-border-radius: 84px;
  -moz-border-radius: 84px;
}
.investorRelationsPage .investorSidebar ul li.active a svg {
  filter: brightness(0) invert(1);
}
.investorRelationsPage .investorSidebar ul li.active a span {
  color: #fff;
}
.investorRelationsPage .investorContent .inner {
  margin-top: 25px;
}

.contactPage h2 {
  font-size: 48px;
  font-family: semiBold;
  margin-bottom: 55px;
}
.contactPage .desc .item {
  margin-bottom: 100px;
}
.contactPage .desc .item img {
  display: block;
  margin-bottom: 15px;
}
.contactPage .desc .item span {
  font-size: 24px;
  display: block;
  font-weight: bold;
  color: #221355;
  margin-bottom: 15px;
}
.contactPage .desc .item p {
  font-size: 16px;
  color: #5A7184;
  line-height: 22px;
  margin-bottom: 15px;
}
.contactPage .desc .item .phoneMail a {
  color: #6A288A;
  font-size: 16px;
  font-weight: bold;
  margin-right: 15px;
}
.contactPage iframe {
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
}
.contactPage .tabsArea {
  position: relative;
}
.contactPage .tabsArea .tabsBtn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  background-color: #fff;
  width: 40%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}
.contactPage .tabsArea .tabsBtn a {
  width: 50%;
  padding: 12px;
  text-align: center;
  color: #6A288A;
  font-size: 16px;
  font-weight: bold;
}
.contactPage .tabsArea .tabsBtn a.active-tab {
  background-color: #6A288A;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  color: #fff;
}

.historyArea ul.mThumbs {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-wrap: wrap;
  padding: 180px 0 90px 0;
}
.historyArea ul.mThumbs li {
  position: relative;
  cursor: pointer;
}
.historyArea ul.mThumbs li strong {
  color: #fff;
  background: transparent;
  font-size: 26px;
  font-weight: normal;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  padding: 6px 12px;
  display: inline-block;
}
.historyArea ul.mThumbs li:hover strong {
  color: #221355;
}
.historyArea ul.mThumbs li.selected strong {
  background: #221355;
  color: #fff;
}
.historyArea .mItem {
  color: #fff;
  text-align: center;
  width: 220px;
  margin: 0 auto;
  background-color: #000;
}
.historyArea .mItem .rounded {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 230px;
  height: 230px;
}
.historyArea .mItem img {
  width: 100%;
}
.historyArea .mItem strong {
  font-size: 120px;
  font-weight: 500;
  display: block;
  width: 100%;
}
.historyArea .mItem p {
  color: #fff;
  font-size: 40px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.historyArea .mItem p span {
  color: #221355;
}
.historyArea .center .mItem {
  width: 500px;
}
.historyArea .center .mItem .rounded {
  opacity: 1;
}
.historyArea .center .mItem p {
  opacity: 1;
  height: 180px;
}

/*Page Elements*/