:root {
  --color: #bf9334;
  --colordarker: #8e6d24;
  --colorgray: #f1ece9;
  --colorwhite: #fff;
  --colorblack: #000;
  --colordark: #222;
  --bodybg: #ffffff;
  --font1: "Montserrat", sans-serif;
  --font2: "Noto Serif Display", serif;
  --font3: "Righteous", sans-serif;
  --waveanimationduration: 10s;
  --waveanimationtiming: ease-in-out;
}

* {
  outline: none;
}

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

::selection {
  color: #fff;
  background-color: #000;
}

html,
body {
  overscroll-behavior: none;
  overflow-x: hidden;
  font-family: var(--font1);
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.sechead {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 25px;
}
@media screen and (max-width: 1200px) {
  .sechead {
    font-size: 35px;
  }
}
.sechead.center {
  text-align: center;
}
.sechead.right {
  text-align: right;
}
.sechead.left {
  text-align: left;
}

.whatsappbtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  text-decoration: none;
  color: #fff;
  background-color: #25d366;
  font-size: 40px;
  transition: 0.3s ease;
  border: 2px solid #25d366;
}
.whatsappbtn:hover {
  background-color: rgba(37, 211, 102, 0.01);
  color: #25d366;
}

.loading {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading img {
  position: absolute;
}
.loading img.perdesol, .loading img.perdesag {
  height: 110%;
  top: 0;
  z-index: 3;
}
.loading img.perdesol {
  left: 0;
  animation-name: perdesol;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
}
.loading img.perdesag {
  right: 0;
  animation-name: perdesag;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
}
.loading img.perdeorta {
  height: 120%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  animation-name: perdeorta;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
}
.loading .loadinglogo {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation-name: perdelogo;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .loading .loadinglogo {
    width: 140px;
    height: 140px;
  }
}
.loading .loadinglogo .logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 30px;
}
@keyframes perdesol {
  0% {
    left: 0%;
  }
  40% {
    left: -100%;
  }
  100% {
    left: -100%;
  }
}
@keyframes perdesag {
  0% {
    right: 0%;
  }
  40% {
    right: -100%;
  }
  100% {
    right: -100%;
  }
}
@keyframes perdeorta {
  0% {
    top: 0%;
  }
  40% {
    top: -140%;
  }
  100% {
    top: -140%;
  }
}
@keyframes perdelogo {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

nav {
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  nav {
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
nav .navcontent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .navcontent a.navlogo {
  margin-bottom: -60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  nav .navcontent a.navlogo {
    margin-bottom: 0;
  }
}
nav .navcontent a.navlogo::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: var(--color);
  z-index: -1;
  filter: blur(45px);
  transition: 0.3s ease;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  nav .navcontent a.navlogo::before {
    display: none;
  }
}
nav .navcontent a.navlogo:hover::before {
  filter: blur(40px);
  transform: scale(1.2);
}
nav .navcontent a.navlogo img {
  height: 140px;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  nav .navcontent a.navlogo img {
    height: 70px;
  }
}
nav .navcontent .navul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: calc(45% - 100px);
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  nav .navcontent .navul {
    display: none;
  }
}
nav .navcontent .navul.navright {
  margin-left: 20px;
}
nav .navcontent .navul.navleft {
  margin-right: 20px;
  justify-content: flex-end;
}
nav .navcontent .navul li a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 10px 15px;
  transition: 0.3s ease;
}
nav .navcontent .navul li a:hover {
  transform: translateY(-5px);
}
nav .navcontent .navmobilebtn {
  display: none;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  nav .navcontent .navmobilebtn {
    display: flex;
  }
}
nav .navcontent .mobilenav {
  display: none;
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
  transition: 0.3s ease;
}
nav .navcontent .mobilenav.mobilenavvisible {
  right: 0;
}
@media screen and (max-width: 768px) {
  nav .navcontent .mobilenav {
    display: flex;
  }
}
nav .navcontent .mobilenav .mobilenavclosebtn {
  position: absolute;
  right: 20px;
  top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 80px;
}
nav .navcontent .mobilenav .mobilenavul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav .navcontent .mobilenav .mobilenavul li {
  margin: 5px 0;
}
nav .navcontent .mobilenav .mobilenavul li a {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
}
nav .navcontent .mobilenav .mobilenavul li a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color);
}
nav .navcontent .mobilenav .mobilenavsocialmedia {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
nav .navcontent .mobilenav .mobilenavsocialmedia li {
  margin: 0 5px;
}
nav .navcontent .mobilenav .mobilenavsocialmedia li a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color);
}
nav.scrolled {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
nav.scrolled .navcontent a.navlogo {
  margin-bottom: 0;
}
nav.scrolled .navcontent a.navlogo img {
  height: 70px;
}
nav.scrolled .navcontent a.navlogo::before {
  opacity: 0;
  visibility: hidden;
}
nav.scrolled .navcontent .navul.navleft {
  justify-content: flex-start;
}
nav.scrolled .navcontent .navul.navright {
  justify-content: flex-end;
}
nav.scrolled .navcontent .navul li a {
  color: #000;
}

#mainsec {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 150px;
}
#mainsec .hangingobject {
  position: absolute;
  z-index: 2;
  height: 30vh;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media screen and (max-width: 768px) {
  #mainsec .hangingobject {
    height: 20vh;
  }
}
#mainsec .hangingobject::before {
  content: "";
  width: 15%;
  background-image: url("../img/hangingobjectrope.webp");
  background-size: cover;
  height: 120%;
  position: absolute;
  margin-left: 8%;
  z-index: 1;
}
#mainsec .hangingobject.hangingobjectleft {
  left: 150px;
  animation: dropDown 2s ease-out;
}
@media screen and (max-width: 1300px) {
  #mainsec .hangingobject.hangingobjectleft {
    left: 70px;
  }
}
@media screen and (max-width: 1200px) {
  #mainsec .hangingobject.hangingobjectleft {
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  #mainsec .hangingobject.hangingobjectleft {
    left: 20px;
  }
}
#mainsec .hangingobject.hangingobjectleft img {
  animation-name: hangingobject;
  animation-duration: 15s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-delay: 3s;
}
#mainsec .hangingobject.hangingobjectright {
  right: 150px;
  animation: dropDown 2s ease-out;
}
@media screen and (max-width: 1300px) {
  #mainsec .hangingobject.hangingobjectright {
    right: 70px;
  }
}
@media screen and (max-width: 1200px) {
  #mainsec .hangingobject.hangingobjectright {
    right: 40px;
  }
}
@media screen and (max-width: 768px) {
  #mainsec .hangingobject.hangingobjectright {
    right: 20px;
  }
}
@keyframes dropDown {
  0% {
    opacity: 0;
    transform: translateY(-400px);
  }
  70% {
    opacity: 0;
    transform: translateY(-400px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#mainsec .hangingobject.hangingobjectright img {
  animation-name: hangingobject;
  animation-duration: 15s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes hangingobject {
  0% {
    transform-origin: top center;
    transform: rotate(0deg);
  }
  33% {
    transform-origin: top center;
    transform: rotate(10deg);
  }
  66% {
    transform-origin: top center;
    transform: rotate(-10deg);
  }
  100% {
    transform-origin: top center;
    transform: rotate(0deg);
  }
}
#mainsec .hangingobject img {
  width: 100%;
  height: 200px;
  margin-bottom: -190px;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  #mainsec .hangingobject img {
    height: 150px;
    width: auto;
    margin-bottom: -140px;
  }
}
@media screen and (max-width: 768px) {
  #mainsec .hangingobject img {
    height: 120px;
    width: auto;
    margin-bottom: -110px;
  }
}
#mainsec .container {
  position: relative;
  z-index: 2;
}
#mainsec .container .mainsecbigtext {
  text-align: center;
  font-size: 70px;
  color: #fff;
  font-weight: 900;
  font-family: var(--font3);
}
@media screen and (max-width: 768px) {
  #mainsec .container .mainsecbigtext {
    font-size: 40px;
  }
}
#mainsec .container .mainsectext {
  text-align: center;
  font-size: 40px;
  color: #fff;
  font-weight: 400;
  font-family: var(--font2);
}
@media screen and (max-width: 768px) {
  #mainsec .container .mainsectext {
    font-size: 25px;
  }
}
#mainsec .owlmainsec {
  margin-top: 50px;
  position: relative;
  z-index: 2;
}
#mainsec .owlmainsec .owl-stage-outer {
  overflow: visible;
}
#mainsec .owlmainsec .item {
  padding: 10px;
}
#mainsec .owlmainsec .item .mainsecowlcard {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 250px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 2;
}
#mainsec .owlmainsec .item .mainsecowlcard .mainsecowlcardcontent {
  width: 70%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  position: relative;
  z-index: 2;
  padding: 25px;
  display: flex;
  flex-direction: column;
  margin-right: auto;
}
#mainsec .owlmainsec .item .mainsecowlcard .mainsecowlcardcontent .mainsecowlcardtitle {
  color: #fff;
  font-size: 20px;
}
#mainsec .owlmainsec .item .mainsecowlcard .mainsecowlcardcontent .mainsecowlcarddate {
  color: #fff;
  background-color: var(--color);
  width: -moz-max-content;
  width: max-content;
  padding: 5px 15px;
  margin-top: 15px;
}
#mainsec .owlmainsec .item .mainsecowlcard .mainsecowlcardcontent .mainsecowlcarddate i {
  font-weight: lighter;
  margin-right: 5px;
}
#mainsec .owlmainsec .item .mainsecowlcard .mainsecowlcardcontent .mainsecowlcardlocation {
  color: #fff;
  background-color: var(--colordarker);
  width: -moz-max-content;
  width: max-content;
  padding: 5px 15px;
  margin-top: 15px;
}
#mainsec .owlmainsec .item .mainsecowlcard .mainsecowlcardcontent .mainsecowlcardlocation i {
  font-weight: lighter;
  margin-right: 5px;
}
#mainsec .owlmainsec .item .mainsecowlcard .mainsecowlcardcontent .mainsecowlcardlink {
  padding: 5px 25px;
  text-decoration: none;
  border: 1px solid #fff;
  display: inline-block;
  color: #fff;
  margin-top: auto;
  width: -moz-max-content;
  width: max-content;
  transition: 0.3s ease;
  font-weight: 600;
}
#mainsec .owlmainsec .item .mainsecowlcard .mainsecowlcardcontent .mainsecowlcardlink:hover {
  background-color: #000;
}
#mainsec .owlmainsec .item .mainsecowlcard .mainsecowlcardimgholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#mainsec .owlmainsec .item .mainsecowlcard .mainsecowlcardimgholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 99%, black 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 99%, black 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}
#mainsec .owlmainsec .item .mainsecowlcard::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 150%;
  background-color: rgba(255, 255, 255, 0.35);
  z-index: 2;
  pointer-events: none;
  transform: rotate(10deg);
  filter: blur(20px);
  right: -50%;
  transition: 0.6s ease;
}
#mainsec .owlmainsec .item .mainsecowlcard:hover {
  transform: scale(1.1);
}
#mainsec .owlmainsec .item .mainsecowlcard:hover::before {
  right: 50%;
}
#mainsec .mainsecbg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--colordark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
}
#mainsec .mainsecbg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
#mainsec .mainsecbg > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  z-index: 1;
}

#aboutus {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#aboutus .aboutusbacktext {
  font-size: 700px;
  color: #000;
  opacity: 0.06;
  position: absolute;
  font-weight: 900;
  line-height: 200px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  transform: rotate(-10deg);
  z-index: 1;
}
#aboutus .container {
  position: relative;
  z-index: 2;
}
#aboutus p {
  font-size: 17px;
}

#sanatcilar {
  padding: 100px 0;
  background-color: #000;
  margin-bottom: 70px;
  position: relative;
}
#sanatcilar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 120px;
  background: #000;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  top: -120px;
  z-index: 3;
}
#sanatcilar .sanatcilarsvgholder {
  position: absolute;
  bottom: -145px;
  height: 150px;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  transform: rotate(180deg);
}
#sanatcilar .sanatcilarsvgholder .path-0 {
  animation: pathAnim-0 var(--waveanimationduration);
  animation-timing-function: var(--waveanimationtiming);
  animation-iteration-count: infinite;
}
@keyframes pathAnim-0 {
  0% {
    d: path("M 0,500 L 0,75 C 28.40282486530093,76.48246188849544 56.80564973060186,77.96492377699087 82,76 C 107.19435026939814,74.03507622300913 129.18022594289351,68.62276678053198 148,78 C 166.81977405710649,87.37723321946802 182.47344649782417,111.54400910088123 203,105 C 223.52655350217583,98.45599089911877 248.92598806580986,61.20119681594309 276,52 C 303.07401193419014,42.79880318405691 331.8226012389363,61.651203635346405 357,70 C 382.1773987610637,78.3487963646536 403.783606978445,76.19398864267129 425,81 C 446.216393021555,85.80601135732871 467.04297084728375,97.57284179396845 495,104 C 522.9570291527162,110.42715820603155 558.0445096324203,111.51464418145491 584,109 C 609.9554903675797,106.48535581854509 626.7789906230349,100.36858148021189 646,92 C 665.2210093769651,83.63141851978811 686.8395278754394,73.01102989769754 713,67 C 739.1604721245606,60.98897010230246 769.8628978752071,59.58729892899798 792,66 C 814.1371021247929,72.41270107100202 827.7088806237324,86.63977438631055 854,88 C 880.2911193762676,89.36022561368945 919.3015796298635,77.8536035257598 948,74 C 976.6984203701365,70.1463964742402 995.0848008568137,73.94581151065023 1015,76 C 1034.9151991431863,78.05418848934977 1056.3592169428823,78.36315043163924 1080,85 C 1103.6407830571177,91.63684956836076 1129.4783313716584,104.6015867627928 1155,100 C 1180.5216686283416,95.3984132372072 1205.7274575704835,73.23050251718955 1229,63 C 1252.2725424295165,52.76949748281045 1273.6118383464084,54.47640316844897 1299,67 C 1324.3881616535916,79.52359683155103 1353.8251890438835,102.86388480901456 1378,106 C 1402.1748109561165,109.13611519098544 1421.0874054780584,92.06805759549272 1440,75 L 1440,500 L 0,500 Z");
  }
  25% {
    d: path("M 0,500 L 0,75 C 30.540433128149793,88.88713034530906 61.080866256299586,102.77426069061814 83,100 C 104.91913374370041,97.22573930938186 118.21696810295145,77.79008758283652 136,70 C 153.78303189704855,62.20991241716348 176.0512613318947,66.0653889780358 206,74 C 235.9487386681053,81.9346110219642 273.57798656946994,93.9483565050203 298,92 C 322.42201343053006,90.0516434949797 333.63679239022554,74.14118500188303 357,73 C 380.36320760977446,71.85881499811697 415.874843869628,85.4869034874476 440,96 C 464.125156130372,106.5130965125524 476.8638321312625,113.91120104832657 496,98 C 515.1361678687375,82.08879895167343 540.6698276053219,42.86829231924611 564,41 C 587.3301723946781,39.13170768075389 608.4568574474495,74.61562967468898 638,85 C 667.5431425525505,95.38437032531102 705.5027426048798,80.66918898199795 731,80 C 756.4972573951202,79.33081101800205 769.5321721330312,92.70761439731926 793,88 C 816.4678278669688,83.29238560268074 850.368568862996,60.50035342872502 871,58 C 891.631431137004,55.49964657127498 898.993552414985,73.29097188778066 925,76 C 951.006447585015,78.70902811221934 995.6572214770638,66.33575902015238 1020,68 C 1044.3427785229362,69.66424097984762 1048.37756167676,85.36599203160979 1069,89 C 1089.62243832324,92.63400796839021 1126.8325318158957,84.20027285340842 1155,88 C 1183.1674681841043,91.79972714659158 1202.2923110596566,107.83291655475651 1226,101 C 1249.7076889403434,94.16708344524349 1277.998223945477,64.46806092756555 1301,62 C 1324.001776054523,59.53193907243445 1341.714793158435,84.29483973498127 1364,91 C 1386.285206841565,97.70516026501873 1413.1426034207825,86.35258013250936 1440,75 L 1440,500 L 0,500 Z");
  }
  50% {
    d: path("M 0,500 L 0,75 C 31.797545210489616,90.5877661854993 63.59509042097923,106.1755323709986 85,101 C 106.40490957902077,95.8244676290014 117.4171835265727,69.88563670150492 139,65 C 160.5828164734273,60.114363298495086 192.73617547272994,76.28192082298177 216,82 C 239.26382452727006,87.71807917701823 253.63811458250763,82.98668000656801 278,87 C 302.3618854174924,91.01331999343199 336.7113661972394,103.77135915074622 365,98 C 393.2886338027606,92.22864084925378 415.5164206285346,67.92788339044709 440,66 C 464.4835793714654,64.07211660955291 491.22295128862186,84.51710728746544 516,97 C 540.7770487113781,109.48289271253456 563.5917742169779,114.0036874596912 586,102 C 608.4082257830221,89.9963125403088 630.4099518434664,61.468142873769736 651,60 C 671.5900481565336,58.531857126230264 690.7684184091569,84.12374104522985 717,82 C 743.2315815908431,79.87625895477015 776.5163745199058,50.03689294531087 800,38 C 823.4836254800942,25.963107054689136 837.16608351122,31.72868717352668 860,53 C 882.83391648878,74.27131282647332 914.8192914352144,111.04835836058237 941,109 C 967.1807085647856,106.95164163941763 987.5567507479225,66.07787938414384 1012,52 C 1036.4432492520775,37.922120615856166 1064.9537055730957,50.64012410284229 1086,66 C 1107.0462944269043,81.3598758971577 1120.6284269596952,99.361624204487 1145,106 C 1169.3715730403048,112.638375795513 1204.532586588123,107.91337907920968 1232,92 C 1259.467413411877,76.08662092079032 1279.241226687813,48.984859478674316 1298,42 C 1316.758773312187,35.015140521325684 1334.502506660625,48.147183006093044 1358,57 C 1381.497493339375,65.85281699390696 1410.7487466696875,70.42640849695348 1440,75 L 1440,500 L 0,500 Z");
  }
  75% {
    d: path("M 0,500 L 0,75 C 17.785565926254534,69.89162819985778 35.57113185250907,64.78325639971555 62,58 C 88.42886814749093,51.21674360028445 123.50103851621824,42.75860260099556 147,38 C 170.49896148378176,33.24139739900444 182.42471408261792,32.1823331963022 208,44 C 233.57528591738208,55.8176668036978 272.8001051533102,80.51206461379564 298,77 C 323.1998948466898,73.48793538620436 334.37486530414134,41.76940834851527 355,38 C 375.62513469585866,34.23059165148473 405.70043363012417,58.4103019921433 430,67 C 454.29956636987583,75.5896980078567 472.8234001753618,68.58938368291152 494,65 C 515.1765998246382,61.41061631708848 539.0059656684289,61.2321632762106 564,65 C 588.9940343315711,68.7678367237894 615.1527371509226,76.48196321224609 641,82 C 666.8472628490774,87.51803678775391 692.3830857278806,90.83998387480506 721,98 C 749.6169142721194,105.16001612519494 781.3149199375546,116.15810128853373 805,111 C 828.6850800624454,105.84189871146627 844.3572345219013,84.52761097106001 863,70 C 881.6427654780987,55.472389028939986 903.2561419748405,47.731454827226194 928,50 C 952.7438580251595,52.268545172773806 980.6181975787367,64.5465697200352 1007,65 C 1033.3818024212633,65.4534302799648 1058.2710677102127,54.08226629263306 1082,56 C 1105.7289322897873,57.91773370736694 1128.2975315804129,73.12436510943257 1151,66 C 1173.7024684195871,58.87563489056743 1196.5388059681366,29.42027326963664 1218,38 C 1239.4611940318634,46.57972673036336 1259.54724454704,93.1945418120209 1283,94 C 1306.45275545296,94.8054581879791 1333.2722158437027,49.801559482279735 1360,39 C 1386.7277841562973,28.198440517720265 1413.3638920781486,51.59922025886013 1440,75 L 1440,500 L 0,500 Z");
  }
  100% {
    d: path("M 0,500 L 0,75 C 28.40282486530093,76.48246188849544 56.80564973060186,77.96492377699087 82,76 C 107.19435026939814,74.03507622300913 129.18022594289351,68.62276678053198 148,78 C 166.81977405710649,87.37723321946802 182.47344649782417,111.54400910088123 203,105 C 223.52655350217583,98.45599089911877 248.92598806580986,61.20119681594309 276,52 C 303.07401193419014,42.79880318405691 331.8226012389363,61.651203635346405 357,70 C 382.1773987610637,78.3487963646536 403.783606978445,76.19398864267129 425,81 C 446.216393021555,85.80601135732871 467.04297084728375,97.57284179396845 495,104 C 522.9570291527162,110.42715820603155 558.0445096324203,111.51464418145491 584,109 C 609.9554903675797,106.48535581854509 626.7789906230349,100.36858148021189 646,92 C 665.2210093769651,83.63141851978811 686.8395278754394,73.01102989769754 713,67 C 739.1604721245606,60.98897010230246 769.8628978752071,59.58729892899798 792,66 C 814.1371021247929,72.41270107100202 827.7088806237324,86.63977438631055 854,88 C 880.2911193762676,89.36022561368945 919.3015796298635,77.8536035257598 948,74 C 976.6984203701365,70.1463964742402 995.0848008568137,73.94581151065023 1015,76 C 1034.9151991431863,78.05418848934977 1056.3592169428823,78.36315043163924 1080,85 C 1103.6407830571177,91.63684956836076 1129.4783313716584,104.6015867627928 1155,100 C 1180.5216686283416,95.3984132372072 1205.7274575704835,73.23050251718955 1229,63 C 1252.2725424295165,52.76949748281045 1273.6118383464084,54.47640316844897 1299,67 C 1324.3881616535916,79.52359683155103 1353.8251890438835,102.86388480901456 1378,106 C 1402.1748109561165,109.13611519098544 1421.0874054780584,92.06805759549272 1440,75 L 1440,500 L 0,500 Z");
  }
}
#sanatcilar .sanatcilarsvgholder .path-1 {
  animation: pathAnim-1 var(--waveanimationduration);
  animation-timing-function: var(--waveanimationtiming);
  animation-iteration-count: infinite;
}
@keyframes pathAnim-1 {
  0% {
    d: path("M 0,500 L 0,175 C 18.343266918550036,194.81076786335387 36.68653383710007,214.62153572670778 60,204 C 83.31346616289993,193.37846427329222 111.59713157014977,152.32462495652285 136,149 C 160.40286842985023,145.67537504347715 180.9249398823008,180.0799644472009 209,193 C 237.0750601176992,205.9200355527991 272.70310890064707,197.3555172546736 300,188 C 327.29689109935293,178.6444827453264 346.26262451511093,168.4979665341048 369,167 C 391.73737548488907,165.5020334658952 418.24639303890933,172.65261660890727 440,171 C 461.75360696109067,169.34738339109273 478.75180332925163,158.8915670302662 501,167 C 523.2481966707484,175.1084329697338 550.7463936440843,201.78111527002784 577,208 C 603.2536063559157,214.21888472997216 628.2626220944113,199.9839718896225 655,182 C 681.7373779055887,164.0160281103775 710.2031179782706,142.2829971714822 732,142 C 753.7968820217294,141.7170028285178 768.9249059925063,162.88403942444873 790,166 C 811.0750940074937,169.11596057555127 838.0972580517046,154.18084513072293 863,144 C 887.9027419482954,133.81915486927707 910.6860618006752,128.39258005265958 936,145 C 961.3139381993248,161.60741994734042 989.1584947455947,200.2488346586388 1013,197 C 1036.8415052544053,193.7511653413612 1056.6799592169466,148.61208131278514 1077,144 C 1097.3200407830534,139.38791868721486 1118.1216683866191,175.30284009022054 1145,190 C 1171.8783316133809,204.69715990977946 1204.8333672365766,198.17655832633264 1230,195 C 1255.1666327634234,191.82344167366736 1272.5448626670754,191.9909266044489 1297,186 C 1321.4551373329246,180.0090733955511 1352.9871820951212,167.85973525587175 1378,165 C 1403.0128179048788,162.14026474412825 1421.5064089524394,168.5701323720641 1440,175 L 1440,500 L 0,500 Z");
  }
  25% {
    d: path("M 0,500 L 0,175 C 23.84339850684811,189.2827033706152 47.68679701369622,203.56540674123042 72,197 C 96.31320298630378,190.43459325876958 121.09621045206327,163.0210764056935 143,154 C 164.90378954793673,144.9789235943065 183.92836117805078,154.3502876359956 205,157 C 226.07163882194922,159.6497123640044 249.19034483573364,155.57777305032403 279,149 C 308.80965516426636,142.42222694967597 345.3102594790148,133.3386201627083 371,143 C 396.6897405209852,152.6613798372917 411.5686172482071,181.06774629884274 432,198 C 452.4313827517929,214.93225370115726 478.4152715281566,220.39039464192066 501,206 C 523.5847284718434,191.60960535807934 542.7702966391665,157.37067513347455 564,159 C 585.2297033608335,160.62932486652545 608.5035419151774,198.1269048241811 639,200 C 669.4964580848226,201.8730951758189 707.2155357001243,168.12170556980095 730,167 C 752.7844642998757,165.87829443019905 760.6343152843258,197.38627289661508 783,206 C 805.3656847156742,214.61372710338492 842.2472031625728,200.33320284373875 867,190 C 891.7527968374272,179.66679715626125 904.3768720653829,173.2809157284301 928,169 C 951.6231279346171,164.7190842715699 986.2453085758959,162.54313424254084 1011,175 C 1035.754691424104,187.45686575745916 1050.641893631033,214.54654730140652 1074,210 C 1097.358106368967,205.45345269859348 1129.187116899972,169.27067655183305 1154,157 C 1178.812883100028,144.72932344816695 1196.6096387690795,156.37074649126123 1222,160 C 1247.3903612309205,163.62925350873877 1280.3743280237093,159.24633748312198 1308,164 C 1335.6256719762907,168.75366251687802 1357.893049136083,182.64390357625086 1379,186 C 1400.106950863917,189.35609642374914 1420.0534754319585,182.17804821187457 1440,175 L 1440,500 L 0,500 Z");
  }
  50% {
    d: path("M 0,500 L 0,175 C 25.046522276037408,183.77942627059554 50.093044552074815,192.5588525411911 72,188 C 93.90695544792518,183.4411474588089 112.67434406773819,165.5440161058312 133,159 C 153.3256559322618,152.4559838941688 175.20957917697243,157.2650830354842 203,162 C 230.79042082302757,166.7349169645158 264.48733922437225,171.395651752232 292,183 C 319.51266077562775,194.604348247768 340.8410639255386,213.15230995558778 361,206 C 381.1589360744614,198.84769004441222 400.14840507347344,165.99510842541676 427,148 C 453.85159492652656,130.00489157458324 488.56531578056774,126.86725634274518 516,145 C 543.4346842194323,163.13274365725482 563.5903318042554,202.5358662036025 582,210 C 600.4096681957446,217.4641337963975 617.0733570024111,192.98927884284493 643,181 C 668.9266429975889,169.01072115715507 704.1162401861005,169.5070184250178 728,179 C 751.8837598138995,188.4929815749822 764.4616822531867,206.98264745708371 784,199 C 803.5383177468133,191.01735254291629 830.0370308011532,156.56239174664736 856,160 C 881.9629691988468,163.43760825335264 907.3901945422004,204.76778555632694 930,211 C 952.6098054577996,217.23221444367306 972.4021910300451,188.36646602804484 995,172 C 1017.5978089699549,155.63353397195516 1043.0010413376194,151.76635033149353 1072,150 C 1100.9989586623806,148.23364966850647 1133.5936436194777,148.56813264598102 1162,148 C 1190.4063563805223,147.43186735401898 1214.6243841844698,145.96111908458238 1232,159 C 1249.3756158155302,172.03888091541762 1259.9088196426428,199.58739101568935 1285,199 C 1310.0911803573572,198.41260898431065 1349.7403372449592,169.68931685266017 1378,161 C 1406.2596627550408,152.31068314733983 1423.1298313775205,163.65534157366992 1440,175 L 1440,500 L 0,500 Z");
  }
  75% {
    d: path("M 0,500 L 0,175 C 15.698720607492469,190.93641951658532 31.397441214984937,206.8728390331706 58,210 C 84.60255878501506,213.1271609668294 122.10895574755276,203.44506338390283 146,194 C 169.89104425244724,184.55493661609717 180.16673579480405,175.3469074312181 205,162 C 229.83326420519595,148.6530925687819 269.2241010732309,131.16730689122468 294,143 C 318.7758989267691,154.83269310877532 328.93685991227244,195.98386500388315 352,197 C 375.06314008772756,198.01613499611685 411.02845927767925,158.89723309324268 435,152 C 458.97154072232075,145.10276690675732 470.94930297701046,170.4272026231462 493,178 C 515.0506970229895,185.5727973768538 547.1743288142794,175.39395641417258 576,176 C 604.8256711857206,176.60604358582742 630.3533817658715,187.99697172016354 652,192 C 673.6466182341285,196.00302827983646 691.4121441222343,192.61815670517328 712,194 C 732.5878558777657,195.38184329482672 755.9980417451914,201.53040145914332 779,202 C 802.0019582548086,202.46959854085668 824.5956888970002,197.26023745825339 851,190 C 877.4043111029998,182.73976254174661 907.6192026668081,173.42864870784325 935,166 C 962.3807973331919,158.57135129215675 986.9275004357678,153.02516771037358 1007,156 C 1027.0724995642322,158.97483228962642 1042.67079559012,170.47068045066231 1070,180 C 1097.32920440988,189.52931954933769 1136.3893172037524,197.09211048697722 1160,204 C 1183.6106827962476,210.90788951302278 1191.7719355948705,217.16087760142878 1213,206 C 1234.2280644051295,194.83912239857122 1268.5229404167656,166.2643791073076 1298,164 C 1327.4770595832344,161.7356208926924 1352.1363027380671,185.7816059693407 1375,192 C 1397.8636972619329,198.2183940306593 1418.9318486309664,186.60919701532964 1440,175 L 1440,500 L 0,500 Z");
  }
  100% {
    d: path("M 0,500 L 0,175 C 18.343266918550036,194.81076786335387 36.68653383710007,214.62153572670778 60,204 C 83.31346616289993,193.37846427329222 111.59713157014977,152.32462495652285 136,149 C 160.40286842985023,145.67537504347715 180.9249398823008,180.0799644472009 209,193 C 237.0750601176992,205.9200355527991 272.70310890064707,197.3555172546736 300,188 C 327.29689109935293,178.6444827453264 346.26262451511093,168.4979665341048 369,167 C 391.73737548488907,165.5020334658952 418.24639303890933,172.65261660890727 440,171 C 461.75360696109067,169.34738339109273 478.75180332925163,158.8915670302662 501,167 C 523.2481966707484,175.1084329697338 550.7463936440843,201.78111527002784 577,208 C 603.2536063559157,214.21888472997216 628.2626220944113,199.9839718896225 655,182 C 681.7373779055887,164.0160281103775 710.2031179782706,142.2829971714822 732,142 C 753.7968820217294,141.7170028285178 768.9249059925063,162.88403942444873 790,166 C 811.0750940074937,169.11596057555127 838.0972580517046,154.18084513072293 863,144 C 887.9027419482954,133.81915486927707 910.6860618006752,128.39258005265958 936,145 C 961.3139381993248,161.60741994734042 989.1584947455947,200.2488346586388 1013,197 C 1036.8415052544053,193.7511653413612 1056.6799592169466,148.61208131278514 1077,144 C 1097.3200407830534,139.38791868721486 1118.1216683866191,175.30284009022054 1145,190 C 1171.8783316133809,204.69715990977946 1204.8333672365766,198.17655832633264 1230,195 C 1255.1666327634234,191.82344167366736 1272.5448626670754,191.9909266044489 1297,186 C 1321.4551373329246,180.0090733955511 1352.9871820951212,167.85973525587175 1378,165 C 1403.0128179048788,162.14026474412825 1421.5064089524394,168.5701323720641 1440,175 L 1440,500 L 0,500 Z");
  }
}
#sanatcilar .sanatcilarsvgholder .path-2 {
  animation: pathAnim-2 var(--waveanimationduration);
  animation-timing-function: var(--waveanimationtiming);
  animation-iteration-count: infinite;
}
@keyframes pathAnim-2 {
  0% {
    d: path("M 0,500 L 0,275 C 29.558646931025528,280.5623745732965 59.117293862051056,286.124749146593 83,285 C 106.88270613794894,283.875250853407 125.08947148282127,276.0633779869244 147,267 C 168.91052851717873,257.9366220130756 194.52482020666392,247.62173890570924 221,244 C 247.47517979333608,240.37826109429076 274.8112476905231,243.44966639023863 295,243 C 315.1887523094769,242.55033360976137 328.23018903124375,238.57959553333615 350,250 C 371.76981096875625,261.42040446666385 402.26799618450195,288.231951476417 429,290 C 455.73200381549805,291.768048523583 478.69782623074843,268.49259856099593 502,262 C 525.3021737692516,255.50740143900404 548.9406988925041,265.7976542795991 572,264 C 595.0593011074959,262.2023457204009 617.5393781992352,248.31678432060755 640,258 C 662.4606218007648,267.68321567939245 684.9017883105554,300.9352084379708 711,305 C 737.0982116894446,309.0647915620292 766.8534685585433,283.9423819275091 796,281 C 825.1465314414567,278.0576180724909 853.6843374552714,297.295263851993 874,297 C 894.3156625447286,296.704736148007 906.4091816203711,276.8765626645189 930,279 C 953.5908183796289,281.1234373354811 988.6789360632445,305.1984854899315 1016,304 C 1043.3210639367555,302.8015145100685 1062.8750741266508,276.32949537575485 1082,259 C 1101.1249258733492,241.67050462424513 1119.8207674301516,233.4835330070491 1145,244 C 1170.1792325698484,254.5164669929509 1201.8418561527428,283.7363725960487 1229,290 C 1256.1581438472572,296.2636274039513 1278.811807958877,279.5709766087561 1301,271 C 1323.188192041123,262.4290233912439 1344.9109120117494,261.9797209689268 1368,264 C 1391.0890879882506,266.0202790310732 1415.5445439941254,270.5101395155366 1440,275 L 1440,500 L 0,500 Z");
  }
  25% {
    d: path("M 0,500 L 0,275 C 20.00784188691273,277.0860879746209 40.01568377382546,279.17217594924176 63,285 C 85.98431622617454,290.82782405075824 111.94510679161093,300.3973841776537 142,293 C 172.05489320838907,285.6026158223463 206.2038890597308,261.23828734014336 227,267 C 247.7961109402692,272.76171265985664 255.2393369694658,308.6494664617728 275,311 C 294.7606630305342,313.3505335382272 326.83876306240614,282.1638468127653 357,278 C 387.16123693759386,273.8361531872347 415.4056107809097,296.69514628716587 442,303 C 468.5943892190903,309.30485371283413 493.5387938139553,299.05556803857115 513,288 C 532.4612061860447,276.94443196142885 546.439213963269,265.0825815585495 573,268 C 599.560786036731,270.9174184414505 638.7043503329688,288.61410572723065 661,294 C 683.2956496670312,299.38589427276935 688.743384704856,292.460995532528 708,288 C 727.256615295144,283.539004467472 760.3221108476071,281.54191214265757 787,287 C 813.6778891523929,292.45808785734243 833.968171904716,305.3713558968418 857,292 C 880.031828095284,278.6286441031582 905.8052015335295,238.97266426997518 929,240 C 952.1947984664705,241.02733573002482 972.8110219611665,282.7379870232573 997,294 C 1021.1889780388335,305.2620129767427 1048.9507106218043,286.07538763699546 1077,270 C 1105.0492893781957,253.92461236300454 1133.3861355516158,240.96046242876088 1157,242 C 1180.6138644483842,243.03953757123912 1199.5047471717317,258.08276264796103 1219,258 C 1238.4952528282683,257.91723735203897 1258.5948757614567,242.70848697939508 1283,246 C 1307.4051242385433,249.29151302060492 1336.1157497824408,271.08328943445855 1363,279 C 1389.8842502175592,286.91671056554145 1414.9421251087797,280.95835528277075 1440,275 L 1440,500 L 0,500 Z");
  }
  50% {
    d: path("M 0,500 L 0,275 C 21.820606525289953,258.72508446131866 43.64121305057991,242.4501689226373 72,239 C 100.3587869494201,235.5498310773627 135.25575432297038,244.92440877076945 156,259 C 176.74424567702962,273.07559122923055 183.33576965753863,291.8521959942847 207,297 C 230.66423034246137,302.1478040057153 271.4011670468752,293.6668072520916 300,291 C 328.5988329531248,288.3331927479084 345.0595621549607,291.4805749973488 362,282 C 378.9404378450393,272.5194250026512 396.3605843332822,250.41089275851328 422,255 C 447.6394156667178,259.5891072414867 481.4981005119108,290.8758539685979 507,298 C 532.5018994880892,305.1241460314021 549.6470136190748,288.0856913670952 570,278 C 590.3529863809252,267.9143086329048 613.91384501179,264.78138056302146 642,265 C 670.08615498821,265.21861943697854 702.6976063337651,268.788786380819 728,265 C 753.3023936662349,261.211213619181 771.2957296531496,250.06347391370275 797,263 C 822.7042703468504,275.93652608629725 856.1194750536366,312.95731796437013 876,311 C 895.8805249463634,309.04268203562987 902.2263701323038,268.1072542288168 922,265 C 941.7736298676962,261.8927457711832 974.9750444171475,296.6136651203626 1005,297 C 1035.0249555828525,297.3863348796374 1061.8734521991062,263.4380852897326 1084,261 C 1106.1265478008938,258.5619147102674 1123.5311467864274,287.633993720707 1145,302 C 1166.4688532135726,316.366006279293 1192.0019606551846,316.0259398274393 1214,307 C 1235.9980393448154,297.9740601725607 1254.461010592835,280.26224696953557 1282,266 C 1309.538989407165,251.73775303046443 1346.1539969734758,240.9250722944184 1374,243 C 1401.8460030265242,245.0749277055816 1420.923001513262,260.0374638527908 1440,275 L 1440,500 L 0,500 Z");
  }
  75% {
    d: path("M 0,500 L 0,275 C 29.713095882101356,280.560891428823 59.42619176420271,286.12178285764605 81,296 C 102.57380823579729,305.87821714235395 116.0083288252905,320.0737599982387 136,308 C 155.9916711747095,295.9262400017613 182.5404929346353,257.58317714939915 212,254 C 241.4595070653647,250.41682285060088 273.82969943616826,281.59353140416476 299,293 C 324.17030056383174,304.40646859583524 342.1407093206914,296.04269723394196 362,277 C 381.8592906793086,257.95730276605804 403.607463281066,228.2356796600674 428,237 C 452.392536718934,245.7643203399326 479.42943755504496,293.0145841257886 507,310 C 534.570562444955,326.9854158742114 562.6747864987547,313.7059838367781 582,306 C 601.3252135012453,298.2940161632219 611.8714164499366,296.16148052709906 635,287 C 658.1285835500634,277.83851947290094 693.8395477014989,261.6480940548256 723,271 C 752.1604522985011,280.3519059451744 774.770392744068,315.2461432535983 796,311 C 817.229607255932,306.7538567464017 837.0788813222293,263.36733293078123 861,255 C 884.9211186777707,246.6326670692188 912.9140819670149,273.2845250232769 936,277 C 959.0859180329851,280.7154749767231 977.264790809711,261.49456697611123 1002,270 C 1026.735209190289,278.50543302388877 1058.026754794141,314.73720707227807 1087,311 C 1115.973245205859,307.26279292772193 1142.6281900137246,263.55660473477633 1163,248 C 1183.3718099862754,232.44339526522367 1197.4604851509605,245.03637398861662 1217,260 C 1236.5395148490395,274.9636260113834 1261.5298693824336,292.2978993107571 1290,296 C 1318.4701306175664,299.7021006892429 1350.4200373193046,289.7720287683551 1376,284 C 1401.5799626806954,278.2279712316449 1420.7899813403478,276.61398561582246 1440,275 L 1440,500 L 0,500 Z");
  }
  100% {
    d: path("M 0,500 L 0,275 C 29.558646931025528,280.5623745732965 59.117293862051056,286.124749146593 83,285 C 106.88270613794894,283.875250853407 125.08947148282127,276.0633779869244 147,267 C 168.91052851717873,257.9366220130756 194.52482020666392,247.62173890570924 221,244 C 247.47517979333608,240.37826109429076 274.8112476905231,243.44966639023863 295,243 C 315.1887523094769,242.55033360976137 328.23018903124375,238.57959553333615 350,250 C 371.76981096875625,261.42040446666385 402.26799618450195,288.231951476417 429,290 C 455.73200381549805,291.768048523583 478.69782623074843,268.49259856099593 502,262 C 525.3021737692516,255.50740143900404 548.9406988925041,265.7976542795991 572,264 C 595.0593011074959,262.2023457204009 617.5393781992352,248.31678432060755 640,258 C 662.4606218007648,267.68321567939245 684.9017883105554,300.9352084379708 711,305 C 737.0982116894446,309.0647915620292 766.8534685585433,283.9423819275091 796,281 C 825.1465314414567,278.0576180724909 853.6843374552714,297.295263851993 874,297 C 894.3156625447286,296.704736148007 906.4091816203711,276.8765626645189 930,279 C 953.5908183796289,281.1234373354811 988.6789360632445,305.1984854899315 1016,304 C 1043.3210639367555,302.8015145100685 1062.8750741266508,276.32949537575485 1082,259 C 1101.1249258733492,241.67050462424513 1119.8207674301516,233.4835330070491 1145,244 C 1170.1792325698484,254.5164669929509 1201.8418561527428,283.7363725960487 1229,290 C 1256.1581438472572,296.2636274039513 1278.811807958877,279.5709766087561 1301,271 C 1323.188192041123,262.4290233912439 1344.9109120117494,261.9797209689268 1368,264 C 1391.0890879882506,266.0202790310732 1415.5445439941254,270.5101395155366 1440,275 L 1440,500 L 0,500 Z");
  }
}
#sanatcilar .sanatcilarsvgholder .path-3 {
  animation: pathAnim-3 var(--waveanimationduration);
  animation-timing-function: var(--waveanimationtiming);
  animation-iteration-count: infinite;
}
@keyframes pathAnim-3 {
  0% {
    d: path("M 0,500 L 0,375 C 31.422538307675545,365.02560780589397 62.84507661535109,355.051215611788 84,365 C 105.15492338464891,374.948784388212 116.04223184627119,404.820745358742 140,402 C 163.9577681537288,399.179254641258 200.98599599956412,363.6658029532441 225,353 C 249.01400400043588,342.3341970467559 260.0137841554723,356.51604282828157 278,361 C 295.9862158445277,365.48395717171843 320.9588673785466,360.27002573362955 350,358 C 379.0411326214534,355.72997426637045 412.1507463303412,356.4038542372003 436,354 C 459.8492536696588,351.5961457627997 474.43814730008864,346.11455731756917 494,347 C 513.5618526999114,347.88544268243083 538.0966644693045,355.13791649252283 566,357 C 593.9033355306955,358.86208350747717 625.1751948226935,355.33377671233944 649,369 C 672.8248051773065,382.66622328766056 689.2025562399217,413.52697665811945 712,405 C 734.7974437600783,396.47302334188055 764.0145802176196,348.55831665518286 788,343 C 811.9854197823804,337.44168334481714 830.7391228896,374.2397567211492 854,392 C 877.2608771104,409.7602432788508 905.0289282239802,408.4826564602203 932,392 C 958.9710717760198,375.5173435397797 985.1451642144789,343.82961743796955 1007,347 C 1028.8548357855211,350.17038256203045 1046.3904149181042,388.19887378790156 1069,398 C 1091.6095850818958,407.80112621209844 1119.2931761131047,389.37488741042415 1145,371 C 1170.7068238868953,352.62511258957585 1194.4368806294772,334.3015765704018 1219,343 C 1243.5631193705228,351.6984234295982 1268.9593013689866,387.4188063079687 1294,396 C 1319.0406986310134,404.5811936920313 1343.7259138945751,386.0231981977232 1368,378 C 1392.2740861054249,369.9768018022768 1416.1370430527124,372.4884009011384 1440,375 L 1440,500 L 0,500 Z");
  }
  25% {
    d: path("M 0,500 L 0,375 C 27.93567998279199,385.9596814279041 55.87135996558398,396.9193628558082 83,389 C 110.12864003441602,381.0806371441918 136.45024012045607,354.2822300046715 155,344 C 173.54975987954393,333.7177699953285 184.3276795525917,339.9517171255058 206,356 C 227.6723204474083,372.0482828744942 260.2390416691771,397.9109014933053 286,397 C 311.7609583308229,396.0890985066947 330.7161537707,368.404676901273 354,370 C 377.2838462293,371.595323098727 404.8963432480232,402.47039090160285 432,411 C 459.1036567519768,419.52960909839715 485.6984732372075,405.71375949231555 511,391 C 536.3015267627925,376.28624050768445 560.309763803147,360.6745711291351 581,354 C 601.690236196853,347.3254288708649 619.0624715502046,349.58795599114404 641,357 C 662.9375284497954,364.41204400885596 689.4403499960347,376.9736049062888 715,372 C 740.5596500039653,367.0263950937112 765.1761284656563,344.5176243837007 787,350 C 808.8238715343437,355.4823756162993 827.85513614134,388.9558975589084 853,386 C 878.14486385866,383.0441024410916 909.4033269689835,343.65878538066556 934,346 C 958.5966730310165,348.34121461933444 976.5315559827256,392.40896091842933 1004,402 C 1031.4684440172744,411.59103908157067 1068.4704491001135,386.705370945617 1091,382 C 1113.5295508998865,377.294629054383 1121.5866476168205,392.7695552991026 1145,403 C 1168.4133523831795,413.2304447008974 1207.1829604326047,418.2164078579725 1236,410 C 1264.8170395673953,401.7835921420275 1283.6815106527602,380.36481326900736 1303,365 C 1322.3184893472398,349.63518673099264 1342.0909969563543,340.32433906599783 1365,343 C 1387.9090030436457,345.67566093400217 1413.9545015218227,360.3378304670011 1440,375 L 1440,500 L 0,500 Z");
  }
  50% {
    d: path("M 0,500 L 0,375 C 24.9359254943327,387.68571541212634 49.8718509886654,400.3714308242526 73,407 C 96.1281490113346,413.6285691757474 117.4485215396711,414.1999921151157 144,401 C 170.5514784603289,387.8000078848843 202.33406285265033,360.82860071528467 225,348 C 247.66593714734967,335.17139928471533 261.2152270497277,336.4856050237456 281,352 C 300.7847729502723,367.5143949762544 326.8050289484391,397.22897918973285 355,403 C 383.1949710515609,408.77102081026715 413.5646571565159,390.59847821732285 437,387 C 460.4353428434841,383.40152178267715 476.9363424254976,394.3771079409757 498,401 C 519.0636575745024,407.6228920590243 544.6899731414936,409.8930900187745 571,409 C 597.3100268585064,408.1069099812255 624.3037650085281,404.05053198392613 647,406 C 669.6962349914719,407.94946801607387 688.094966824394,415.9047820455206 715,401 C 741.905033175606,386.0952179544794 777.316367693896,348.3303398339913 799,350 C 820.683632306104,351.6696601660087 828.6395624000221,392.7738586185143 851,401 C 873.3604375999779,409.2261413814857 910.1253827060153,384.5742256919515 935,375 C 959.8746172939847,365.4257743080485 972.8589067759168,370.9292386136798 998,371 C 1023.1410932240832,371.0707613863202 1060.4389901903169,365.70881985332926 1090,358 C 1119.5610098096831,350.29118014667074 1141.3851324628156,340.23548197300295 1162,338 C 1182.6148675371844,335.76451802699705 1202.0204799584205,341.349252254659 1221,349 C 1239.9795200415795,356.650747745341 1258.532947703502,366.36750900836097 1285,365 C 1311.467052296498,363.63249099163903 1345.8477292275709,351.18071171189683 1373,351 C 1400.1522707724291,350.81928828810317 1420.0761353862144,362.9096441440516 1440,375 L 1440,500 L 0,500 Z");
  }
  75% {
    d: path("M 0,500 L 0,375 C 17.49983892563902,375.7911650166929 34.99967785127804,376.5823300333858 59,370 C 83.00032214872196,363.4176699666142 113.5011275205269,349.46184488314964 142,356 C 170.4988724794731,362.53815511685036 196.99581206661432,389.57029043401576 218,393 C 239.00418793338568,396.42970956598424 254.51562421301577,376.25699338078743 276,376 C 297.48437578698423,375.74300661921257 324.9416910813227,395.40173604283456 350,398 C 375.0583089186773,400.59826395716544 397.7176114616934,386.1360624478744 422,379 C 446.2823885383066,371.8639375521256 472.1878630719034,372.0540141656677 495,373 C 517.8121369280966,373.9459858343323 537.5309362506927,375.6478808894549 563,375 C 588.4690637493073,374.3521191105451 619.6883919253255,371.3544622765128 647,375 C 674.3116080746745,378.6455377234872 697.7154960480054,388.9342700044939 719,391 C 740.2845039519946,393.0657299955061 759.4496238826526,386.9084577055116 782,385 C 804.5503761173474,383.0915422944884 830.4860084213841,385.4318991734598 859,384 C 887.5139915786159,382.5681008265402 918.6063424318108,377.3639456006492 944,378 C 969.3936575681892,378.6360543993508 989.0886218513731,385.11231842394346 1007,386 C 1024.911378148627,386.88768157605654 1041.0391701626963,382.18678070357697 1067,389 C 1092.9608298373037,395.81321929642303 1128.754697497841,414.1405587617487 1160,404 C 1191.245302502159,393.8594412382513 1217.9420398459395,355.25098424942814 1237,352 C 1256.0579601540605,348.74901575057186 1267.4771431184008,380.85550424053855 1291,387 C 1314.5228568815992,393.14449575946145 1350.1493876804568,373.32699878841754 1377,367 C 1403.8506123195432,360.67300121158246 1421.9253061597715,367.83650060579123 1440,375 L 1440,500 L 0,500 Z");
  }
  100% {
    d: path("M 0,500 L 0,375 C 31.422538307675545,365.02560780589397 62.84507661535109,355.051215611788 84,365 C 105.15492338464891,374.948784388212 116.04223184627119,404.820745358742 140,402 C 163.9577681537288,399.179254641258 200.98599599956412,363.6658029532441 225,353 C 249.01400400043588,342.3341970467559 260.0137841554723,356.51604282828157 278,361 C 295.9862158445277,365.48395717171843 320.9588673785466,360.27002573362955 350,358 C 379.0411326214534,355.72997426637045 412.1507463303412,356.4038542372003 436,354 C 459.8492536696588,351.5961457627997 474.43814730008864,346.11455731756917 494,347 C 513.5618526999114,347.88544268243083 538.0966644693045,355.13791649252283 566,357 C 593.9033355306955,358.86208350747717 625.1751948226935,355.33377671233944 649,369 C 672.8248051773065,382.66622328766056 689.2025562399217,413.52697665811945 712,405 C 734.7974437600783,396.47302334188055 764.0145802176196,348.55831665518286 788,343 C 811.9854197823804,337.44168334481714 830.7391228896,374.2397567211492 854,392 C 877.2608771104,409.7602432788508 905.0289282239802,408.4826564602203 932,392 C 958.9710717760198,375.5173435397797 985.1451642144789,343.82961743796955 1007,347 C 1028.8548357855211,350.17038256203045 1046.3904149181042,388.19887378790156 1069,398 C 1091.6095850818958,407.80112621209844 1119.2931761131047,389.37488741042415 1145,371 C 1170.7068238868953,352.62511258957585 1194.4368806294772,334.3015765704018 1219,343 C 1243.5631193705228,351.6984234295982 1268.9593013689866,387.4188063079687 1294,396 C 1319.0406986310134,404.5811936920313 1343.7259138945751,386.0231981977232 1368,378 C 1392.2740861054249,369.9768018022768 1416.1370430527124,372.4884009011384 1440,375 L 1440,500 L 0,500 Z");
  }
}
#sanatcilar .sechead {
  color: #fff;
}
#sanatcilar .owlsanatcilar .owl-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
#sanatcilar .owlsanatcilar .owl-nav button {
  background-color: #000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  margin: 0 10px;
  transition: 0.3s ease;
  font-weight: 300;
}
#sanatcilar .owlsanatcilar .owl-nav button:hover {
  background-color: #fff;
  color: #000;
}
#sanatcilar .owlsanatcilar .owl-nav button.owl-prev span {
  padding-right: 2px;
  padding-bottom: 2px;
}
#sanatcilar .owlsanatcilar .owl-nav button.owl-next span {
  padding-left: 2px;
  padding-bottom: 2px;
}
#sanatcilar .owlsanatcilar .owl-nav button span {
  line-height: 40px;
  margin-bottom: 7px;
  font-size: 45px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sanatcilar .owlsanatcilar .owlsanatcicard {
  width: 100%;
  background-color: #000;
  transition: 0.3s ease;
}
#sanatcilar .owlsanatcilar .owlsanatcicard .owlsanatcicardimgholder {
  overflow: hidden;
  filter: grayscale(1) brightness(0.7);
  transition: 0.3s ease;
  position: relative;
  z-index: 2;
}
#sanatcilar .owlsanatcilar .owlsanatcicard .owlsanatcicardimgholder::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 60%;
  left: -5%;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}
#sanatcilar .owlsanatcilar .owlsanatcicard .owlsanatcicardimgholder::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 150%;
  left: -50%;
  top: -25%;
  transform: rotate(25deg);
  background-color: #fff;
  opacity: 0.7;
  filter: blur(15px);
  z-index: 1;
  transition: 1s ease;
}
#sanatcilar .owlsanatcilar .owlsanatcicard .owlsanatcicardimgholder img {
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
#sanatcilar .owlsanatcilar .owlsanatcicard .owlsanatcicardcontent {
  padding: 10px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin-top: -55px;
}
#sanatcilar .owlsanatcilar .owlsanatcicard .owlsanatcicardcontent .owlsanatcicardname {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 25px;
  font-weight: 300;
}
#sanatcilar .owlsanatcilar .owlsanatcicard .owlsanatcicardcontent a {
  width: -moz-max-content;
  width: max-content;
  padding: 5px 20px;
  color: var(--color);
  border: 1px solid var(--color);
  font-weight: 600;
  background-color: #000;
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: 15px;
  transition: 0.3s ease;
  transform: rotateX(90deg);
}
#sanatcilar .owlsanatcilar .owlsanatcicard .owlsanatcicardcontent a:hover {
  background-color: var(--color);
  color: #000;
}
#sanatcilar .owlsanatcilar .owlsanatcicard:hover .owlsanatcicardcontent a {
  transform: rotateX(0deg);
}
#sanatcilar .owlsanatcilar .owlsanatcicard:hover .owlsanatcicardimgholder {
  filter: grayscale(0) brightness(1);
}
#sanatcilar .owlsanatcilar .owlsanatcicard:hover .owlsanatcicardimgholder::after {
  left: 130%;
}
#sanatcilar .owlsanatcilar .owlsanatcicard:hover .owlsanatcicardimgholder img {
  transform: scale(1.1);
}

#mekanlar {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #mekanlar {
    padding: 20px 0 50px 0;
  }
}
#mekanlar .owlmekanlar img {
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

#contact {
  background-image: url("../img/contactbg.webp");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 100px 0;
}
#contact .container .sechead {
  color: var(--color);
}
@media screen and (max-width: 768px) {
  #contact .container .sechead {
    text-align: center;
  }
}
#contact .container form {
  padding: 25px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
#contact .container form input,
#contact .container form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  resize: none;
  outline: none;
  box-shadow: none;
  transition: 0.3s ease;
  background-color: transparent;
}
#contact .container form input:hover,
#contact .container form textarea:hover {
  border: 1px solid black;
}
#contact .container form button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background-color: transparent;
  border: 1px solid var(--color);
  color: var(--color);
  outline: none;
  box-shadow: none;
  transition: 0.3s ease;
}
#contact .container form button:hover {
  background-color: var(--color);
  color: #000;
}

footer {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 50px 0 120px 0;
  }
}
@media screen and (max-width: 768px) {
  footer .container .row > div {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
footer .container a.footerlogo img {
  width: 120px;
  max-width: 100%;
}
footer .container .footercontact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .container .footercontact .footercontactitem {
  display: flex;
  align-items: center;
  margin: 10px 0;
  flex-direction: column;
}
footer .container .footercontact .footercontactitem span {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid var(--color);
  margin-bottom: 10px;
}
footer .container .footercontact .footercontactitem p,
footer .container .footercontact .footercontactitem a {
  color: #000;
  text-align: center;
  text-decoration: none;
  margin: 0;
}
footer .container .footersocialmedia {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  footer .container .footersocialmedia {
    flex-direction: row;
  }
}
footer .container .footersocialmedia li {
  margin: 5px 0;
}
@media screen and (max-width: 768px) {
  footer .container .footersocialmedia li {
    margin: 0 5px;
  }
}
footer .container .footersocialmedia li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color);
  color: #fff;
  font-size: 20px;
  border: 1px solid var(--color);
  box-shadow: 0px 8px 10px 3px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}
footer .container .footersocialmedia li a:hover {
  background-color: #fff;
  color: var(--color);
}

.detailpage .detailpageheader {
  padding: 220px 0 30px 0;
  background-color: #000;
  background-image: url("../img/detailbg.webp");
  background-size: cover;
  background-position: bottom center;
}
@media screen and (max-width: 768px) {
  .detailpage .detailpageheader {
    padding: 150px 0 30px 0;
  }
}
.detailpage .detailpageheader .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .detailpage .detailpageheader .container {
    flex-wrap: wrap;
  }
}
.detailpage .detailpageheader .container .detailpagehead {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .detailpage .detailpageheader .container .detailpagehead {
    display: block;
    width: 100%;
  }
}
.detailpage .detailpageheader .container .detailpagedate {
  background-color: var(--color);
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 15px;
  margin-left: auto;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .detailpage .detailpageheader .container .detailpagedate {
    margin-left: 0;
    margin-right: 0;
  }
}
.detailpage .detailpageheader .container .detailpagedate i {
  margin-right: 5px;
}
.detailpage .detailpageheader .container .detailpagelocation {
  background-color: var(--colordarker);
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 15px;
}
.detailpage .detailpageheader .container .detailpagelocation i {
  margin-right: 5px;
}
.detailpage .detailpageinner {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .detailpage .detailpageinner .container .row {
    flex-direction: column-reverse;
  }
}
.detailpage .detailpageinner img {
  border-radius: 20px;
}
.detailpage .detailpageinner .ql-size-small {
  font-size: 13px;
}
.detailpage .detailpageinner .ql-size-large {
  font-size: 22px;
}
.detailpage .detailpageinner .ql-size-huge {
  font-size: 32px;
}
.detailpage .detailpageinner a {
  text-decoration: none;
  color: var(--color);
}/*# sourceMappingURL=style.css.map */