body{
    position: relative;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
    --font1:"Source Sans 3", sans-serif;
}


.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


a
{
	color:#000;
	text-decoration:none;
}


a:hover, a:focus
{
	color:#000;
	text-decoration:none;
}

.rightnav
{
    display: flex;
    gap: 10px;
    list-style: none;
    margin:0;
    padding-left: 0;
}

.menubg {
    position: absolute;
    margin: 0px;
    width: 100%;
    font-weight: 400;
    background-color: transparent;
    z-index:99;
  }
  

  .menuic
  {
    background-color: white;
    border-radius: 10px;
    padding: 0;
  }
  
  .menubg .navbar{
    position: relative;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: all .5s;
  }
  .menubg .navbar.header{
    background-color: #fff;
    padding-top: 0px!important;
    padding-bottom: 0px!important;
    z-index: 999;
    top: 0px;
    border-bottom: 1px solid #efefef;
    position:fixed;
  }
  
  
  .menubg .navbar .navbar-brand img{
    transition: ease-in-out .5s;
    max-height:70px;
  }
  
      .menubg .navbar .navbar-nav li a {
          font-size: 17px;
          color: #000;
          position: relative;
          font-weight: 500;
      }
  
  .menubg .navbar .navbar-nav .nav-item .nav-link {
      padding: 10px 15px;  
  }
  
      .menubg .navbar.header .navbar-nav .nav-item .nav-link {
          color: #16181b;
      }
  
      .menubg .navbar .navbar-nav .nav-item .nav-link:hover {
        transition: transform .3s;
        color: #24aea4;
    }
   
  
  .navbar .nav-item {
      position: relative;
  }
  
  .search-bar svg
  {
      fill:#fff;
  }
  
  .lang-bar, .lang-bar a {
      color: #fff;
      font-weight: 400;
      margin:0px 5px;
  }
  
  .navbar.header .search-bar svg {
      fill: #000;
  }
  
  .navbar.header .lang-bar, .navbar.header .lang-bar a {
      color: #000;
      font-weight: 400;
  }
  
  .menubg .navbar-nav .nav-item.dropdown .dropdown-menu {
      background-color: #fff;
      display: block;
      visibility: hidden;
      opacity: 0;
      padding: 0px 10px;
  }
  
  .menubg .navbar-nav .nav-item.dropdown .dropdown-menu::after{
    content: "";
    position: absolute;
    top: -20px;
    height: 20px;
    width: 100%;
    left: 0;
    background-color: transparent;
  }
  
  .menubg .navbar-nav .nav-item +.megadrop
  {
      width: 100%;
      background-color: #16181b;
      position: absolute;
      left: 0;
      top: 0;
      display: none;
  }
  
  
  .menubg .navbar-nav .nav-item.dropdown .dropdown-menu li{
    padding: 3px 0px;
  }
  .menubg .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item{
    color: #000000;
    text-align: left;
    padding: 0px;
    font-size: 15px;
    font-weight: 400;
    transition: ease-in-out .5s;
    padding:5px 10px; 
  }
  .menubg .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item:hover{
    background-color: transparent;
    color: #24aea4;
  }
  .menubg .navbar-nav .nav-item.dropdown:hover .dropdown-menu{
    visibility: visible;
    opacity: 1;
  }
  
  .sticky 
  {
    border-bottom: 1px solid #ccc;
  -webkit-box-shadow:0px 6px 5px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow:0px 6px 5px 0px rgba(50, 50, 50, 0.75);
  box-shadow:0px 6px 5px 0px rgb(142, 142, 142);
  }
  
  .logo-two {
      opacity: 0;
      visibility: hidden;
      display: none;
  }
  
  .fixed-top .logo-one {
      opacity: 0;
      visibility: hidden;
      display: none;
  }
  
  .fixed-top .logo-two {
      opacity: 1;
      visibility: visible;
      display: block;
  }
  
  .menu-hover-effect-1 a {
    transition: color 0.2s linear 0s;
  }
  .menu-hover-effect-1 a:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background-color: #24aea4;

    border-radius: 30px;
    z-index: 0;
    transform: scale(0.3, 1);
    opacity: 0;
  }
  .menu-hover-effect-1 a:hover {
    color: #fff;
  }
  .menu-hover-effect-1 a:hover:before {
    transform: scale(1, 1);
    opacity: 1;
    transition: all 0.2s linear 0s;
  }
  
  
  
  
  /*/-/-/-/-/-//Mobil-Menu/-/-/-/-/-//*/
  
  .sidenav {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 999;
      top: 0;
      left: 0;
      background-color: #023e7c;
      overflow-x: hidden;
      transition: 0.5s;
      padding-top: 80px;
  }

  .sidenav .accordion-menu
  {
    list-style: none;
  }
  
  .sidebar_active {
      width: 450px;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(1) {
      animation-delay: .5s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(2) {
      animation-delay: .7s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(3) {
      animation-delay: .9s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(4) {
      animation-delay: 1.1s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(5) {
      animation-delay: 1.2s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(6) {
      animation-delay: 1.3s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(7) {
      animation-delay: 1.4s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(8) {
      animation-delay: 1.5s;
  }
  #dismiss_mobil {
      position: absolute;
      top: 20px;
      right: 5%;
      font-size: 25px;
      color:#ffffff;
      cursor:pointer;
  }
  .accordion-menu {
      width: 100%;
  }
  .mobil_dropdown_content .dropdown-item:focus, .dropdown-item:hover {
      color: #16181b;
      text-decoration: none;
      background-color: transparent;
  }
  .dropdownlink {
      cursor: pointer;
      display: block;
      font-size: 18px;
      color: #ffffff;
      font-weight:700;
      position: relative;
      -webkit-transition: all 0.4s ease-out;
      transition: all 0.4s ease-out;
      padding:5px;
  }
  .dropdownlink i {
      position: absolute;
      top: 6px;
      left: 16px;
  }
  .dropdownlink .fa-chevron-down {
      right: 10px;
      left: auto;
  }
  .submenuItems {
      display: none;
  }
  .submenuItems a {
      display: block;
      color: #727272;
      padding: 12px 12px 12px 45px;
      -webkit-transition: all 0.4s ease-out;
      transition: all 0.4s ease-out;
  }
  .mobil_dropdown_content{
      padding-top:20px;
  }
  .submenuItems a:hover {
      color: #fff;
  }
  .sidenav_ul ul {
      margin-bottom: 0px;
  }
  .sidenav_ul ul li {
      padding: 5px 5px;
  }
  .sidenav_ul ul li a {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      padding: 5px;
      white-space: nowrap
  }
  ul.submenuItems {
      margin-top: 15px;
  }
  .nav_mobil_bg .accordion-menu {
      background: transparent;
  }
  .sidenav_ul ul li .mobil_link {
      white-space: nowrap
  }
  .sidenav_ul ul li a::after {
      display: none;
  }
  .sidenav_ul .dropdown-menu {
      width: 100%;
      box-shadow: none;
      border: none;
  }
  .accordion-menu ul li {
      padding: 5px;
  }
  .mobil_social li {
      display: inline-block;
      padding: 5px !important;
      border-bottom: none !important;
  }
  .sidenav_ul ul li .mobil_link span {
      font-size: 18px;
      font-weight: 500;
      padding-left: 5px;
  }
  .overlay_mobil_bg {
      position: fixed;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.4);
      z-index: 999;
      display: none;
      transition: all 0.5s ease-in-out;
      top: 0;
  }
  .overlay_mobil_bg_active {
      display: block;
      opacity: 1;
  }
  .wrapper-menu {
    width: 30px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
  }
  .wrapper-menu.open {
    transform: rotate(-45deg);  
  }
  .line-menu {
    background-color: #023e7c;
    width: 100%;
    height: 4px;
  }
  .line-menu.half {
    width: 50%;
  }
  .line-menu.start {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
  }
  .open .line-menu.start {
    transform: rotate(-90deg) translateX(3px);
  }
  .line-menu.end {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
  }
  .menubg .navbar.header .line-menu {
    background-color: #023e7c;
    width: 100%;
    height: 4px;
  }
  .menubg .navbar.header .line-menu.half {
    width: 50%;
  }
  .menubg .navbar.header .line-menu.start {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
  }
  .menubg .navbar.header .open .line-menu.start {
    transform: rotate(-90deg) translateX(3px);
  }
  .menubg .navbar.header .line-menu.end {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
  }
  
  .mobil_menu .menu_lang {
      animation-delay: .5s;
      display: inline-block;
      margin-bottom: 0;
  }
  .mobil_social {
      animation-delay: 1.5s;
  }
  .mobil_social li,
  .mobil_menu .menu_lang li {
      display: inline-block;
      padding: 5px;
  }
  .navbar_mobil_bg{
      display:none;
  }
  #mobil_btn{
      display:none
  }
  @media(max-width:991px){
    #mobil_btn {
      display: block;
    }
    .deskop_menu .navbar .navbar-brand img {
      max-height: 60px;
    }
  }
  @media(max-width:565px){
    .sidebar_active {
        width: 70%;
    }
     .deskop_menu .navbar .navbar-brand img {
      max-height: 60px;
      position:absolute;
      left:10px;
      top:10px;
    }
  
  }

/*Sosyal Medya*/

.socialmedia {
    position: fixed;
    right: -20px;
    top: 30%;
    padding: 30px 15px;
    margin: 0;
    background-color: #023e7c;
    z-index: 99;
    transition: .5s;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.socialmedia:hover {
    position: fixed;
    right: 0px;
    top: 30%;
    padding: 30px 15px;
    margin: 0;
    background-color: #023e7c;
    z-index: 99;
    transition: .5s;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.socialmedia .social
{
    display: block;
    position: relative;
    width: 100%;
    list-style: none;
    padding-left: 0;
    margin: 0;
}
 .socialmedia .social a i
{
    color: #fff;
    font-size: 20px;
    display: block;
    padding-bottom: 5px;
}


/*Banner css alanı*/
  .banneralan
  {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;

  }



  .banneralan .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 25%;
    left: 15%;
    color: #fff;
    text-align: left;
    border-radius: 20px;
    padding: 30px;
}


.banneralan .carousel-caption h5{
    color: #fff;
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--font1);
}

.banneralan .carousel-caption p{
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: var(--font1);
    
}

.banneralan .carousel-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #023e7c42;
}

/*Hakkımızda alanı*/

.aboutpage
{
    position: relative;
    width: 100%;
    margin: 0px 0;
    padding: 100px 0;
    background-color: #f7f7f7;
}

.aboutpage .abouttext
{
    display: block;
    width: 100%;
    position: relative;
}

.aboutpage .about-title

{
    font-size: 40px;
    font-weight: 600;
    color: #16535d;
    margin-bottom: 20px;
    position: relative;
}


.aboutpage p
{
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 35px;
    color: #737373;
}

.aboutpage .aboutimg
{
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
}

.aboutpage .aboutimg img
{
    width: 100%;
    object-fit: cover;
    height: 100%;
}


/*Haberler alanı*/

.newspage
{
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 100px 0;
    background-color: #f7f7f7;

}
.newspagebg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/katre-bg-logo.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.2;
    z-index: -1;
}

.newspagebg2 {
    position: fixed;
    left: 77%;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/katre-bg-logo-right.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.2;
    z-index: -1;
}


.review-box .quote {
    position: absolute;
    width: 40px;
    right: 10px;
    bottom: 10px;
  }
  
  .newspage .test-arrowbox-left {
    position: absolute;
    bottom: 12rem;
    left: -4%;
    opacity: 0;
    transition: 1s;
  }

  .newspage  .test-arrowbox-right {
    position: absolute;
    bottom: 12rem;
    right: -4%;
    opacity: 0;
    transition: 1s;
  }
  
  .newspage:hover .test-arrowbox-left {
    position: absolute;
    bottom: 12rem;
    left: -7%;
    opacity: 1;
    transition: 1s;
  }

  .newspage:hover  .test-arrowbox-right {
    position: absolute;
    bottom: 12rem;
    right: -7%;
    opacity: 1;
    transition: 1s;
  }


  .review-box {
    border-radius: 3px;
    background: #fff;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 45vh;
    position: relative;
    transition: .5s;
    border-radius: 15px;
  }
  
  .review-box:hover
  {
    transform: translate(0px,-10px);
    transition: .5s;
  }
  
  .review-box h5 {
    margin: 0;
  }
  
  .review-box p {
    margin-bottom: 0;
    margin-top: 10px;
    color: #7d8597;
  }
  
  
  .review-box .timetext
  {
    font-size: 14px;
    font-weight: 300;
    color: #727272;
    margin-bottom: 5px;
    margin-top: 5px;
  }
  
  .review-box .timetext i
  {
    font-size: 17px;
    color: #727272;
  }

  
  .nxt-btn2
{
    font-size: 18px;
    font-weight: 500;
    border: 2px solid #33ada5;
    padding: 10px;
    color: #fff;
    transition: .5s;
    position: absolute;
    bottom: 4rem;
    right: 0;
    background-color: #33ada5;
    border-radius: 25px;
}

.nxt-btn2:hover
{
    font-size: 18px;
    font-weight: 500;
    border: 2px solid #33ada5;
    padding: 10px;
    color: #33ada5;
    transition: .5s;
    background-color: #fff;
    border-radius: 25px;
}

.nxt-btn
{
    font-size: 18px;
    font-weight: 500;
    border: 2px solid #f7f7f7;
    padding: 10px;
    color: #fff;
    transition: .5s;
    background-color: #2cada5;
    margin-top: 10px;
    display: inline-block;
    border-radius: 25px;
}

.nxt-btn:hover
{
    font-size: 18px;
    font-weight: 500;
    border: 2px solid #2cada5;
    padding: 10px;
    color: #2cada5;
    transition: .5s;
    background-color: transparent;
    border-radius: 25px;

}



.swiper-testimonial {
    padding: 50px 20px;
    padding-top: 30px;
    overflow: hidden;
  }
  
  
  .test-arrowbox .swiper-button-next-test,
  .test-arrowbox .swiper-button-prev-test {
    margin-right: 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2daea4;
    color: #fff;
    border-radius: 30px;
  }
  
  
  .arrow {
    cursor: pointer;
    transition: all 0.2s ease-in;
  }
  
  .arrow:hover {
    transform: translateX(-15px);
  }

  .newspage .news-title
  {
    font-size: 40px;
    font-weight: 600;
    color: #16535d;
    margin-bottom: 20px;
    position: relative;
  }

  .newspage .news-text
  {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 35px;
    color: #737373;
  }


  /*Faaliyetler*/

.faaliyetbg
{
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}


.faaliyetpage::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #023e7c52;
    z-index: 3;
}

.faaliyetimg
{
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}

.faaliyetimg::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0623406b;
    z-index: 3;
}


  .faaliyetbg .faatliyet-title
  {
    font-size: 40px;
    font-weight: 600;
    color: #16535d;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
  }

  .faaliyetbg .faatliyet-top-text
  {
    font-size: 20px;
    font-weight: 400;
    color: #737373;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
  }

  .faaliyetpage-box {
    position: relative;
    width: 100%;
  }


  .faaliyetpage-box2 {
    position: relative;
    width: 100%;
  }
  


  .faaliyet-tt
  {
    position: relative;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .faaliyet-tt::before
  {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 3px;
    width: 10%;
    background-color: #24aea4;
  }


  
  .faaliyet-text
  {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
  }


  .faaliyet-txt
  {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 15% 10%;
   
  }

  /*footer*/

footer
{
    background: #022925;
    width: 100%;
    padding: 50px 0px;
    position: relative;
}


footer .imglogo
{
    max-width: 150px;
}

footer .footer-text
{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

footer .foot-tt
{
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
}

footer .foot-tt::before
{
    content:"";
    position: absolute;
    bottom: -5px;
    width: 20%;
    height: 3px;
    background-color: #158075;
}

footer .footul
{
    padding: 0;
    margin: 20px 0 0 0;
    position: relative;
}

footer .footul .footli
{
    color: #fff;
    font-size: 16px;
    list-style: none;
    padding-bottom:5px;
    padding-left: 0;
    transition:.5s;
}

footer .footul .footli:hover
{
    color: #fff;
    font-size: 16px;
    list-style: none;
    padding-bottom:5px;
    padding-left: 10px;
    transition:.5s;
}

footer .footul .footli .footlink
{
    color: #fff;
    font-size: 16px;
}

footer .footadrs, footer .footadrs a
{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 5px;
}

footer .footalttext
{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

footer .footerlinks
{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

footer .socialmedia
{
  position: relative;
  display: flex;
  justify-content:start;
}

footer .socialmedia i
{
  color: #fff;
  font-size: 20px;
  margin: 10px 10px 0px 0px;
}


.footeralt
{
    background-color: #011413;
    padding: 15px 0;
    margin: 0;
    position: relative;
    width: 100%;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.footeralt a{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
}

.footeralt a:hover{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
}


.linkedin
{
    color: #0077B5;
    font-size: 20px;
}

.instagram
{
    color: #e1306c;
    font-size: 20px;
}

.facebook
{
    color: #0077B5;
    font-size: 20px;
}

.youtube
{
    color: #FF0000;
    font-size: 22px;
}



.backToTopBtn {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 100;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: none;
    color: #cccccc;
    border-radius: 30px;
    transition: 0.5s;
    cursor: pointer;
    text-align: center;
    padding-top: 10px;
}

    .backToTopBtn:not(:hover) {
        background: #24aea4;
    }

    .backToTopBtn:hover {
        background: #155e59;
        color: #fff;
    }

    .backToTopBtn.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .backToTopBtn:not(.active) {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    
 .section-proje
    {
        position: relative;
        width: 100%;
        background-color: #fff;
        margin: 0;
        padding: 7.5rem 0px;
    }

.section-proje .section-proje-title
    {
        font-size: 40px;
        line-height: 1;
        color: #16535d;
        font-weight: 600;
        margin-bottom: 20px;
    }

.section-proje .section-proje-text
    {
        font-size: 1.25rem;
        line-height: 1;
        color: #1e1e2f;
        font-weight: 300;
        margin-bottom: 20px;
    }

        .section-proje .swiper-alan
    {
        padding: 1rem 0;
        width: 100%;
    }

  .section-proje .swiper-alan  .swiper {
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: visible;
            list-style: none;
            padding: 0;
            z-index: 1;
            display: block;
        }

          .section-proje .swiper-alan .section2refbox
          {
            background-color: #e9e9e9;
            border-radius: 15px;
            padding: 20px;
            width: 100%;
            height: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
          }

              .section-proje .section6Box
           {
            background-color: transparent;
            border-radius:10px;
            padding: 1.5rem 2rem;
            height: 485px;
            width: 100%;
            background-position: top;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
            transition: .5s;
           } 


    .section-proje .section6Box:hover
           {
            transition: .5s;
            transform: translate(0px,-5px);
           } 




      .section-proje  .section6text
           {
           position: absolute;
           bottom: 30px;
            left: 25px;
           display: flex;
           flex-direction: column;
           } 

       .section-proje .section6text .section6title
              {
                    color: currentColor;
                    font-weight: 300;
                    line-height: 1.1;
                    font-size: 2rem;
              }

              .section-proje .swiper-pagination-bullet-active {
    background: #fff;
}
.section-proje .swiper-pagination-bullet {
    background: #2aaba1;
    opacity: 1;
    transition: opacity 0.3s ease;
    width: 25px;
    height: 15px;
    border-radius: 10px;
}

.section-proje .swiper-pagination {
    bottom: -40px !important;
}


    
  .section-proje .test-arrowbox-left {
    position: absolute;
    bottom: 12rem;
    left: -4%;
    opacity: 0;
    transition: 1s;
  }

  .section-proje  .test-arrowbox-right {
    position: absolute;
    bottom: 12rem;
    right: -4%;
    opacity: 0;
    transition: 1s;
  }
  
  .section-proje:hover .test-arrowbox-left {
    position: absolute;
    bottom: 12rem;
    left: -7%;
    opacity: 1;
    transition: 1s;
  }


    .section-proje   .section6Box::before
           {
           content: "";
           background-color: #000;
           width: 100%;
           height: 100%;
           position: absolute;
           left: 0;
           top: 0;
           opacity: 0.5;
               border-radius: 10px;
           } 


       .section-proje  .section6text
           {
           position: absolute;
           bottom: 30px;
            left: 10px;
           display: flex;
           flex-direction: column;
           } 

     .section-proje    .section6text .section6title
              {
                    color: currentColor;
                    font-weight: 300;
                    line-height: 1.1;
                    font-size: 2rem;
              }


              
.section2
    {
        position: relative;
        width: 100%;
        background-color: #f7f7f7;
        margin: 0;
        padding: 50px 0;
    }

.section2 .section2-title
    {
        font-size: 40px;
        line-height: 1;
        color: #16535d;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .section2 .section2-text
    {
        color: #000;
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .section2 .swiper-alan
    {
        padding: 1rem 0;
        width: 100%;
    }

  .section2 .swiper-alan  .swiper {
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: visible;
            list-style: none;
            padding: 0;
            z-index: 1;
            display: block;
        }

          .section2 .swiper-alan .section2refbox
          {
            background-color: #e9e9e9;
            border-radius: 15px;
            padding: 20px;
            width: 100%;
            height: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
          }


          .section2refbox img
          {
            filter: grayscale(1);
            transition: .5s;
          }

           .section2refbox:hover img
          {
            filter: grayscale(0);
            transition: .5s;
          }


          .certsKutu {
    width: 100%;
    display: inline-table;
    align-items: center;
    height: 100%;
}

.certsKutu img{
    padding: 1rem;
    height: auto;
    width: 30%;
    background-color: #fff;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}



.editoralan
{
    position: relative;
    width: 100%;
    padding: 50px 0;
}

.editoralan .section-title {
    font-size: 40px;
    font-weight: 600;
    color:#16535d;
    line-height: 1.196;
    letter-spacing: -0.04em;
}

.editoralan .editortext
{
    font-size: 18px;
    font-weight: 300;
    color: #000;
}




.editoralan  .alt-features-icon{
    width: 1em;
    height: 1em;
    margin: 0 0 18px 0;
    font-size: 48px;
    text-align: center;
    line-height: 1.3;
    color: #111;
}

.editoralan  .alt-features-icon svg{
    display: block;
    width: 1em;
    height: 1em;
}
.editoralan  .alt-features-title{
    margin-bottom: 7px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.editoralan  .alt-features-descr{
    margin-bottom: 15px;
    font-family: var(--font-global-alt);
    font-size: 16px;
    font-weight: 400; /*500*/ 
    line-height: 1.625;
    color: #757575;
}



.editoralan .call-action-3-images{
    position: relative;
    margin-top: 15px;
}
.editoralan .call-action-3-image-1{
    width: 67.38%;
    margin-left: auto;
    overflow: hidden;
    -webkit-transform: translateZ(0) rotate(0.0001deg);
    transform: translateZ(0) rotate(0.0001deg);
        border-radius: 10px;
}
.editoralan .call-action-3-image-2-wrap{
    position: absolute;
    top: 0;
    left: 54px;
    width: 41.5%;
    height: 100%;
    -webkit-transform: translateZ(0) rotate(0.0001deg);
    transform: translateZ(0) rotate(0.0001deg);
        border-radius: 10px;
}
.editoralan .call-action-3-image-2{ 
    overflow: hidden;
    -webkit-transform: translateZ(0) rotate(0.0001deg);
    transform: translateZ(0) rotate(0.0001deg);
        border-radius: 10px;
}




/*İç Sayfa CSS*/
.pageBanner {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #141212;
}

    .pageBanner::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #152c8c54;
        z-index: 9;
    }

.pageBannerimg {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: transparent;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.pageBannerTitle {
    position: relative;
    color: #fff;
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 400;
    width: 70%;
    margin-bottom: 20px;
}

.pageBannerText {
    position: relative;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300;
    width: 70%;
}

.pageTextBox {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 10;
}


.pageSection {
    position: relative;
    padding: 5rem 0px;
    margin: 0;
    background-color: #f2f2f2;
}

.pageLeftBar {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 15px;
}

.leftBarul {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: #d0d3d6;
    border-top-right-radius: .375rem;
    border-top-left-radius: .375rem;
    border-bottom-right-radius: .375rem;
    border-bottom-left-radius: .375rem;
}

    .leftBarul .leftbarli {
        text-align: left;
        font-size: 1rem;
        line-height: 1.5rem;
        border-left: .375rem solid #fff;
        background-color: #fff;
        transition: .2s;
        margin-bottom: 1px;
    }

        .leftBarul .leftbarli:hover {
            text-align: left;
            font-size: 1rem;
            line-height: 1.5rem;
            transform: translate(0.375rem, -6px) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
            box-shadow: 0 16px 35px -12px rgba(0, 0, 0, .25), 0 8px 21px -9px rgba(0, 0, 0, .3);
            border-bottom-right-radius: .375rem;
            border-bottom-left-radius: .375rem;
            transition: .2s;
        }


        .leftBarul .leftbarli.activelink {
            text-align: left;
            font-size: 1rem;
            line-height: 1.5rem;
            background-color: #30aea4;
            border-left: .375rem solid #1a5651;
        }

            .leftBarul .leftbarli.activelink:hover {
                text-align: left;
                font-size: 1rem;
                line-height: 1.5rem;
                border-left: .375rem solid #46984d;
                transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
                box-shadow: none;
            }

        .leftBarul .leftbarli a {
            text-decoration: none;
            color: #000;
            font-size: 1rem;
            line-height: 1.5rem;
            text-align: left;
            padding: 1rem;
            width: 100%;
            height: 100%;
            display: block;
        }

        .leftBarul .leftbarli.activelink a {
            text-decoration: none;
            color: #fff;
            font-size: 1rem;
            line-height: 1.5rem;
            text-align: left;
            padding: 1rem;
            width: 100%;
            height: 100%;
            display: block;
        }

.rich-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
}

    .rich-text .page-title {
        color: #090f29;
        font-weight: 300;
        line-height: 1.1;
        font-size: 2rem;
        margin-bottom: 20px;
    }



    .rich-text p, .rich-text ul li {
        font-size: 1rem;
        line-height: 1.5rem;
        word-break: break-word;
        text-wrap: pretty;
    }

    .rich-text ul {
        list-style-type: disc;
        padding-left: 1.5rem;
    }

    .rich-text :first-child {
        margin-top: 0;
    }


.BlogBox {
    background-color: transparent;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    height: 350px;
    width: 100%;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    transition: .5s;
}


    .BlogBox:hover {
        transition: .5s;
        transform: translate(0px,-5px);
    }


    .BlogBox::before {
        content: "";
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0.5;
        border-radius: 15px;
    }

.BlogBoxtext {
    position: absolute;
    bottom: 30px;
    left: 25px;
    display: flex;
    flex-direction: column;
}

    .BlogBoxtext .BlogBoxtitle {
        color: #fff;
        font-weight: 300;
        line-height: 1.1;
        font-size: 2rem;
    }


.blogTopBox {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 100px;
    padding-right: 100px;
    position: relative;
    width: 100%;
}

.blogBanner {
    width: 100%;
    position: relative;
    padding: 30px 100px;
    margin-top: 50px;
}

    .blogBanner .blogTitle {
        font-size: 3.5rem;
        line-height: 1;
        color: #000;
        font-weight: 200;
    }

.blogBannerimg {
    width: 100%;
    position: relative;
    padding: 30px 100px;
}

    .blogBannerimg img {
        border-radius: 20px;
    }

.blog-title {
    font-size: 3.25rem;
    font-weight: 200;
    color: #090f29;
    line-height: 1;
    margin-bottom: 15px;
}



.contactPage .contactTitle {
    font-size: 30px;
    color: #0e3d75;
    font-weight: bold;
    margin-bottom: 15px;
}

.contactPage h4 {
    font-size: 25px;
    color: #000;
    margin-bottom: 15px;
}

.contactPage a {
    text-decoration: none;
    color: #0e3d75;
}

.contactPage p {
    font-weight: 300;
    font-size: 16px;
}


.contactPage i {
    color: #000;
    font-size: 20px;
    margin-right: 10px;
}



.formkariyer .form-control {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.formkariyer .form-select {
    --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.formSend {
    border-radius: 0px !important;
    border: 1px solid #0e3d75 !important;
    background-color: #fff !important;
    color: #0e3d75 !important;
    font-size: 16px;
    transition: .5s;
    width: 100%;
    padding: 15px 25px !important;
}


    .formSend:hover {
        border-radius: 0px !important;
        border: 1px solid #0e3d75 !important;
        background-color: #0e3d75 !important;
        color: #fff !important;
        font-size: 16px;
        transition: .5s;
        width: 100%;
        padding: 15px 25px !important;
    }

.formTitle {
    font-size: 45px;
    color: #0069b4;
    margin-bottom: 30px;
}

.formText p {
    font-size: 20px;
    font-weight: 300;
    color: #3a3a3d;
    line-height: inherit;
}


/* Swiper pagination bullets */
.swiper-alan .swiper-pagination-bullet {
    background: #37afa6; /* Beyaz renk */
    opacity: 1;
    transition: opacity 0.3s ease;
    width: 30px;
    height: 15px;
    border-radius: 5px;
}

/* Aktif pagination bullet */
.swiper-alan .swiper-pagination-bullet-active {
    background: #fff;
}

.logobox {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #d7d7d7;
    transition: .3s;
    transform: translate(0px, 0px);
}

    .logobox:hover {
        background-color: #fff;
        border-radius: 10px;
        padding: 15px;
        border: 1px solid #d7d7d7;
        transition: .3s;
        transform: translate(0px, -10px);
    }





@media screen and (max-width: 1444px) {
    .nxt-btn2 {
            bottom: 3rem;
        }
        .test-arrowbox {
            bottom: 3rem;
        }

        .review-box {
            height: 50vh;
        }

        .banneralan .carousel-caption h5 {
            color: #fff;
            font-size: 40px;
            margin-bottom: 20px;
            font-weight: 600;
        }
    }

    @media screen and (max-width: 992px) {

        .menubg .navbar .navbar-brand img {
            max-height: 50px;
        }

        .menuic {
            padding:  0;
        }

        .menubg {
            position: relative;
            margin: 0px;
            width: 100%;
            font-weight: 400;
            background-color: transparent;
            padding: 0;
            box-shadow: none;
        }

        .aboutpage {
            padding: 50px 0;
        }

        .newspage {
            padding: 50px 0;
        }

        .nxt-btn2 {
            bottom: -3rem;
            font-size: 16px;
           
        }
        .test-arrowbox {
            bottom: -3rem;
        }
        .review-box {
            height: 40vh;
            margin-top: 50px;
        }
        .swiper-testimonial {
            padding: 20px 20px;
        }

        .backToTopBtn {
            right: 10px;
        }

        .faaliyet-txt {
            margin-bottom: 20px;
            height: auto;
        }

        .nxt-btn {
            font-size: 15px;
        }

        .faaliyet-text {
            font-size: 18px;
        }

        .faaliyetpage .faatliyet-top-text {
            font-size: 18px;
            margin-bottom: 50px;
        }

        .newspage .news-text {
            font-size: 16px;
        }

        .test-arrowbox .swiper-button-next-test, .test-arrowbox .swiper-button-prev-test {
            width: 40px;
            height: 48px;
        }

        .aboutpage .about-title {
            font-size: 30px;
        }

        .newspage .news-title {
            font-size: 30px;
        }

    
    .faaliyetpage .faatliyet-title {
        font-size: 30px;
    }

    .faaliyet-tt {
        font-size: 25px;
    }

    }