@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("texture.css");
@import url("spinners.css");

:root {
  --header: 8rem;
  --mainColor: #db1f37;
  --mainColorHover: #444;
  --footer: #1a1818;
  --wpfirst: #25d366;
  --wpsecond: #075e54;
}

@media (min-width: 768px) {
  :root {
    --header: 10rem;
  }
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-size-adjust: 100%;
  margin-right: 0 !important;
  -ms-overflow-style: scrollbar;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  color: #333;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

::-moz-selection {
  background-color: var(--mainColor);
  color: #fff;
}

::selection {
  background-color: var(--mainColor);
  color: #fff;
}

body::-webkit-scrollbar {
  width: 1rem;
}

body::-webkit-scrollbar-track {
  background-color: #fff;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

button {
  outline: none;
  background-color: transparent;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

.container-fluid {
  padding: 0 2rem;
}

.equal [class^="col"] {
  display: flex;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  padding: 1rem;
  font-size: 1.6rem;
  border: 0.1rem solid #eaeaea;
  transition: all 300ms ease;
}

.form-control,
.form-control:hover,
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.form-control:hover,
.form-control:focus {
  border: 0.1rem solid #ddd;
}

label {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

button[type="submit"] {
  border-radius: 0.3rem;
  background-color: var(--mainColor);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  transition: all 300ms ease;
}

button[type="submit"]:hover {
  background-color: var(--mainColorHover);
  color: #fff;
}

.offscroll {
  overflow-y: hidden !important;
}

.mb1 {
  margin-bottom: 1rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 500;
}

.navbarmain {
  height: var(--header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbarmainleft {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.navbarmainleft figure {
  height: 100%;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 8rem;
}

@media (min-width: 450px) {
  .navbarmainleft figure {
    width: 12rem;
  }
}

@media (min-width: 1400px) {
  .navbarmainleft figure {
    width: 14rem;
  }
}

.headermenu {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 10rem);
  padding-left: 3rem;
  column-gap: 2rem;
  cursor: pointer;
}

@media (min-width: 1400px) {
  .headermenu {
    width: calc(100% - 12rem);
    padding-left: 5rem;
    column-gap: 3rem;
  }
}

.headermenuitem {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.headermenuitem i {
  display: inline-block;
  transition: all 300ms ease;
  color: #333;
}

.headermenuitem:hover .mainicon {
  transform: rotate(-180deg);
}

.headermenuitem p,
.headermenuitem a {
  font-weight: 600;
  font-size: 1.5rem;
  color: #333;
  transition: all 300ms ease;
}

.headermenuitem:hover p,
.headermenuitem:hover .mainicon,
.headermenuitem:hover a {
  color: var(--mainColor);
}

.headermenudropdowns {
  position: absolute;
  z-index: 5;
  top: 100%;
  left: -5rem;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 25rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
  border-radius: 0 0 0.3rem 0.3rem;
}

.headermenuitem:hover .headermenudropdowns {
  display: block;
  transform: perspective(600px) rotateX(0deg);
}

.headermenudropdowns a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem !important;
  color: #333 !important;
  border-radius: 0.3rem;
  padding: 1rem;
  transition: all 300ms ease;
}

.headermenudropdowns a:hover {
  background-color: var(--mainColor);
  color: #fff !important;
}

.headermenudropdowns a:not(:last-child) {
  margin-bottom: 0.3rem;
}

.headermenudropdowns a i {
  font-weight: 500 !important;
  color: var(--mainColor) !important;
  font-size: 1.5rem;
  transition: all 300ms ease;
  display: inline-block;
}

.headermenudropdowns a:hover i {
  color: #fff !important;
  transform: rotate(45deg);
}

.navbarmainright {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.gtranslateflex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 2rem;
  column-gap: 0.5rem;
}

@media (min-width: 768px) {
  .gtranslateflex {
    margin-right: 1rem;
  }
}

@media (min-width: 1200px) {
  .gtranslateflex {
    margin-right: 0;
  }
}

.gtranslateflex img {
  width: 2.5rem;
}

.applicationlink {
  border: 0.2rem solid var(--mainColor);
  padding: 1rem 2rem;
  color: var(--mainColor);
  transition: all 300ms ease;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 0.3rem;
  display: inline-block;
  animation: changeBG 2s ease-in-out infinite;
}

.applicationlink i {
  font-weight: 400;
  margin-right: 0.5rem;
}

.applicationlink:hover {
  background-color: var(--mainColor);
  color: #fff;
}

#mobilemenuicon {
  border: none;
  background-color: transparent;
  font-size: 1.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
}

.slide {
  position: relative;
  margin-top: var(--header);
  height: 40rem;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 576px) {
  .slide {
    height: 45rem;
  }
}

@media (min-width: 768px) {
  .slide {
    height: 50rem;
  }
}

@media (min-width: 1200px) {
  .slide {
    height: auto;
  }
}

.swiperslide {
  height: 100%;
}

.swiperslide .swiper-item {
  height: 100%;
}

.slideside {
  background-color: #eaeaea;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.slidevideo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.youtube-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.youtube-background iframe {
  width: 100vw;
  height: 56.25vw; /* 16:9 Aspect Ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 Aspect Ratio */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 1200px) {
  .slideside {
    background-image: none !important;
  }
}

.slideside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.slideside::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  clip-path: polygon(0 0, 43% 0, 100% 100%, 0% 100%);
  background-color: rgba(232, 82, 47, 0.1);
  z-index: 0;
}

.slidesidetext {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 500px) {
  .slidesidetext {
    width: 40rem;
  }
}

@media (min-width: 576px) {
  .slidesidetext {
    width: 45rem;
  }
}

@media (min-width: 768px) {
  .slidesidetext {
    width: 50rem;
  }
}

@media (min-width: 992px) {
  .slidesidetext {
    width: 60rem;
  }
}

@media (min-width: 1200px) {
  .slidesidetext {
    padding-left: 20rem;
    width: 60%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (min-width: 1400px) {
  .slidesidetext {
    width: 75rem;
    padding-left: 18rem;
  }
}

@media (min-width: 1600px) {
  .slidesidetext {
    width: 90rem;
    padding-left: 28rem;
  }
}

.slidesidetext .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.slidesidetext .content h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .slidesidetext .content h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768) {
  .slidesidetext .content h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 992px) {
  .slidesidetext .content h1 {
    font-size: 4rem;
  }
}

@media (min-width: 1200px) {
  .slidesidetext .content h1 {
    font-size: 6rem;
  }
}

@media (min-width: 1600px) {
  .slidesidetext .content h1 {
    font-size: 7rem;
  }
}

.slidesidetext .content p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

@media (min-width: 1500px) {
  .slidesidetext .content p {
    font-size: 1.8rem;
  }
}

.slidebadge {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-left: 0.5rem solid var(--mainColor);
  border-radius: 0 0.3rem 0.3rem 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}

@media (min-width: 768px) {
  .slidebadge {
    font-size: 1.6rem;
  }
}

.slidelink {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.3rem;
  background-color: var(--mainColor);
  color: #fff;
  font-weight: 500;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  margin-top: 2rem;
  transition: all 300ms ease;
}

@media (min-width: 768px) {
  .slidelink {
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }
}

.slidelink i {
  transition: all 300ms ease;
  margin-left: 0.5rem;
}

.slidelink:hover i {
  transform: translateX(0.5rem);
}

.slidelink:hover {
  background-color: var(--mainColorHover);
}

.slide .swiper-pagination-bullet {
  width: 3rem;
  height: 0.5rem;
  border-radius: 0.1rem;
  background-color: #fff;
}

.slide .swiper-pagination-bullet-active {
  background-color: var(--mainColor) !important;
}

.swiperslide .swiper-slide-active .slidesidetext .content .slidebadge {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.6s;
}

.swiperslide .swiper-slide-active .slidesidetext .content h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 1.2s;
}

.swiperslide .swiper-slide-active .slidesidetext .content p {
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 1.8s;
}

.swiperslide .swiper-slide-active .slidesidetext .content .slidelink {
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 2.4s;
}

.maincarousel {
  padding: 2rem 0;
  background-color: #fff;
}

.maincarousel .swiper-slide {
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
  .maincarousel .swiper-slide {
    height: 5rem;
  }
}

.maincarousel .swiper-slide figure {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.maincarousel .swiper-slide figure img {
  height: 100%;
  object-fit: contain;
  aspect-ratio: 2/1;
  mix-blend-mode: multiply;
  filter: grayscale(1);
  transition: all 300ms ease;
}

.maincarousel .swiper-slide figure:hover img {
  filter: grayscale(0);
}

.padding {
  padding: 5rem 0;
}

@media (min-width: 1200px) {
  .padding {
    padding: 8rem 0;
  }
}

.alignLeft {
  align-items: flex-start;
  margin: 0 0 3rem 0 !important;
  text-align: left !important;
}

.alignCenter {
  align-items: center;
}

.mainhometitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .mainhometitle {
    width: 70rem;
  }
}

@media (min-width: 1200px) {
  .mainhometitle {
    width: 60rem;
  }
}

.mainhometitlebadge {
  background-color: rgba(232, 82, 47, 0.2);
  border-radius: 5rem;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

.mainhometitlebadge span {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--mainColor);
  font-weight: 600;
}

@media (min-width: 768px) {
  .mainhometitlebadge span {
    font-size: 1.6rem;
  }
}

.mainhometitle h2 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .mainhometitle h2 {
    font-size: 3.5rem;
  }
}

.mainhometitle p {
  font-size: 1.5rem;
  opacity: 0.8;
  font-weight: 500;
}

@media (min-width: 768px) {
  .mainhometitle p {
    font-size: 1.6rem;
  }
}

.animatedbars {
  margin: 2rem 0 1rem 0;
}

.animatedbarsline {
  border-radius: 1rem;
  height: 0.5rem;
  background-color: rgba(232, 82, 47, 0.2);
  width: 12rem;
  position: relative;
}

.animatedbarsline .circle {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  top: -0.28rem;
  animation: rnl 3s ease-in-out infinite;
}

@keyframes rnl {
  0% {
    left: 0;
  }

  50% {
    left: calc(100% - 1rem);
  }

  100% {
    left: 0;
  }
}

.iconboxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 0.3rem;
  background-color: #fff;
  transition: all 300ms ease;
  margin-bottom: 2rem;
}

.iconboxes:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transform: translateY(-1rem);
}

.iconboxes figure {
  width: 6rem;
  height: 6rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.iconboxes .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 2rem;
}

.iconboxes .content h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.iconboxes .content h3 a {
  color: #333;
  transition: color 300ms ease;
}

.iconboxes:hover .content h3 a {
  color: var(--mainColor);
}

.iconboxes .content h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  flex: 1;
  color: var(--mainColor);
}

.iconboxes .content p {
  opacity: 0.8;
  font-size: 1.6rem;
  flex: 1;
}

.iconboxlink {
  display: inline-block;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--mainColor);
  margin-top: 2rem;
  transition: all 300ms ease;
}

.iconboxlink:hover {
  color: var(--mainColorHover);
}

.iconboxlink i {
  display: inline-block;
  transition: all 300ms ease;
}

.iconboxlink:hover i {
  transform: translateX(0.3rem);
}

.iconboxes:hover .iconboxlink i {
  transform: translateX(0.3rem);
}

@media (min-width: 992px) {
  .rowsize {
    width: 85rem;
    margin: 0 auto;
  }

  .jc-center {
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .rowsize {
    width: 100rem;
  }
}

.shadow {
  box-shadow: 0 1px 2px rgb(0 0 0 / 2%), 0 2px 4px rgb(0 0 0 / 2%),
    0 4px 8px rgb(0 0 0 / 2%), 0 8px 16px rgb(0 0 0 / 2%),
    0 16px 32px rgb(0 0 0 / 2%), 0 32px 64px rgb(0 0 0 / 2%);
}

.w100 {
  width: 100%;
}

.programbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #fff;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  position: relative;
  z-index: 1;
}

@media (min-width: 576px) {
  .programbox {
    flex-direction: initial;
    justify-content: flex-start;
    align-items: center;
  }
}

.programbox figure {
  border-radius: 0.5rem;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
  .programbox figure {
    width: 15rem;
    height: 15rem;
  }
}

@media (min-width: 768px) {
  .programbox figure {
    width: 20rem;
    height: 20rem;
  }
}

.programbox figure a {
  width: 100%;
  height: 100%;
}

.programbox figure img {
  height: 100%;
  object-fit: cover;
  transition: all 900ms ease;
  aspect-ratio: 1.5;
}

@media (min-width: 576px) {
  .programbox figure img {
    aspect-ratio: 0;
  }
}

.programbox:hover figure img {
  transform: scale(1.2) rotate(5deg);
  filter: blur(1px) brightness(80%);
}

.programbox .content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 576px) {
  .programbox .content {
    width: calc(100% - 15rem);
    padding: 0 0 0 3rem;
  }
}

@media (min-width: 768px) {
  .programbox .content {
    width: calc(100% - 20rem);
  }
}

.programbox .content h3 {
  font-weight: 900;
  margin-bottom: 1rem;
}

.programbox .content h3 a {
  transition: color 300ms ease;
  color: #333;
}

.programbox .content p {
  font-size: 1.6rem;
  opacity: 0.8;
}

@media (min-width: 576px) {
  .programbox .content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    /* 4 satırda kes */
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 1200px) {
  .programbox .content p {
    -webkit-line-clamp: 5;
  }
}

.programbox:hover .content h3 a {
  color: var(--mainColor);
}

@media (min-width: 992px) {
  .affix {
    top: 15rem;
    position: sticky;
  }
}

.programss {
  position: relative;
  background-color: #fbfbfb;
}

.mainhomelink {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--mainColor);
  border: 0.2rem solid var(--mainColor);
  border-radius: 0.3rem;
  color: #fff;
  font-weight: 500;
  margin-top: 2rem;
  transition: all 300ms ease;
}

@media (min-width: 768px) {
  .mainhomelink {
    padding: 1.5rem 3rem;
  }
}

.mainhomelink:hover {
  color: var(--mainColor);
  background-color: transparent;
  border: 0.2rem solid var(--mainColor);
}

.footer {
  padding: 5rem 0;
  background-color: var(--footer);
  overflow: hidden;
}

.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footerbox h4 {
  color: #fff;
  font-weight: 700;
  position: relative;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footerbox h4 {
    font-size: 1.6rem;
  }
}

.footerbox ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footerbox ul li {
  padding: 0.5rem 0;
  transition: all 300ms ease;
}

.footerbox ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  transition: color 300ms ease;
}

.footerbox ul li:hover {
  transform: translateX(0.5rem);
}

.footerbox ul li:hover a {
  color: rgba(255, 255, 255, 1);
}

.footerbox2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
}

@media (min-width: 576px) {
  .footerbox2 {
    align-items: flex-start;
  }
}

@media (min-width: 1200px) {
  .footerbox2 {
    text-align: left;
    margin-bottom: 0;
  }
}

.footerlogo {
  width: 15rem;
}

.actbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}

.actbox figure {
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  flex: 2.8;
}

.actbox figure img {
  transition: all 800ms ease;
  object-fit: cover;
  aspect-ratio: 1.5;
  height: 100%;
}

@media (min-width: 576px) {
  .actbox figure img {
    aspect-ratio: 0;
  }
}

.actbox:hover figure img {
  transform: scale(1.2) rotate(5deg);
  filter: blur(1px) brightness(80%);
}

.actboxribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--mainColor);
  border-radius: 0.3rem;
  padding: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.actboxribbon.completed {
  background-color: #777;
}

.actboxribbon span {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
}

@media (min-width: 1200px) {
  .actboxribbon span {
    font-size: 1.5rem;
  }
}

.actbox .content {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.actbox .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  flex: 1;
}

.actbox .content h3 a {
  color: #333;
  transition: color 300ms ease;
}

.actbox:hover .content h3 a {
  color: var(--mainColor);
}

.actbox .content p {
  font-size: 1.5rem;
  font-weight: 500;
}

.actbox .content p i {
  margin-right: 0.3rem;
}

.footercontact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 1200px) {
  .footercontact {
    align-items: flex-end;
    text-align: left;
  }
}

.footercontact a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 300ms ease;
  text-align: left;
}

@media (min-width: 1200px) {
  .footercontact a {
    width: 35rem;
    align-items: center;
  }
}

.footercontact a:hover {
  color: rgba(255, 255, 255, 1);
}

.footercontact a:hover i {
  color: var(--mainColor);
}

.footercontact a i {
  margin-right: 1rem;
}

.footercontact a:not(:last-child) {
  margin-bottom: 1rem;
}

.back2top {
  position: fixed;
  bottom: 2rem;
  right: -10rem;
  z-index: 500;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--mainColor);
  transition: all 400ms ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.back2top:hover {
  background-color: var(--mainColorHover);
}

.back2top i {
  font-size: 2.5rem;
  color: #fff;
  display: inline-block;
}

.opns {
  right: 2rem !important;
  transform: rotate(-360deg) !important;
}

.opns i {
  animation: upNdown linear 2s infinite;
}

@keyframes upNdown {
  0% {
    transform: translateY(1rem);
  }

  25% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1rem);
  }

  75% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(1rem);
  }
}

.fixed-rocket-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 999;
  background: linear-gradient(135deg, #db1f37 0%, #ff4d64 100%);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(219, 31, 55, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.fixed-rocket-btn:hover {
  transform: translateY(-8px) scale(1.05) rotate(-1deg);
  box-shadow: 0 15px 45px rgba(219, 31, 55, 0.6);
  background: linear-gradient(135deg, #ff4c64 0%, #db1f37 100%);
}

.fixed-rocket-btn .rocket-icon {
  font-size: 2.2rem;
  display: inline-block;
  animation: rocket-vibrate 0.6s infinite ease-in-out alternate;
}

@keyframes rocket-vibrate {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 768px) {
  .fixed-rocket-btn {
    bottom: 20px;
    left: 20px;
    padding: 10px 18px;
    font-size: 1.3rem;
    gap: 8px;
  }
  .fixed-rocket-btn .rocket-icon {
    font-size: 1.8rem;
  }
}

.marquee {
  width: 100%;
  /* Tam genişlik */
  overflow: hidden;
  /* Taşan kısımları gizler */
  white-space: nowrap;
  /* Satır kırılmasını engeller */
  box-sizing: border-box;
  background-color: var(--mainColor);
  /* Arka plan rengi */
  padding: 2rem 0;
  /* Üst-alt boşluk */
}

.marquee-content {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5rem;
  animation: scrollLeft 30s linear infinite;
  /* Sürekli ve düzgün hareket */
  font-size: 1.5rem;
  /* Yazı boyutu */
  color: #333;
  /* Yazı rengi */
}

.marquee-content p {
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  font-weight: 500;
}

.marquee-content p:not(:last-child)::after {
  content: "\EA54";
  font-family: "remixicon";
  right: -3rem;
  color: #fff;
  font-size: 1.4rem;
  position: absolute;
  top: 0.2rem;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(100%);
    /* Başlangıç noktası sağ */
  }

  100% {
    transform: translateX(-100%);
    /* Bitiş noktası sol */
  }
}

.blogcontent h3 {
  flex: 0 !important;
}

.blogcontent p {
  flex: 1;
  margin-bottom: 1rem;
}

.bloglink {
  color: var(--mainColor);
  font-weight: 600;
  font-size: 1.5rem;
  transition: all 300ms ease;
}

.bloglink:hover {
  color: var(--mainColorHover);
}

.dates {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 0.3rem;
  width: 6rem;
  height: 6rem;
  z-index: 1;
}

.dates h3 {
  font-size: 1.6rem;
  font-weight: 900;
}

.dates p {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.8;
}

.headersocialmedia {
  margin-right: 1rem;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.3rem;
}

@media (min-width: 768px) {
  .headersocialmedia {
    margin-right: 2rem;
  }
}

.headersocialmedia a {
  width: 3rem;
  height: 3rem;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 0.3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  transition: all 300ms ease;
}

.headersocialmedia a:hover {
  background-color: var(--mainColorHover);
  color: #fff;
}

@keyframes changeBG {
  0% {
    background-color: #fff;
    color: var(--mainColor);
  }

  25% {
    background-color: var(--mainColor);
    color: #fff;
  }

  75% {
    background-color: var(--mainColor);
    color: #fff;
  }

  100% {
    background-color: #fff;
    color: var(--mainColor);
  }
}

.glink {
  color: #333;
  transition: all 300ms ease;
}

.gt-current-lang {
  color: var(--mainColor) !important;
  font-weight: 700 !important;
}

.banner {
  background-image: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: var(--header);
  position: relative;
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .banner {
    padding: 8rem 0;
  }
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.bannercontent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.bannercontent h1 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 400px) {
  .bannercontent h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 576px) {
  .bannercontent h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .bannercontent h1 {
    font-size: 4rem;
  }
}

.bannercontent ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .bannercontent ul {
    flex-wrap: nowrap;
  }
}

.bannercontent ul li {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 576px) {
  .bannercontent ul li {
    font-size: 1.6rem;
  }
}

.bannercontent ul li:not(:last-child)::after {
  content: "\EA54";
  font-family: "remixicon";
  position: absolute;
  right: -2.2rem;
  top: -0.1rem;
  color: #fff;
  font-size: 1.6rem;
}

@media (min-width: 576px) {
  .bannercontent ul li:not(:last-child)::after {
    top: 0.1rem;
  }
}

.bannercontent ul li.active {
  color: var(--mainColor);
  font-weight: 800;
}

.bannercontent ul li a {
  font-size: 1.5rem;
  color: #fff;
  transition: color 300ms ease;
}

@media (min-width: 576px) {
  .bannercontent ul li a {
    font-size: 1.6rem;
  }
}

.bannercontent ul li:hover a {
  color: var(--mainColor);
}

.refbox {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding: 2rem 3rem;
  background-color: #fff;
  transition: all 300ms ease;
  border-radius: 0.3rem;
  border: 0.2rem solid transparent;
}

@media (min-width: 420px) {
  .refbox {
    padding: 2rem 5rem;
  }
}

@media (min-width: 576px) {
  .refbox {
    padding: 2rem 3rem;
  }
}

@media (min-width: 992px) {
  .refbox {
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .refbox {
    padding: 1rem 4rem;
  }
}

.refbox:hover {
  border: 0.2rem solid #eaeaea;
}

.refbox img {
  object-fit: contain;
  filter: grayscale(1);
  transition: all 300ms ease;
}

.refbox:hover img {
  filter: grayscale(0);
}

.userboxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  background-color: #f3f3f3;
  position: relative;
  padding: 1rem;
  border-radius: 1rem 1rem 0 0;
  transition: all 300ms ease;
}

.userboxes:hover {
  background-color: var(--mainColor);
}

.userboxes .userimages {
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 576px) {
  .userboxes .userimages {
    height: 25rem;
  }
}

.userboxes .userimages img {
  transition: all 900ms ease;
  object-fit: cover;
  height: 100%;
}

.userboxes:hover .userimages img {
  transform: scale(1.2);
  filter: blur(1px) brightness(80%);
}

.userboxes .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem 1rem;
  background-color: #f3f3f3;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.userboxes .content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  flex: 1;
  margin-bottom: 0.5rem;
}

.userboxes .content h3 span {
  font-weight: 900;
}

.userboxes .content p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mainColor);
}

.userboxes .content .userrol {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  margin-top: 1rem;
}

.userboxes .content .userrol figure {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .userboxes .content .userrol figure {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.userlinkedin {
  position: absolute;
  top: 1rem;
  right: -10rem;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 0.3rem;
  transition: all 500ms linear;
}

.userlinkedin a {
  font-size: 1.6rem;
  color: #333;
  transition: all 300ms ease;
}

.userlinkedin:hover a {
  color: var(--mainColor);
}

.userboxes:hover .userlinkedin {
  right: 1rem;
}

@media (min-width: 1200px) {
  .col-xl-5 {
    width: 20%;
    flex: 0 0 auto;
  }
}

.texturetitle {
  margin-bottom: 2rem;
}

.texturetitle h2 {
  font-size: 2rem;
  font-weight: 900;
}

@media (min-width: 576px) {
  .texturetitle h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .texturetitle h2 {
    font-size: 3rem;
  }
}

.texturetitle p {
  color: var(--mainColor);
  margin-top: 0.5rem;
  font-weight: 600;
}

.othersolutions {
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

.othersolutions a {
  padding: 1rem;
  color: #333;
  font-size: 1.5rem;
  transition: all 300ms ease;
  width: 100%;
  display: block;
  border-radius: 0.5rem;
  font-weight: 500;
}

@media (min-width: 576px) {
  .othersolutions a {
    font-size: 1.6rem;
  }
}

.othersolutions a:not(:last-child) {
  margin-bottom: 0.5rem;
}

.othersolutions a:hover {
  background-color: var(--mainColor);
  color: #fff;
}

@media (min-width: 992px) {
  .pl5 {
    padding-left: 3rem;
  }
}

@media (min-width: 1200px) {
  .pl5 {
    padding-left: 5rem;
  }
}

.solutionaffix figure {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.solutionaffix figure img {
  object-fit: cover;
  aspect-ratio: 1.2;
}

@media (min-width: 576px) {
  .solutionaffix figure img {
    aspect-ratio: 1.5;
  }
}

@media (min-width: 768px) {
  .solutionaffix figure img {
    aspect-ratio: 2;
  }
}

@media (min-width: 992px) {
  .solutionaffix figure img {
    aspect-ratio: 1;
  }
}

.contactbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .contactbox {
    margin-bottom: 0;
  }
}

.contactboxhead {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.contactboxhead h2 {
  font-size: 2rem;
  font-weight: 600;
}

@media (min-width: 576px) {
  .contactboxhead h2 {
    font-size: 2.2rem;
  }
}

@media (min-width: 768px) {
  .contactboxhead h2 {
    font-size: 2.5rem;
  }
}

.contactboxhead p {
  font-size: 1.6rem;
  font-style: italic;
  margin-top: 1rem;
}

.contactboxitem {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contactboxitem:not(:last-child) {
  margin-bottom: 1rem;
}

.contactboxitemhead {
  margin-bottom: 1rem;
  background-color: #f5f5f5;
  border-radius: 0.3rem;
  padding: 1rem;
}

.contactboxitemhead h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

.contactboxitemhead h3 i {
  color: var(--mainColor);
  font-weight: 400;
}

.contactboxitem a {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  transition: all 300ms ease;
}

.contactboxitem a i {
  color: var(--mainColor);
}

.contactboxitem a:hover {
  color: var(--mainColorHover);
}

.contactboxitem a:not(:last-child) {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .pl12 {
    padding-left: 5rem;
  }
}

@media (min-width: 1200px) {
  .pl12 {
    padding-left: 12rem;
  }
}

.contactboxitemsocialmedia {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
}

.contactboxitemsocialmedia a {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--mainColor);
  border-radius: 0.3rem;
  transition: all 300ms ease;
}

.contactboxitemsocialmedia a:hover {
  background-color: var(--mainColorHover);
  color: #fff;
}

.contactboxitemsocialmedia a i {
  color: #fff !important;
}

.contactboxitemsocialmedia a {
  margin: 0 !important;
}

.wp {
  border-radius: 0.3rem;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--wpfirst);
  color: #fff !important;
  text-align: center;
}

.wp i {
  color: #fff !important;
}

.wp:hover {
  color: #fff;
  background-color: var(--wpsecond) !important;
}

.mobilemenu {
  position: fixed;
  z-index: 400;
  background-color: #fff;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  padding: var(--header) 2rem 2rem 2rem;
  overflow-y: auto;
  transition: all 300ms linear;
}

.left0 {
  left: 0 !important;
}

.mobilemenu::-webkit-scrollbar {
  display: none;
}

.mobilemenumainlink {
  border-radius: 0.3rem;
  padding: 1rem;
  transition: all 300ms ease;
  color: #333;
  font-size: 1.5rem;
  display: block;
  width: 100%;
}

.mobilemenumainlink:hover {
  background-color: var(--mainColor);
  color: #fff;
}

.mobilemenudropdown {
  width: 100%;
  border-radius: 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
}

.mobilemenudropdown p {
  color: #333;
  font-size: 1.5rem;
}

.mobilemenudropdowncontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: #f9f9f9;
  display: none;
}

.mobilemenudropdownlink {
  border-radius: 0.3rem;
  display: block;
  padding: 1rem;
  font-size: 1.5rem;
  color: #333;
  transition: all 300ms ease;
}

.mobilemenudropdownlink:hover {
  background-color: var(--mainColor);
  color: #fff;
}

#applyact {
  border-radius: 0.3rem;
  background-color: var(--mainColor);
  padding: 1rem;
  display: block;
  width: 100%;
  border: none;
  color: #fff;
  transition: all 300ms ease;
}

#applyact:hover {
  background-color: var(--mainColorHover);
  color: #fff;
}

.modal-body {
  padding: 5rem;
}

.modal-header {
  padding: 2rem 5rem;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
}

.swal2-popup {
  font-size: 1.3rem !important;
}

.swal2-actions button {
  outline: none !important;
  box-shadow: none !important;
}

.refcategory {
  width: 100%;
  background-color: var(--mainColor);
  margin-bottom: 2rem;
  padding: 1rem;
  text-align: center;
  border-radius: 0.3rem;
}

.refcategory h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 576px) {
  .refcategory h3 {
    font-size: 1.6rem;
  }
}

.refboxes {
  background-color: #fff;
  border-radius: 0.3rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2rem;
  height: 12rem;
}

.refboxes img {
  object-fit: contain;
  aspect-ratio: 3 / 1;
  transition: all 300ms ease;
}

@media (min-width: 1200px) {
  .refboxes img {
    aspect-ratio: 6 / 2.5;
  }
}

.programlinks {
  border-radius: 0.3rem;
  padding: 1.5rem 2rem;
  display: inline-block;
  font-size: 1.5rem;
  background-color: var(--mainColor);
  transition: all 300ms ease;
  color: #fff;
  font-weight: 500;
  margin-top: 2rem;
}

@media (min-width: 576px) {
  .programlinks {
    font-size: 1.6rem;
  }
}

.programlinks:hover {
  background-color: var(--mainColorHover);
  color: #fff;
}

@font-face {
  font-family: pill;
  src: url(../fonts/magnolia_sky.ttf);
}

.footerend {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.1);
}

.footerend a {
  color: #fff;
  transition: color 300ms ease;
  font-size: 2.5rem;
  font-family: pill;
}

.footerend a:hover {
  color: var(--mainColor);
}

.rezervation {
  margin-bottom: 2rem;
  width: 100%;
  border: none;
  border-radius: 0.3rem;
  padding: 1rem;
  background-color: var(--mainColor);
  color: #fff;
  font-weight: 500;
  transition: all 300ms ease;
}

.rezervation:hover {
  background-color: var(--mainColorHover);
  color: #fff;
}

.docfile {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 0.1rem solid #eaeaea;
  border-radius: 0.3rem;
  margin-top: 1rem;
}

.docfile figure {
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.docfile .content {
  width: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
}

.docfile .content p {
  font-size: 1.5rem;
  font-weight: 500;
}

.docfile .content a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--mainColor);
  transition: color 300ms ease;
}

.docfile .content a:hover {
  color: var(--mainColorHover);
}

.form-textside p {
  font-size: 1.5rem;
  font-weight: 500;
}

.eximageside {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .eximageside {
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 2rem;
    margin-bottom: 0;
  }
}

.eximagesidemain {
  width: 100%;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .eximagesidemain {
    width: 35%;
    margin-bottom: 0;
  }
}

.eximagesidemain figure {
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.eximagesidemain figure img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.5;
  transition: all 1.6s ease-in-out;
}

.eximagesideothers {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 992px) {
  .eximagesideothers {
    width: calc(100% - 35%);
  }
}

.eximagesideothers figure {
  width: 46.3%;
  border-radius: 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .eximagesideothers figure {
    width: 48.3%;
  }
}

@media (min-width: 992px) {
  .eximagesideothers figure {
    width: 47.6%;
  }
}

@media (min-width: 1200px) {
  .eximagesideothers figure {
    width: 48%;
  }
}

@media (min-width: 1400px) {
  .eximagesideothers figure {
    width: 48.3%;
  }
}

.eximagesideothers figure img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.5;
  transition: all 1.6s ease-in-out;
}

.eximagesidemain figure:hover img {
  transform: scale(1.2);
  filter: brightness(60%);
}

.eximagesideothers figure:hover img {
  transform: scale(1.2);
  filter: brightness(60%);
}

.mobilebasvuru {
  width: 100%;
  display: block;
  border-radius: 0.3rem;
  background-color: var(--mainColor);
  color: #fff;
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
  font-weight: 500;
  transition: all 300ms ease;
}

.mobilebasvuru:hover {
  background-color: var(--mainColorHover);
  color: #fff;
}

/* Girişimlerimiz Styles */
.girisimbox {
    transition: all 0.3s ease;
    border: 1px solid #eee !important;
}
.girisimbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    border-color: var(--mainColor) !important;
}
.girisimbodymain p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.modal-content {
    border-radius: 1.5rem;
    border: none !important;
}
.detail-content div p, .team-content div p {
    font-size: 1.5rem !important;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
    display: block !important;
}
.team-content {
    border-left: 4px solid var(--mainColor);
    padding: 1.5rem !important;
    background: #f9f9f9;
}
.btn-outline-danger {
    border-color: var(--mainColor);
    color: var(--mainColor);
}
.btn-outline-danger:hover {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    color: #fff;
}