a, p, input, select, textarea, table, td, th, span, h1, h2 h3, h4, h5, h6, body, button, ul, li {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}
#link {color: #E45635;display:block;font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;text-align:center; text-decoration: none;}
#link:hover {color: #CCCCCC}

#link, #link:hover {-webkit-transition: color 0.5s ease-out;-moz-transition: color 0.5s ease-out;-ms-transition: color 0.5s ease-out;-o-transition: color 0.5s ease-out;transition: color 0.5s ease-out;}

/** BEGIN CSS **/ 
        @keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-moz-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-webkit-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-o-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-moz-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-webkit-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-o-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-moz-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-webkit-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-o-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }
        .loading-container,
        .loading {
            height: 200px;
            position: relative;
            width: 200px;
            border-radius: 100%;
        }


        .loading-container {margin: 40px auto;margin-top: calc(20% - 100px);}

        .loading {
            border: 2px solid transparent;
            border-color: transparent #fff transparent #FFF;
            -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
            -moz-transform-origin: 50% 50%;
            -o-animation: rotate-loading 1.5s linear 0s infinite normal;
            -o-transform-origin: 50% 50%;
            -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
            -webkit-transform-origin: 50% 50%;
            animation: rotate-loading 1.5s linear 0s infinite normal;
            transform-origin: 50% 50%;
        }

        .loading-container:hover .loading {
            border-color: transparent #E45635 transparent #E45635;
        }
        .loading-container:hover .loading,
        .loading-container .loading {
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
        }

        #loading-text {
            -moz-animation: loading-text-opacity 2s linear 0s infinite normal;
            -o-animation: loading-text-opacity 2s linear 0s infinite normal;
            -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
            animation: loading-text-opacity 2s linear 0s infinite normal;
            color: #ffffff;
            font-family: "Helvetica Neue, "Helvetica", ""arial";
            font-size: 10px;
            font-weight: bold;
            margin-top: 85px;
            opacity: 0;
            position: absolute;
            text-align: center;
            text-transform: uppercase;
            top: 0;
            width: 100px;
            margin-left: 50px;
        }
.loadingparent{
	position: fixed;
	background: #767676;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 123;
	text-align: center;
	vertical-align: middle;
}
a:hover {
    text-decoration: none;
} 
 /* The overlay effect with black background */
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 88;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9); /* Black with a little bit see-through */
}

/* The content */
.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

/* Close button */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

/* Style the search field */
.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 80%;
  background: white;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

/* Style the submit button */
.overlay button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.overlay button:hover {
  background: #bbb;
}
  .close-button:before,
  .close-button:after{
    content    : '';
    width      : 55%;
    height     : 2px;
    background : #fff;
    position   : absolute;
    top        : 48%;
    left       : 22%; 
    
  -webkit-transform : rotate(-45deg);
  -moz-transform    : rotate(-45deg);
  -ms-transform     : rotate(-45deg);
  -o-transform      : rotate(-45deg);
  transform         : rotate(-45deg);
   -webkit-transition : all 0.3s ease-out;
  -moz-transition    : all 0.3s ease-out;
  -ms-transition     : all 0.3s ease-out;
  -o-transition      : all 0.3s ease-out;
  transition         : all 0.3s ease-out;
  }

  .close-button:after{ 
    
  -webkit-transform : rotate(45deg);
  -moz-transform    : rotate(45deg);
  -ms-transform     : rotate(45deg);
  -o-transform      : rotate(45deg);
  transform         : rotate(45deg);
   -webkit-transition : all 0.3s ease-out;
  -moz-transition    : all 0.3s ease-out;
  -ms-transition     : all 0.3s ease-out;
  -o-transition      : all 0.3s ease-out;
  transition         : all 0.3s ease-out;
  }



  .close-button.closed::after{ 
	  -webkit-transform : rotate(180deg);
	  -moz-transform    : rotate(180deg);
	  -ms-transform     : rotate(180deg);
	  -o-transform      : rotate(180deg);
	  transform         : rotate(180deg);
     
  }
 
  .close-button.closed::before {
	  -webkit-transform : rotate(180deg);
	  -moz-transform    : rotate(180deg);
	  -ms-transform     : rotate(180deg);
	  -o-transform      : rotate(180deg);
	  transform         : rotate(180deg);
    }
  
.close-button{
  width: 60px;
  height: 60px;
  box-shadow : 0px 10 10px 10px rgba( 0, 0, 0, .25 );
  border-radius: 10px;
  /* background :  #000; */
  left: 100%;
  top: 64px;
  margin-top : -75px;
  margin-left: -75px;
  position   : absolute;
  display    : block;
  z-index    : 200;
  text-indent : -9999px;
}
.topsss {
	display:none;
  position: sticky;
  bottom: 20px;      
  margin-right:10px; 
  
  /* visual styling */
  width:100%;
  aspect-ratio:1;
  background:#ff8b24;
  border-radius:10px;
}
.topsss:before {
  content:"";
  position:absolute;
  inset:30%;
  transform:translateY(20%) rotate(-45deg);
  border-top:5px solid #fff;
  border-right:5px solid #fff;
}.container-top {
  --offset: 100px;
  --fade: 80px;
  
  display: flex;
  align-items: flex-end;
  width: 60px;
  justify-self: end;
  justify-content: flex-end;
  -webkit-mask:linear-gradient(#0000 calc(100vh + var(--offset)),#000 calc(100vh + var(--offset) + var(--fade)));
}

strong,b {
    font-weight: bold;
}
.kurusalyataybilgi{
	
display: none;
	
content: "Kurumsal";
	
position: absolute;
	
left: 0;
	
color: #3058ED;
	
transform: rotate(270deg);
	
top: 15px;
}

input, select, button, textarea {
    outline: none;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 90%;
}

.main-header .container {
    width: 90%;
}

h1 {
    font-size: 96px;
    line-height: 100px;
}

h2 {
    font-size: 70px;
    line-height: 80px;
}

h3 {
    font-size: 60px;
    line-height: 65px;
}

h4 {
    font-size: 23px;
		line-height: 125%;
		margin-left: 6px;
		margin-top: 10px;
}

h5 {
    font-size: 35px;
    line-height: 30px;
}

h6 {
    font-size: 25px;
    line-height: 22px;
}

p,li,a {
    font-size: 17px;
    line-height: 150%;
    color: #0E0E0E;
    font-weight: 400;
    line-height: 30px;
}

::-webkit-scrollbar {
    width: 10px;
    border-radius: 9px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 9px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.socialmedia h3{ 
        padding-bottom: 5%;
}
.main-header {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 1s;
    width: 100%;
}

.main-header .main-header-logo {
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-header .main-header-logo img {
    width: 80%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.main-header .main-header-menu {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-header .main-header-menu ul {
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
    text-align: right;
}

.main-header .main-header-menu ul li {
    display: inline-block;
    margin: 0px 0px 0px 15%;
}

.main-header .main-header-menu ul li img {
    width: 70%;
    cursor: pointer;
}

.main-header .main-header-menu ul li input {
    border: 1px solid #474747;
    height: 40px;
    width: 130%;
    border-radius: 20px;
    padding-left: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #474747;
}

.main-header .main-header-menu ul li input::placeholder {
    color: #474747;
}

.main-header .main-header-menu ul li input::placeholder {
    color: #474747;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 40px;
}

/*------*/
.sidenav .openmenu-kapat-logo {
    position: relative;
}

.sidenav .openmenu-kapat {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sidenav .openmenu-kapat .closebtn {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

.sidenav .openmenu-logo {
    width: 100%;
    position: absolute;
    text-align: left;
}

.sidenav .openmenu-logo img {
    width: 23%;
}

.sidenav .openmenurows {
    height: 70vh;
    padding-top: 9%;
}

.sidenav .openmenurows .openmenu-left {
    width: 40%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.sidenav .openmenurows .openmenu-left .openmenu-left-sosyalmedya {
    text-align: center;
}

.sidenav .openmenurows .openmenu-left .openmenu-left-sosyalmedya h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 50px;
    text-align: center;
    color: #000000;
}

.sidenav .openmenurows .openmenu-left .openmenu-left-sosyalmedya a {
    font-weight: 300;
    font-size: 20px;
    line-height: 150.5%;
    text-align: center;
    color: #333333;
    transition: 0.5s;
}

.sidenav .openmenurows .openmenu-left .openmenu-left-sosyalmedya a:hover {
}

.sidenav .openmenurows .openmenu-left .openmenu-left-sosyalmedya ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 7%;
}

.sidenav .openmenurows .openmenu-left .openmenu-left-sosyalmedya ul li {
    display: inline-block;
    margin: 0px 5px 0px 5px;
}

.sidenav .openmenurows .openmenu-left .openmenu-left-sosyalmedya ul li img {
}

.sidenav .openmenurows .openmenu-right {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sidenav .openmenurows .openmenu-right .openmenulinks {
    padding-left: 5%;
}

.sidenav .openmenurows .openmenu-right .openmenulinks ul {
    padding-left: 0;
    margin-bottom: 0;
}

.sidenav .openmenurows .openmenu-right .openmenulinks ul li {
    list-style: none;
    font-weight: 100;
    line-height: 260%;
}

.sidenav .openmenurows .openmenu-right .openmenulinks ul li a {
    color: #fff;
    transition: 0.5s;
    font-weight: 100;
    font-size: 30px;
    font-style: normal;
    width: 100%;
}

.sidenav .openmenurows .openmenu-right .openmenulinks ul li a:hover::before {
   content:"";
   display: block;
   height: 48px;
   background: none;
   background-image:url('../img/kucukyataycizgibeyaz.png');
   width: 5px;
   position: absolute;
   left: -12px;
   background-size: 100%;
   background-repeat: no-repeat;
   top: 8px;
   background-size: contain;
}

.sidenav .openmenurows .openmenu-right .openmenulinks ul li a:hover {
    transition: 0.5s;
    color: #8DFF33;
    font-weight: 600;
}

.sidenav .openmenurows .openmenu-right .openmenulinks ul li:hover a {
    transition: 0.5s;
    color: #8DFF33;
    font-weight: 600;
}

.sidenav .openmenurows .openmenu-right .openmenulinks ul li:hover span {
    transition: 0.5s;
    color: #8DFF33;
    font-weight: 600;
}

.sidenav .openmenurows .openmenu-right .openmenulinks ul li a span {
    vertical-align: unset;
    margin-right: 40px;
    font-size: 45px;
}

.sidenav .openmenumotorimage {
    position: absolute;
    bottom: 5%;
    right: 0%;
    z-index: -1;
    width: 47%;
}

.sidenav .openmenumotorimage img {
    width: 100%;
    height: 100%;
}

.navbar-takip {
    position: fixed;
    background: #fff;
    z-index: 11;
    transition: 1s;
    /* padding-top: 15px; */
    padding-bottom: 15px;
    border-bottom: 2px solid #1d5a69;
    top: 0;
}

/*------*/
.sinerjibtn-rel {
    width: 40%;
    position: relative;
    height: 10vh;
    display: inline-block;
}

.sinerjibtn-rel.mavi .sinerjibtn a {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
}

.sinerjibtn-rel.mavi .sinerjibtn a {
    margin-top: 15%;
}

.sinerjibtn-rel.mavi .sinerjibtn {
    position: absolute;
    left: -4%;
}

.sinerjibtn-rel.mavi .sinerjibtn a:hover {
    transition: 0.5s;
}

.sinerjibtn-rel.mavi .sinerjibtn a:before {
    content: "";
    background-image: url('../img/yesil-bg.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    width: 100%;
}

.sinerjibtn-rel.mavibasvuru .sinerjibtn a {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
}

.sinerjibtn-rel.mavibasvuru .sinerjibtn a {
    /* margin-top: 15%; */
}

.sinerjibtn-rel.mavibasvuru .sinerjibtn {
    position: absolute;
    left: 10%;
}

.sinerjibtn-rel.mavibasvuru .sinerjibtn a:hover {
    transition: 0.5s;
}

.sinerjibtn-rel.mavibasvuru .sinerjibtn a:before {
    content: "";
    background-image: url('../img/basvuryesil.png');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    width: 100%;
}

.sinerjibtn-rel.parkur .sinerjibtn a {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
}

.sinerjibtn-rel.parkur .sinerjibtn a {
    /* margin-top: 15%; */
}

.sinerjibtn-rel.parkur .sinerjibtn {
}

.sinerjibtn-rel.parkur .sinerjibtn a:hover {
    transition: 0.5s;
}

.sinerjibtn-rel.parkur .sinerjibtn a:before {
    content: "";
    background-image: url('../img/parkur.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    width: 100%;
}

.sinerjibtn-rel.abone .sinerjibtn a {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
}

.sinerjibtn-rel.abone .sinerjibtn a {
    /* margin-top: 15%; */
}

.sinerjibtn-rel.abone .sinerjibtn {
}

.sinerjibtn-rel.abone .sinerjibtn a:hover {
    transition: 0.5s;
}

.sinerjibtn-rel.abone .sinerjibtn a:before {
    content: "";
    background-image: url('../img/aboneolbeyaz.png');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    width: 100%;
}

.sinerjibtn-rel.down {
    margin-top: 5%;
}

.sinerjibtn-rel.down .sinerjibtn a {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
}

.sinerjibtn-rel.down .sinerjibtn a:hover {
    transition: 0.5s;
}

.sinerjibtn-rel.down .sinerjibtn a:before {
    content: "";
    background-image: url('../img/downloadbeyaz.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    width: 100%;
}

.sinerjibtn-rel.beyazcv .sinerjibtn a {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
}

.sinerjibtn-rel.beyazcv .sinerjibtn a {
    /* margin-top: 15%; */
}

.sinerjibtn-rel.beyazcv .sinerjibtn {
    position: absolute;
    left: 10%;
}

.sinerjibtn-rel.beyazcv .sinerjibtn a:hover {
    transition: 0.5s;
}

.sinerjibtn-rel.beyazcv .sinerjibtn a:before {
    content: "";
    background-image: url('../img/cvyukleyesil.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    width: 100%;
}

.sinerjibtn-rel.beyazupload .sinerjibtn a {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
}

.sinerjibtn-rel.beyazupload .sinerjibtn a {
    /* margin-top: 15%; */
}

.sinerjibtn-rel.beyazupload .sinerjibtn {
    position: absolute;
    left: 10%;
}

.sinerjibtn-rel.beyazupload .sinerjibtn a:hover {
    transition: 0.5s;
}

.sinerjibtn-rel.beyazupload .sinerjibtn a:before {
    content: "";
    background-image: url('../img/beyazgonderdosya.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    width: 100%;
}

.sinerjibtn-rel.beyaz.iletisim .sinerjibtn a:before {
    content: "";
    background-image: url('../img/gonder-yesil-bg.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    width: 100%;
}

.sinerjibtn-rel.mavi .sinerjibtn a:before {
}

.sinerjibtn-rel .sinerjibtn a:hover:before {
    top: 0 !important;
    z-index: 1;
}

.sinerjibtn-rel .sinerjibtn a .oklar {
}

.sinerjibtn-rel .sinerjibtn a:hover .oklar .hover-image {
    right: 25%;
    display: block;
}

.sinerjibtn-rel .sinerjibtn a:hover .oklar .normal-image {
    right: 35%;
    display: none
}

.sinerjibtn-rel .sinerjibtn a .oklar .normal-image {
    position: absolute;
    right: 25%;
    top: 25%;
}

.sinerjibtn-rel .sinerjibtn a .oklar .hover-image {
    display: none;
    position: absolute;
    right: 15%;
    top: 25%;
}

.sinerjibtn-rel.beyaz .sinerjibtn a {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
}

.sinerjibtn-rel.beyaz .sinerjibtn a {
    margin-top: 15%;
    cursor: pointer;
}

.sinerjibtn-rel.beyaz .sinerjibtn {
    position: absolute;
    left: 10%;
}

.sinerjibtn-rel.beyaz .sinerjibtn a:hover {
    transition: 0.5s;
}

.sinerjibtn-rel.beyaz .sinerjibtn a:before {
    background: url('../img/yesil-bg.svg');
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    width: 100%;
}

.sinerjibtn-rel.beyaz .sinerjibtn a:before {
}

.sinerjibtn-rel.beyaz .sinerjibtn a:hover:before {
    top: 0px !important;
    z-index: 1;
}

.sinerjibtn-rel.beyaz .sinerjibtn a .oklar {
}

.sinerjibtn-rel.beyaz .sinerjibtn a:hover .oklar .hover-image {
    right: 25%;
    display: block;
}

.sinerjibtn-rel.beyaz .sinerjibtn a:hover .oklar .normal-image {
    right: 35%;
    display: none
}

.sinerjibtn-rel.beyaz .sinerjibtn a .oklar .normal-image {
    position: absolute;
    right: 25%;
    top: 45%;
}

.sinerjibtn-rel.beyaz .sinerjibtn a .oklar .hover-image {
    display: none;
    position: absolute;
    right: 15%;
    top: 45%;
}

.sinerjibtn-rel.beyaz .sinerjibtn:hover a {
    color: #fff;
}

#mySidenav {
    transition: 1s;
    transition-delay: 1s;
    background-image: url(../img/sinerjimenu-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#mySidenav .sinerjimenuabsolute {
    position: absolute;
    bottom: -80px;
    left: 26%;
}

#mySidenav .sinerjimenuabsolute img {
    width: 80%;
}

.footer {
    background-image: url(../img/footerbg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
     }

.footer .footerwidth {
    width: 25%;
    padding-top: 7%;
}

.footer .footerwidth h4 {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    position: relative;
    padding-bottom: 5%
}

.footer .footerwidth h4::before {
    content: "";
    width: 20%;
    height: 3px;
    background: #fff;
    position: absolute;
    bottom: 0;
}

.footer .footerwidth .link {
    padding-left: 5%;
    margin-top: 5%;
}

.footer .footerwidth .link li {
    font-size: 18px;
    color: #fff;
    list-style: none;
    position: relative;
}

.footer .footerwidth .link li:hover a {
    font-weight: 700;
    color: #8DFF33;
}

.footer .footerwidth .link li::before {
    content: "";
    background-image: url('../img/link-before.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    position: absolute;
    left: -5%;
    bottom: 30%;
}

.footer .footerwidth .link li a {
    color: #fff;
    text-decoration: none;
    line-height: 250%;
}

.footer .footerwidth p {
    margin-top: 5%;
    color: #fff;
    width: 80%;
}

.footer .footerwidth .footerlogo {
}

.footer .footerwidth .footerlogo img {
}

.footer .footerwidth .iletisim-footer {
}

.footer .footerwidth .iletisim-footer p {
    width: 80%;
}

.footer .footerwidth .iletisim-footer p img {
    margin-left: -5%;
    padding-right: 5%;
}

.footer .footerwidth .iletisim-footer p a {
}

.footer .footerwidth ul.sosyalmedya {
    padding: 0;
    list-style: none;
    margin-top: 10%;
    width: 100%;
}

.footer .footerwidth ul.sosyalmedya li {
    display: inline;
    margin-right: 15%;
}

.footer .footerwidth ul.sosyalmedya li::before{
  content:"";
  width:0;
  height:0;
}
.footer .footerwidth ul.sosyalmedya li a {
}

.footer .footerwidth ul.sosyalmedya li a img {width: 30px;}

.footer-alt {
    height: 8vh;
    background: #1B2445;
    border-top: 2px solid #fff;
}
.footer-alt .left{
    
width: 50%;
    
padding-top: 2%;
  }
.footer-alt .left ul{
    list-style: none;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
.footer-alt .left ul li{
    margin-right: 40px;
  }
  
.footer-alt .left ul li a{
    font-size: 15px;
    color: #fff;
    position: relative;
  }
.footer-alt .left ul li a::after{
    content:"";
    width:1px;
    height:100%;
    background:#fff;
    position:absolute;
    right:-20px;
    top: 0;
  }
.footer-alt .left ul li:last-child a::after{ 
    width:0; 
  }

.footer-alt .marg {
    padding-top: 2%;
    width: 50%;
}

.footer-alt .marg p {
    color: #fff;
    text-align: right;
    font-weight: 400;
    font-size: 13px;
}

.footer-alt .marg p a{
    color: #fff;
    text-align: right;
    font-weight: 400;
    font-size: 13px;
}

.iletisim-formu {
    height: auto;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #1B2445;
    padding-bottom: 5%;
}

.iletisim-formu h5 {
    width: 100%;
    color: #fff;
    font-size: 52.7627px;
    line-height: 160%;
    padding-top: 5%;
}

.iletisim-formu .bg-image-form {
    position: absolute;
    top: 0%;
    width: 70%;
    left: 10%;
    margin: auto;
    text-align: center;
}

.iletisim-formu .bg-image-form img {
    width: 100%;
}

.iletisim-formu p {
    color: #fff;
    width: 70%;
    text-align: justify;
}

.iletisim-formubasvuru input::placeholder {
    color: #333;
}

.iletisim-formubasvuru textarea::placeholder {
    color: #333;
}

.iletisim-formu input {
    font-weight: 300;
    font-size: 18px;
    line-height: 114%;
    color: #FFFFFF;
    width: 80%;
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #8DFF33;
    height: 50px;
    margin-top: 80px;
    padding-left: 5%;
}

.iletisim-formu textarea {
    font-weight: 300;
    font-size: 18px;
    line-height: 114%;
    color: #FFFFFF;
    width: 90%;
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #8DFF33;
    height: 170px;
    margin-top: 80px;
    padding-left: 5%;
}

.iletisim-formu .selectimage {
    position: relative;
    width: 100%;
}

.iletisim-formu .selectimage select {
    font-weight: 300;
    font-size: 18px;
    line-height: 114%;
    color: #FFFFFF;
    width: 90%;
    padding-left: 5%;
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #8DFF33;
    height: 50px;
    margin-top: 20px;
    appearance: none;
}

.iletisim-formu .selectimage .chevron {
    position: absolute;
    right: 20%;
    top: 50%;
}

.iletisim-formu .sinerjibtn-rel.beyaz .sinerjibtn {
    right: -136%;
    top: 40%;
    left: inherit;
}

input::placeholder , textarea::placeholder {
    color: #ffF;
}

.subscribe input::placeholder {
    color: #333;
}

.owl-carousel {
    display: block !important;
}

.owl-carousel .owl-nav {
    display: block !important;
    position: absolute;
}

.owl-carousel.haberler-new-owl .owl-nav .owl-prev .slider-ok-normal {
    display: block
}

.owl-carousel.haberler-new-owl .owl-nav .owl-next .slider-ok-normal {
    display: block
}

.owl-carousel.haberler-new-owl .owl-nav .owl-prev .slider-ok-hover {
    display: none
}

.owl-carousel.haberler-new-owl .owl-nav .owl-next .slider-ok-hover {
    display: none
}
.owl-carousel.haberler-owl .owl-nav .owl-prev .slider-ok-normal {
    display: block
}

.owl-carousel.haberler-owl .owl-nav .owl-next .slider-ok-normal {
    display: block
}

.owl-carousel.haberler-owl .owl-nav .owl-prev .slider-ok-hover {
    display: none
}

.owl-carousel.haberler-owl .owl-nav .owl-next .slider-ok-hover {
    display: none
}

.owl-carousel.basvuru-owl .owl-nav .owl-prev .slider-ok-normal {
    display: block
}

.owl-carousel.basvuru-owl .owl-nav .owl-next .slider-ok-normal {
    display: block
}

.owl-carousel.basvuru-owl .owl-nav .owl-prev .slider-ok-hover {
    display: none
}

.owl-carousel.basvuru-owl .owl-nav .owl-next .slider-ok-hover {
    display: none
}

.owl-carousel.basvuru-owl .owl-nav .owl-prev:hover .slider-ok-normal {
    display: none
}

.owl-carousel.basvuru-owl .owl-nav .owl-next:hover .slider-ok-normal {
    display: none
}

.owl-carousel.basvuru-owl .owl-nav .owl-prev:hover .slider-ok-hover {
    display: block
}

.owl-carousel.basvuru-owl .owl-nav .owl-next:hover .slider-ok-hover {
    display: block
}
.owl-carousel.haberler-new-owl .owl-nav .owl-prev:hover .slider-ok-normal {
    display: none
}

.owl-carousel.haberler-new-owl .owl-nav .owl-next:hover .slider-ok-normal {
    display: none
}

.owl-carousel.haberler-new-owl .owl-nav .owl-prev:hover .slider-ok-hover {
    display: block
}

.owl-carousel.haberler-new-owl .owl-nav .owl-next:hover .slider-ok-hover {
    display: block
}

.haberler-slider {
    position: relative;
    background-image: url('../img/haber-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    padding-top: 10%;
    padding-bottom: 5%;
}

.owl-carousel.haberler-owl .owl-nav .owl-prev:hover .slider-ok-normal {
    display: none
}

.owl-carousel.haberler-owl .owl-nav .owl-next:hover .slider-ok-normal {
    display: none
}

.owl-carousel.haberler-owl .owl-nav .owl-prev:hover .slider-ok-hover {
    display: block
}

.owl-carousel.haberler-owl .owl-nav .owl-next:hover .slider-ok-hover {
    display: block
}

.owl-carousel.haberler-owl .owl-nav {
    position: absolute;
    right: 5%;
    top: -20%;
}

.haberler-slider {
}

.haberler-slider h2 {
    width: 100%;
}

.haberler-slider p {
    font-weight: 300;
    color: #414141;
    width: 60%;
}

.haberler-slider .left-baslik {
    position: absolute;
    left: -1%;
    top: 25%;
}

.haberler-slider .left-baslik h4 {
    color: #3058ED;
    transform: rotate(-90deg);
    font-size: 24px;
}

.haberler-slider .left-baslik h4:before {
    content: "";
    background-image: url('../img/baslikbeforemavi.png');
    background-size: contain;
    width: 360px;
    height: 1px;
    position: absolute;
    left: -320%;
    top: 50%;
}

.haberler-slider .arka-baslik h4 {
    -webkit-text-stroke: 1px #333;
    color: transparent;
    font-size: 150px;
    opacity: 0.3;
}

.haberler-slider .arka-baslik {
    position: absolute;
    left: 22%;
    top: 20%;
    z-index: -1;
}

.haberslider {
    margin: 50px;
    overflow: hidden;
    position: relative;
    height: 40vh;
}

.haberslider .left-card {
    transition: 1s;
    width: 54%;
    display: inline-block;
    background: #3058ED;
    height: 100%;
    margin-top: 0;
    height: 250px;
    border-radius: 0px 0px 0px 60px;
    position: absolute;
    top: 0;
    padding: 2% 0% 0% 5%;
}

.haberslider .left-card h5 {
    color: #FFFFFF;
    font-size: 28px;
    line-height: 35px;
}

.haberslider .left-card p {
    font-weight: 400;
    line-height: 24px;
    font-size: 16px;
    color: #FFFFFF;
    width: 100%;
}

.haberslider .left-card a {
    font-weight: 400;
    line-height: 24px;
    font-size: 16px;
    color: #8DFF33;
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: 1s;
}

.haberslider .left-card a:hover img {
    right: -65%;
    transition: 1s;
}

.haberslider .left-card a img {
    position: absolute;
    right: -50%;
    width: 35px;
    top: 20%;
    transition: 1s;
}

.haberslider .right-card {
    transition: 1s;
    width: 46%;
    display: inline-block;
    border-radius: 0px 90px 0px 0;
    height: 250px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}

.haberslider .right-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.haberslider:hover .left-card {
    border-radius: 60px 0px 0px 0;
    transition: 1s;
}

.haberslider:hover .right-card {
    border-radius: 0 0px 60px 0;
    transition: 1s;
}

.arge {
    background: #1B2445;
    height: auto;
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
}

.arge h2 {
    width: 100%;
    color: #fff;
}

.arge-detay-part-2.arge {
    background: #fff;
    height: auto;
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
}

.arge p {
    font-weight: 300;
    color: #fff;
    width: 90%;
}

.arge ul {
    color: #fff;
    list-style: none;
    font-weight: bold;
    padding: 0;
    margin-top: 15%;
}

.arge ul li {
    border-bottom: 2px solid #2F52C7;
    width: max-content;
    line-height: 200%;
    color: #fff;
}

.arge .left-baslik {
    position: absolute;
    left: -2%;
    top: 11%;
}

.arge .left-baslik h4 {
    color: #8DFF33;
    transform: rotate(-90deg);
    font-size: 24px;
}

.arge .left-baslik h4:before {
    content: "";
    background-image: url('../img/baslikbeforeyesil.png');
    background-size: contain;
    width: 360px;
    height: 1px;
    position: absolute;
    left: -210%;
    top: 50%;
}

.arge .arka-baslik h4 {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    font-size: 150px;
    opacity: 0.3;
}

.arge .arka-baslik {
    position: absolute;
    left: 18%;
    top: 7%;
    z-index: 1;
}

.arge .radiusimage {
    margin-bottom: 5%;
}

.arge .radiusimage img {
    border-radius: 0px 323.5px 0px 0px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    width: 100%;
}

.arge-part {
    width: 100%;
    position: relative;
    /* padding-top: 5%; */
    margin: 0;
    height: 69vh;
}

.arge-part .width-arge {
    width: 49%;
    display: inline-block;
    height: 66vh;
}

.arge-part .width-arge.sag-arge {
    background: #DFE8EF;
    border-radius: 0 15px 15px 0;
}

.arge-part .width-arge.sag-arge h3 {
    font-weight: 400;
    position: absolute;
    right: 10%;
    top: 20%;
}

.arge-part .width-arge.sag-arge span {
    position: absolute;
    right: 10%;
    bottom: 40%;
}

.arge-part .width-arge.sag-arge .sinerjibtn-rel {
    width: 100%;
}

.arge-part .width-arge.sag-arge .sinerjibtn-rel .sinerjibtn {
    top: 450%;
    left: 55%;
}
.arge-part .width-arge.sag-arge .sinerjienbtn {
    top: 450%;
    left: 55%;
}

.arge-part .width-arge.sag-arge h3:after {
    content: "";
    background-image: url('../img/gelistirme-after.png');
    width: 180%;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -50%;
    left: -77%;
}

.arge-part .width-arge.sol-arge h3:after {
    content: "";
    background-image: url('../img/arastirma-after.png');
    width: 160%;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    bottom: -70%;
}

.arge-part .width-arge.sol-arge {
    background: #3058ED;
    border-radius: 15px 0px 0px 15px;
}

.arge-part .width-arge.sol-arge h3 {
    position: absolute;
    bottom: 40%;
    left: 5%;
    color: #fff;
}

.arge-part .width-arge.sol-arge .sinerjibtn-rel {
}

.arge-part .width-arge.sol-arge .sinerjibtn-rel .sinerjibtn {
    top: 450%;
}
.arge-part .width-arge.sol-arge .sinerjienbtn {
    top: 70%;
    position:absolute;
    width: 50%;
    left: 5%;
}

.arge-part .orta-img {
    position: absolute;
    left: 0;
}

.arge-part .orta-img img {
    width: 90%;
}

.hakkimizda {
    position: relative;
    padding-bottom: 5%;
    padding-top: 5%;
}

.hakkimizda .hakkimizdarow {
}

.hakkimizda .hakkimizdarow .left-baslik {
    position: absolute;
    left: 0;
    top: 24%;
}

.hakkimizda .hakkimizdarow .left-baslik h4 {
    color: #3058ED;
    transform: rotate(-90deg);
    font-size: 24px;
    font-weight: 400;
    position: relative;
}

.hakkimizda .hakkimizdarow .left-baslik h4:before {
    content: "";
    background-image: url('../img/baslikbeforemavi.png');
    background-size: contain;
    width: 360px;
    height: 1px;
    position: absolute;
    left: -260%;
    top: 50%;
}

.hakkimizdarow .arka-baslik {
    margin-top: 5%;
    padding-bottom: 5%;
}

.hakkimizdarow .ana-hak-left {
}

.ana-hak-left img {
    border-radius: 0px 323.5px 0px 0px;
    width: 90%;
    padding: 0%;
}

.ana-hak-right {
    width: 100%;
}

.hakkimizda .hakkimizdarow .ana-hak-right h2 {
}

.hakkimizda .hakkimizdarow .arka-baslik {
    position: absolute;
    top: -5%;
    left: 26%;
}

.hakkimizda .hakkimizdarow .arka-baslik h4 {
    -webkit-text-stroke: 1px #333;
    color: transparent;
    font-size: 150px;
    opacity: 0.3;
}

.kariyerpage .ana-hak-right p {
}

.banner {
    position: relative;
    overflow: hidden;
}

.banner img {
    height: 30vh;
    width: 100%;
    object-fit: cover;
}

.banner .bannerdesc {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 100%;
}

.banner .bannerdesc h5 {
    font-weight: 300;
    color: #fff;
}

.banner .bannerdesc h2 {
    font-weight: 300;
    color: #fff;
    position: relative;
}
.banner .bannerdesc h2 span{
    position:absolute;top:-100%;
    font-size:30px;
}

.banner .bannerdesc h2:before {
    content: "";
    background-image: url('../img/banner-after.png');
    background-size: contain;
    width: 80px;
    height: 80px;
    position: absolute;
    left: -3%;
    top: -60%;
}

.izlence-section {
    position: relative;
    height: 30vh;
    background: transparent;
}

.izlence-section img {
    position: absolute;
    right: 5%;
    z-index: 1;
    top: 2%;
}

.izlence-section ul {
    list-style: none;
    padding: 0;
}

.izlence-section ul li {
    display: inline;
    padding-right: 1%;
}

.izlence-section ul li a {
    color: #414141;
    text-decoration: none;
}

.hakright {
    position: relative;
}

.hakright img {
}

.kurumsalpageborder {
}

.hakright .tec {
}

.hakright .tec span {
}

.hakright .proje {
}

.hakright .proje span {
}

.hakkimizdarow h4 {
    color: #1B2445;
    margin-bottom: 0%;
    padding-left: 5%;
    width: 100%;
    color: #021D49;
    margin-bottom: 9%;
    padding: 0;
}
.vizyonpage.urunlerimiz .hakkimizdarow .width50:last-child h4 {
    padding:0;
}
.vizyonpage.urunlerimiz .hakkimizdarow .width50:last-child h4 {
    
    width: 70%;
    border-bottom:2px solid #000;
    padding-bottom:20px
}
.hakkimizdarow.kariyertitle h4 {
    color: #1B2445;
    font-weight: 700;
    margin-bottom: 5%;
    padding-left: 0%;
}


.vizyonpage.urunlerimiz .hakkimizdarow ul {
    list-style:none;
}
.vizyonpage.urunlerimiz .hakkimizdarow ul li {
    position:relative;
    margin-bottom: 40px;
}
.vizyonpage.urunlerimiz .hakkimizdarow ul li strong{font-weight:800;}
.vizyonpage.urunlerimiz .hakkimizdarow ul li::before {
content:"";
    position:absolute;
    left:-20px;
    top:5px;
    background:url(../img/liafters.png);
    width:20px;
    height:20px;
    background-repeat:no-repeat;
    background-size:contain;
    }

.tab-row {
    padding-top: 5%;
    padding-bottom: 0%;
    z-index: 9999;
}

.left-baslik.kariyer h4:before {
    left: -440%;
}

.tab-row ul {
    list-style: none;
    padding: 0;
    font-weight: 700;
    width: 100%;
    margin-bottom: 5%;
}

.tab-row ul li {
    color: #939393;
    display: inline;
    margin-right: 5%;
    margin-bottom: 3%;
}

.tab-row ul li a {
    color: #939393;
}

.tab-row .activepage {
    color: #414141;
    font-weight: bold;
}

.hak-ful-widthp {
    margin-top: 5%;
    margin-bottom: 5%;
}

.hakleft {
}

.hakleft h3 {
    color: #24377D;
}

.hakright {
    position: relative;
    margin-bottom: 10%;
}

.hakright img {
    width: 100%;
}

.hakright .tec {
    position: absolute;
    top: -10%;
    left: 20%;
    background: #D9D9D9;
    border-radius: 12.8748px;
    width: 230px;
    text-align: center;
    padding: 0;
}

.hakright .tec span {
    color: #24377D;
    padding: 20px;
    font-weight: 700;
    font-size: 35px;
    width: 100%;
    display: block;
}

.hakright .proje {
    display: block;
    position: absolute;
    right: 20%;
    bottom: -10%;
    background: #C5E8AA;
    border-radius: 12.8748px;
    width: 230px;
    text-align: center;
    padding: 0;
}

.hakright .proje span {
    color: #24377D;
    padding: 20px;
    font-weight: 700;
    font-size: 35px;
    width: 93%;
    display: block;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a {
    color: #1b2445;
    box-sizing: border-box;
    position: relative;
    width: 200px;
    height: 60px;
    display: inline-block;
    padding: 5px 5px;
    transition: 0.5s;
    padding-top: 9px;
    z-index: 0;
    overflow: hidden;
    font-weight: 500;
    background: #8dff33;
    padding-top: 10%;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a {
    text-align: left;
    padding-left: 10%;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn {
    position: absolute;
    left: 60%;
    right: inherit;
    top: 54%;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a:hover {
    color: #3058ED;
    transition: 0.5s;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a:before {
    content: "";
    background: #A45D43;
    width: 150%;
    margin-left: -25%;
    display: block;
    height: 0px;
    /* top: -20px; */
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a:before {
    background: #3058ED;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a:hover:before {
    height: 70px;
    top: 0px;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a .oklar {
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a:hover .oklar .hover-image {
    right: 25%;
    display: block;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a:hover .oklar .normal-image {
    right: 35%;
    display: none
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a .oklar .normal-image {
    position: absolute;
    right: 25%;
    top: 45%;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn a .oklar .hover-image {
    display: none;
    position: absolute;
    right: 15%;
    top: 45%;
}

.sinerjibtn-rel.beyaz.yesil .sinerjibtn:hover a {
    color: #fff;
}

.subscribe {
    /* margin-top: -20%; */
    z-index: 0;
}

.subscribe h5 {
    text-align: center;
}

.subscribe .ortalabtnform {
    text-align: center;
    width: 40%;
    margin: auto;
    position: relative;
}

.subscribe .ortalabtnform input {
    display: inline;
    width: 96%;
    float: left;
    background: #EDEDF1;
    border: 0.994978px solid #E5E5E5;
    color: #333;
    border-radius: 4px;
    height: 70px;
    margin-top: 1%;
    margin-right: 0;
}

.sinerjibtn-rel.beyaz.yesil {
}

.kurumsalpageborder {
    padding-left: 5%;
    padding-right: 5%;
    margin-left: 5%;
    padding-top: 2%;
    background: #FFFFFF;
    box-shadow: 0px 23.8889px 32.25px rgba(0, 0, 0, 0.05);
    border-radius: 15px 0px 0px 15px;
    margin-right: 0;
    position: relative;
    z-index: 1;
}

.kariyerpage .kurumsalpageborder {
    padding-top: 0%;
}

.yetkinliklerimizslider ul li {
    list-style: none;
}

.yetkinliklerimizslider ul {
    padding: 0;
}

.kurumsaldetay .left-baslik.mavi h4:before {
    content: "";
    background-image: url('../img/baslikbeforemavi.png');
    background-size: contain;
    width: 360px;
    height: 1px;
    position: absolute;
    left: -320%;
    top: 50%;
}

.kurumsal-ic {
    position: relative;
}

.left-baslik {
    position: absolute;
    left: -1%;
    top: 20%;
}

.left-baslik.kariyer {
    position: absolute;
    left: 0%;
    top: 40%;
}

.left-baslik.mavi h4 {
    color: #3058ED;
    transform: rotate(-90deg);
    font-size: 24px;
}

.kurumsal-ic .arka-baslik {
    position: absolute;
    bottom: 50%;
    left: 30%;
}

.arka-baslik {
    z-index: -1;
}

.kurumsal-ic .sss.arka-baslik {
    position: absolute;
    bottom: 37%;
    left: 10%;
    z-index: -1;
}

.kurumsal-ic .arka-baslik h4 {
    -webkit-text-stroke: 1px #333;
    color: transparent;
    font-size: 120px;
    opacity: 0.3;
    line-height: 90%;
}

.vizyonpage .ana-hak-right img {
    border-radius: 323.5px 0 0 0 ;
    width: 100%;
}

.kariyerpage .ana-hak-right {
    margin-bottom: inherit;
    margin-top: auto;
    padding-bottom: 3%;
}

.vizyonpage .ana-hak-left {
    padding-bottom: 5%;
}

.kariyerpage .ana-hak-left {
    padding-bottom: 4%;
}

.kariyerpage ul {
    color: #414141;
    font-weight: 300;
}

.ana-hak-right h2 {
    font-weight: bold;
    color: #1B2445;
    /* padding-left: 5%; */
    font-size: 50px;
    width: 80%;
    margin-top: 40px;
}

.kariyerpage .ana-hak-right h2 {
    padding-bottom: 10%
}

.ana-hak-right p {
    color: #414141;
    padding-left: 0;
    width: 90%;
    line-height: 150%;
    color: #414141;
}

.kalitepolitikamiz {
    margin-top: -5%;
}

.kalitepolitikamiz ul {
}

.kalitepolitikamiz ul li {
    position: relative;
    list-style: none;
    padding-bottom: 3%;
}

.kalitepolitikamiz ul li:before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url('../img/li-before.png');
    position: absolute;
    left: -4%;
    top: 10%;
    background-repeat: no-repeat;
    background-size: contain;
}

.kalitepolitikamiz .kalite-image img {
    width: 100%;
}

.kalitepolitikamiz .kalite-image {
    margin-top: auto;
    margin-bottom: auto;
}

.model-left {
}

.model-left ul {
    height: 59vh;
    overflow: auto;
    margin-right: 10%;
}

.model-left ul .model-tab h5 {
}

.model-left ul .model-tab p {
}

.model-left ul .model-tab {
    cursor: pointer;
    background: linear-gradient(90deg, #EDEDF1 50%, rgba(255, 255, 255, 0) 99.96%);
    opacity: 0.7;
    backdrop-filter: blur(4px);
    border-radius: 15px;
    list-style: none;
    padding: 25px;
    margin-bottom: 35px;
    transition: 1s;
}

.model-left ul .model-tab:hover {
    background: linear-gradient(90deg, rgba(48, 88, 237, 0.3) 50%, rgba(255, 255, 255, 0) 99.96%);
    opacity: 0.7;
    backdrop-filter: blur(4px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 15px;
    transition: 1s;
}

.model-left ul .model-tab.active-model-tab {
    background: linear-gradient(90deg, rgba(48, 88, 237, 0.3) 50%, rgba(255, 255, 255, 0) 99.96%);
    opacity: 0.7;
    backdrop-filter: blur(4px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 15px;
}

#parent-model-tab {
}

#parent-model-tab .modelanacard {
}

#parent-model-tab .modelanacard .ustimg {
    position: relative;
}

#parent-model-tab .modelanacard .ustimg .bgbelgeimage {
    width: 100%;
    height: 65vh;
}

#parent-model-tab .modelanacard .ustimg .ikonn {
    position: absolute;
    top: 40%;
    left: 20%;
}

#parent-model-tab .modelanacard .ustimg span {
    position: absolute;
    top: 40%;
    left: 20%;
}

#parent-model-tab .modelanacard .ustimg span {
    font-weight: 600;
    font-size: 36.8223px;
    line-height: 110.6%;
    text-align: center;
    letter-spacing: -0.025em;
    color: #24377D;
    position: absolute;
    top: 60%;
    left: 34%;
}

#parent-model-tab .modelanacard .sinerjibtn-rel.beyaz.yesil {
}

#parent-model-tab .modelanacard .sinerjibtn-rel.beyaz.yesil .sinerjibtn {
    top: -10%;
    left: 0;
}

#parent-model-tab .sinerjibtn-rel.beyaz.yesil .sinerjibtn a .oklar .hover-image {
    display: none;
    position: absolute;
    left: 10%;
    top: 25%;
}

#parent-model-tab .sinerjibtn-rel.beyaz.yesil .sinerjibtn a .oklar .normal-image {
    position: absolute;
    left: 10%;
    top: 25%;
}

#parent-model-tab .sinerjibtn-rel.beyaz.yesil .sinerjibtn a:hover .oklar .hover-image {
    display: block;
}

#parent-model-tab .sinerjibtn-rel.beyaz.yesil .sinerjibtn a:hover .oklar .normal-image {
    display: none;
}

#parent-model-tab .sinerjibtn-rel.beyaz.yesil .sinerjibtn a {
    text-align: center;
}

#parent-model-tab .arka-baslik h4 {
    -webkit-text-stroke: 1px #333;
    color: transparent;
    z-index: -1;
    font-size: 110px;
    text-align: center;
}

.iletisim-formu .selectimage select option {
    background: #8DFF33;
    color: #1B2445;
    padding: 5px
}

.yetkinliklerimiz {
    padding-bottom: 10%;
    position: relative;
    height: 80vh;
    background: #F6F6F6;
    margin-top: -5%;
    padding-top: 5%;
}

.yetkinliklerimiz .yetkinlik-left {
    width: 30%;
    display: inline-block;
    margin-top: auto;
    margin-bottom: auto;
}

.yetkinliklerimiz .yetkinlik-left .left-baslik.mavi {
}

.yetkinliklerimiz .yetkinlik-left .left-baslik.mavi h4 {
}

.yetkinliklerimiz .yetkinlik-left h2 {
    font-size: 60px;
    line-height: 70px;
}

.yetkinliklerimiz .yetkinlik-left p {
    width: 80%;
    color: #333;
    font-weight: 400;
}

.yetkinliklerimiz .yetkinlik-right {
    width: 70%;
    padding-left: 0%;
}

.yetkinliklerimiz .yetkinliklerimiz-owl {
}

.yetkinliklerimiz .yetkinliklerimiz-owl .yetkinliklerimizslider {
    width: 80%;
}

.yetkinliklerimiz .yetkinliklerimiz-owl .yetkinliklerimizslider .image-card {
}

.yetkinliklerimiz .yetkinliklerimiz-owl .yetkinliklerimizslider .image-card img {
    border-radius: 155px 0px 0px 0px;
}

.yetkinliklerimiz .yetkinliklerimiz-owl .yetkinliklerimizslider h5 {
    color: #3058ED;
    padding-top: 5%;
}

.yetkinliklerimiz .yetkinliklerimiz-owl .yetkinliklerimizslider p {
    color: #333;
    font-weight: 400;
}

.yetkinliklerimiz .yetkinliklerimiz-owl .yetkinliklerimizslider a {
    transition: 1s;
    color: #213780;
}

.yetkinliklerimiz .yetkinliklerimiz-owl .yetkinliklerimizslider a img {
    width: 35px;
    display: inline;
    margin-left: 5%;
}

.yetkinliklerimiz .yetkinliklerimiz-owl .yetkinliklerimizslider a:hover img {
    transition: 1s;
    margin-left: 10%;
}

.owl-carousel.yetkinliklerimiz-owl .owl-nav .owl-prev .slider-ok-normal {
    display: block
}

.owl-carousel.yetkinliklerimiz-owl .owl-nav .owl-next .slider-ok-normal {
    display: block
}

.owl-carousel.yetkinliklerimiz-owl .owl-nav .owl-prev .slider-ok-hover {
    display: none
}

.owl-carousel.yetkinliklerimiz-owl .owl-nav .owl-next .slider-ok-hover {
    display: none
}

.owl-carousel.yetkinliklerimiz-owl .owl-nav .owl-prev:hover .slider-ok-normal {
    display: none
}

.owl-carousel.yetkinliklerimiz-owl .owl-nav .owl-next:hover .slider-ok-normal {
    display: none
}

.owl-carousel.yetkinliklerimiz-owl .owl-nav .owl-prev:hover .slider-ok-hover {
    display: block
}

.owl-carousel.yetkinliklerimiz-owl .owl-nav .owl-next:hover .slider-ok-hover {
    display: block
}

.owl-carousel.yetkinliklerimiz-owl .owl-nav {
    display: block !important;
    position: absolute;
    right: 5%;
    bottom: -10%;
}

.yetkinlikrow {
    padding-left: 10%;
    margin: 0;
}

.yetkinliklerimiz .left-baslik.mavi h4:before {
    content: "";
    background-image: url('../img/baslikbeforemavi.png');
    background-size: contain;
    width: 360px;
    height: 1px;
    position: absolute;
    left: -210%;
    top: 50%;
}

.yetkinliklerimiz .owl-dots {
    position: absolute;
    left: 0;
    bottom: -30%;
}

.yetkinliklerimiz .owl-theme .owl-dots .owl-dot span {
    width: 100px !important;
    height: 1px !important;
    margin: 0 !important;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    border: 1px solid #333333 !important;
    background: #333 !important;
}

.yetkinliklerimiz .owl-theme .owl-dots .owl-dot.active span {
    height: 5px !important;
    background: #333 !important;
}

.yetkinlikpage .subscribe {
    margin-top: 0%;
    z-index: 1;
}

.yetkinlikpage .subscribe h5 {
    margin-top: 0%;
    padding-top: 5%;
    padding-bottom: 5%;
}

.arge-detay {
    background: #F6F6F6;
    height: auto;
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
}

.arge-detay .row {
    margin: 0;
}

.arge-detay h2 {
    width: 100%;
    color: #1B2445;
    font-weight: 700;
}

.arge-detay p {
    font-weight: 200;
    color: #414141;
    width: 90%;
    line-height: 150%;
    padding-top: 20%;
}

.arge-detay ul {
    color: #414141;
    list-style: none;
    font-weight: bold;
    padding: 0;
    margin-top: 15%;
}

.arge-detay ul li {
    border-bottom: 2px solid #2F52C7;
    width: max-content;
    line-height: 200%;
}

.arge-detay .left-baslik {
    position: absolute;
    left: 3%;
    top: 5%;
}

.arge-2 .arka-baslik {
    top: 5% !important;
}

.arge-2 ul li {
    width: 100%;
    border: none;
    line-height: inherit;
    position: relative;
    margin-top: 2%;
}

.arge-2 ul li:before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url('../img/li-before.png');
    position: absolute;
    left: -5%;
    top: 10%;
    background-repeat: no-repeat;
    background-size: contain;
}

.arge-detay .left-baslik h4 {
    color: #115BE6;
    transform: rotate(-90deg);
    font-size: 24px;
}

.arge-detay .left-baslik h4:before {
    content: "";
    background-image: url('../img/baslikbeforeyesil.png');
    background-size: contain;
    width: 360px;
    height: 1px;
    position: absolute;
    left: -200%;
    top: 50%;
}

.arge-detay .arka-baslik h4 {
    -webkit-text-stroke: 1px #414141;
    color: transparent;
    font-size: 150px;
    opacity: 0.3;
}

.arge-detay .arka-baslik {
    position: absolute;
    left: 21%;
    top: 12%;
    z-index: 0;
}

.arge-detay .radiusimage {
}

.arge-detay .radiusimage img {
    border-radius: 323.5px 0px 0px 0px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    width: 100%;
}

.akordion-div {
    margin-top: 20%;
}

.akordion-div button {
    text-align: left;
    width: max-content;
    line-height: 200%;
    display: block;
    border: none;
    border-bottom: 2px solid #2F52C7;
    outline: none;
    background: transparent;
    color: #414141;
    list-style: none;
    font-weight: bold;
    font-size: 20px;
    padding: 0;
}

.akordion-div .collapse {
}

.akordion-div .collapse p {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    padding-top: 5%;
    color: #414141;
}

.text-top {
    padding-bottom: 5%;
}

.text-top p {
    font-weight: 200;
    color: #414141;
    width: 90%;
    line-height: 150%;
}

.arge-detay-part-2 {
    padding-bottom: 10%;
    padding-top: 5%;
}

.izlence-section.detay {
    background: #DFE8EF;
}

.arge-detay-2 {
    background: #DFE8EF;
    height: auto;
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
}

.arge-detay-2 h2 {
    width: 100%;
    color: #1B2445;
    font-weight: 700;
}

.arge-detay-2 p {
    font-weight: 200;
    color: #414141;
    width: 90%;
    line-height: 150%;
}

.arge-detay-2 ul {
    color: #414141;
    list-style: none;
    font-weight: bold;
    padding: 0;
    margin-top: 15%;
}

.arge-detay-2 ul li {
    border-bottom: 2px solid #2F52C7;
    width: max-content;
    line-height: 200%;
}

.arge-detay-2 .left-baslik {
    position: absolute;
    left: 3%;
    top: 43%;
}

.arge-detay-2 .left-baslik h4 {
    color: #115BE6;
    transform: rotate(-90deg);
    font-size: 24px;
}

.arge-detay-2 .left-baslik h4:before {
    content: "";
    background-image: url('../img/baslikbeforeyesil.png');
    background-size: contain;
    width: 360px;
    height: 1px;
    position: absolute;
    left: -210%;
    top: 50%;
}

.arge-detay-2 .arka-baslik h4 {
    -webkit-text-stroke: 1px #4141415c;
    color: transparent;
    font-size: 120px;
    opacity: 0.3;
}

.arge-detay-2 .arka-baslik {
    position: absolute;
    left: 13%;
    top: 27%;
    z-index: 1;
}

.owl-carousel.mobile-owl .owl-nav {
    display: none !important;
}

.yetkinliklerimiz-galeri-owl {
    position: relative;
    padding: 0% 3%;
}

.owl-carousel.yetkinliklerimiz-galeri-owl .owl-nav .owl-prev .slider-ok-normal {
    display: block
}

.owl-carousel.yetkinliklerimiz-galeri-owl .owl-nav .owl-next .slider-ok-normal {
    display: block
}

.owl-carousel.yetkinliklerimiz-galeri-owl .owl-nav .owl-prev .slider-ok-hover {
    display: none
}

.owl-carousel.yetkinliklerimiz-galeri-owl .owl-nav .owl-next .slider-ok-hover {
    display: none
}

.owl-carousel.yetkinliklerimiz-galeri-owl .owl-nav .owl-next:hover .slider-ok-normal {
    display: none !important
}

.owl-carousel.yetkinliklerimiz-galeri-owl.owl-nav .owl-next:hover .slider-ok-hover {
    display: block !important
}

.owl-carousel.yetkinliklerimiz-galeri-owl .owl-nav .owl-prev:hover .slider-ok-normal {
    display: none !important
}

.owl-carousel.yetkinliklerimiz-galeri-owl .owl-nav .owl-prev:hover .slider-ok-hover {
    display: block !important
}

.owl-carousel.yetkinliklerimiz-galeri-owl .owl-nav {
    position: absolute;
    right: 10%;
    bottom: 0%;
}

.argedetayslider {
    position: relative;
    overflow: hidden;
    height: 60vh;
}

.argedetayslider .yetkinliklerimiz-galeri-owl {
    position: absolute;
    left: 6%;
}

.argedetayslider .yetkinliklerimiz-galeri-owl .yetkinliklerimizslider {
    padding: 0px 36px;
    position: relative;
}

.argedetayslider .yetkinliklerimiz-galeri-owl .yetkinliklerimizslider .absolute-right {
    position: absolute;
    right: -8%;
    top: 12%;
    transform: rotate(270deg);
}

.argedetayslider .yetkinliklerimiz-galeri-owl .yetkinliklerimizslider .absolute-right span {
}

.argedetayslider .yetkinliklerimiz-galeri-owl .yetkinliklerimizslider .image-card {
}

.argedetayslider .yetkinliklerimiz-galeri-owl .yetkinliklerimizslider .image-card img {
    height: 370px;
    object-fit: cover;
}

.sloganpart {
    padding-top: 5%;
    padding-bottom: 5%;
}

.sloganpart .slogan {
}

.sloganpart .slogan h3 {
    line-height: 110%;
    /* or 106px */
    text-transform: uppercase;
    color: #1B2445;
    width: 80%;
    font-weight: 700;
}

.surdurulebilirlik {
    padding-bottom: 5%;
}

.surdurulebilirlik p {
    font-weight: 200;
    color: #414141;
    line-height: 150%;
    padding-bottom: 5%;
}

.surdurulebilirlik img {
    width: 100%;
}

.surdurulebilirlik-last {
    background-image: url(../img/surdur-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 3%;
    padding-bottom: 5%;
    position: relative;
    z-index: 1;
}

.surdurulebilirlik-last .left {
    padding-left: 5%;
    padding-right: 5%;
}

.surdurulebilirlik-last .left .imagerad {
}

.surdurulebilirlik-last .left .imagerad img {
    border-radius: 0px 323.5px 0px 0px;
    width: 100%;
}

.surdurulebilirlik-last .right {
    padding-right: 5%;
    padding-left: 5%;
    text-align: center;
}

.surdurulebilirlik-last .right h5 {
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
    /* or 67px */
    text-align: center;
    color: #F6F7FB;
}

.surdurulebilirlik-last .right img {
    width: 90%;
    padding-top: 5%;
}

.kariyerpage ul {
    padding: 5%;
    margin-top: -5%;
}

.kariyerpage ul li {
    position: relative;
    list-style: none;
    margin-top: 3%;
}

.kariyerpage ul li:before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url('../img/li-before.png');
    position: absolute;
    left: -3%;
    top: 34%;
    background-repeat: no-repeat;
    background-size: contain;
}

.haberlerrow .haberslider {
    margin: 50px;
    overflow: hidden;
    position: relative;
    height: 30vh;
    width: 40%;
    margin: auto;
    margin-bottom: 4%;
}

.haberlerrow .haberslider .left-card {
    transition: 1s;
    width: 50%;
    display: inline-block;
    background: #3058ED;
    height: 100%;
    margin-top: 0;
    height: 250px;
    border-radius: 0px 0px 0px 60px;
    position: absolute;
    top: 0;
    padding: 2% 0% 0% 5%;
}

.haberlerrow .haberslider .left-card h5 {
    font-weight: 600;
    color: #FFFFFF;
    line-height: 35px;
}

.haberlerrow .haberslider .left-card p {
    font-weight: 400;
    line-height: 24px;
    font-size: 16px;
    color: #FFFFFF;
    width: 100%;
}

.haberlerrow .haberslider .left-card a {
    font-weight: 400;
    line-height: 24px;
    font-size: 16px;
    color: #8DFF33;
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: 1s;
}

.haberlerrow .haberslider .left-card a:hover img {
    right: -65%;
    transition: 1s;
}

.haberlerrow .haberslider .left-card a img {
    position: absolute;
    right: -50%;
    width: 35px;
    top: 20%;
    transition: 1s;
}

.haberlerrow .haberslider .right-card {
    transition: 1s;
    width: 50%;
    display: inline-block;
    border-radius: 0px 90px 0px 0;
    height: 250px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}

.haberlerrow .haberslider .right-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.haberlerrow .haberslider:hover .left-card {
    border-radius: 60px 0px 0px 0;
    transition: 1s;
}

.haberlerrow .haberslider:hover .right-card {
    border-radius: 0 0px 60px 0;
    transition: 1s;
}

.haberlerrow {
    margin-top: 5%;
}

.haberler .haberlerr {
    margin-top: 0;
    padding-bottom: 0;
}

.haberler .haberlerr h5 {
    padding-top: 10%;
}

.haberler .haberlerr .ortalabtnform {
    padding-bottom: 10%;
}

.haber-top .arka-baslik {
    left: 30% !important;
    top: 20% !important;
}

.haber-top .left-baslik { 
    top: 5% !important;
}

.haber-detay {
}

.haber-detay .arka-baslik {
    top: 0 !important;
    bottom: inherit !important;
}

.haber-detay img {
    padding-top: 3%;
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
}

.haber-detayy {
    padding-bottom: 10%;
    position: relative;
}

.haber-detayy .tarih {
    width: 100%;
    display: block;
    padding-top: 3%;
    padding-bottom: 0%;
}

.haber-detayy h3 {
    font-weight: 700;
    font-size: 60px;
    line-height: 150%;
    /* identical to box height, or 78px */
    color: #1B2445;
}

.haber-detayy p {
    line-height: 180%;
    /* or 36px */
    color: #414141;
}

.haber-detayy .tumhaberler {
    position: absolute;
    bottom: 10%;
    left: 10%;
}

.haber-detayy .tumhaberler .tum {
    /* or 31px */
}

.haber-detayy .tumhaberler .tum a {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    /* or 31px */
    color: #1B2445;
}

.haber-detayy .oncesonra {
    position: absolute;
    right: 10%;
    bottom: 10%;
}

.haber-detayy .oncesonra .prev {
}

.haber-detayy .oncesonra .prev:hover a {
    font-size: 20px;
    transition: 1s;
}

.haber-detayy .oncesonra .next {
}

.haber-detayy .oncesonra .next:hover a {
    font-size: 20px;
    transition: 1s;
}

.haber-detayy .oncesonra .prev a {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    color: #1B2445;
}

.haber-detayy .oncesonra .next a {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    color: #1B2445;
}

.haber-detayy .oncesonra .prev a img {
}

.haber-detayy .oncesonra .next a img {
}

.haritalar {
    position: relative;
    background: #F6F6F6;
    padding-top: 5%;
    margin-top: -5%;
    padding-bottom: 5%;
}

.haritalar .haritawidth {
    width: 50%;
    height: 55vh;
}

.haritalar .haritawidth h3 {
    font-weight: 700;
    color: #1B2445;
    padding-top: 5%;
}

.haritalar .haritawidth .left-baslik.mavi {
}

.haritalar .haritawidth .left-baslik h4:before {
    content: "";
    background-image: url('../img/baslikbeforemavi.png');
    background-size: contain;
    width: 360px;
    height: 1px;
    position: absolute;
    left: -450%;
    top: 50%;
}

.haritalar .haritawidth .arka-baslik h4 {
    font-size: 150px;
}

.haritalar .haritawidth .arka-baslik {
    -webkit-text-stroke: 1px #333;
    color: transparent;
    opacity: 0.3;
    position: absolute;
    right: 36%;
    z-index: -1;
}

.haritalar .haritawidth .iletisim-bilgileri {
}

.haritalar .haritawidth .iletisim-bilgileri table {
}

.haritalar .haritawidth .iletisim-bilgileri table tr td {
    width: 70%;
    padding-top: 5%;
    font-weight: 300;
    font-size: 20px;
    /* or 28px */
    color: #414141;
}

.haritalar .haritawidth .iletisim-bilgileri table tr td:nth-child(1) {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    /* identical to box height */
    color: #0F1629;
    width: 30%;
}

.haritalar .haritawidth .iletisim-bilgileri table a {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    /* or 28px */
    color: #414141;
}

.haritalar .haritawidth .iletisim-bilgileri .haritabtn {
    margin-top: 5%;
    background: #ECEBE9;
    width: 30%;
    height: 50px;
}

.haritalar .haritawidth .iletisim-bilgileri .haritabtn a {
    width: 100%;
    background: #ECEBE9;
    font-weight: 300;
    font-size: 24px;
    line-height: 48px;
    /* identical to box height */
    color: #0F1629;
    padding-left: 12%;
    height: 100%;
    display: block;
}

.haritalar .haritawidth .iletisim-bilgileri .haritabtn a img {
}

.haritalar .haritawidth .iletisim-bilgileri .haritabtn a img {
    float: right;
    padding-right: 5%;
    margin-top: 5%;
}

.haritalar .haritawidth iframe {
}

.openmenulinks {
}

.openmenulinks li {
}

.openmenulinks li span {
    transition: 0.5s;
    font-style: normal;
    width: 60px;
    display: inline-block;
    font-weight: 275;
    font-size: 29.3748px;
    /* or 32px */
    color: #FFFFFF;
}

.slidesection {
    position: relative;
    height: 90vh;
    border-radius: 20px;
    overflow: hidden;
}

.slidesection .firstback {
    width: 100%;
    height: 90vh;
    position: absolute;
    top: 0;
    left: 0;
}

.slidesection .toponslides {
    position: absolute;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    transition: 0.6s;
    height: 90vh;
}

.slidesection .toponslides.active {
    opacity: 1;
}

.iletisim-footer table tr td:first-child {
    width: 15%;
}

.slidesection .tooltipbutton {
    position: absolute;
    top: 40%;
    left: 10%;
    display: none;
}

.slidesection .tooltipbutton.show {
    display: block;
}

.slidesection .tooltipbutton .content {
    display: none;
    background: #fff;
    padding: 5%;
    width: 60%;
    height: 30vh;
    position: absolute;
    bottom: 150%;
    width: 340px;
    border-radius: 20px;
}

.slidesection .tooltipbutton:hover .content {
    background: #213780;
    opacity: 0.9;
    color: #fff;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    height: auto;
}

.kurumsaldetay {
    padding-top: 5%;
    padding-bottom: 5%;
}

.kurumsaldetay h3 {
    line-height: 110%;
    color: #1B2445;
    font-weight: bold;
}

.firstback {
}

.width50 {
    width: 50%;
}

.width60 {
    width: 60%;
}

.width40 {
    width: 40%;
}

.width70 {
    width: 70%;
}

.width30 {
    width: 30%;
}

.basvuru-owl .owl-dots {
    display: block !important;
    position: absolute;
    left: 0%;
    bottom: -10%;
}

.basvuru-owl .owl-dots .owl-dot span {
    width: 80px !important;
    height: 3px !important;
    margin: 5px 3px;
    background: #0A7BB3!important;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border: none !important;
    border-radius: 5px !important;
    margin: 0 !important;
}

.basvurupage .kurumsalpageborder {
    padding-top: 0;
    padding-bottom: 5%;
    position: relative;
}

.basvurupage .kurumsalpageborder h2 {
    padding-bottom: 5%;
}

.basvurupage .basvuru-owl {
}

.basvurupage .basvuru-owl .item {
}

.basvurupage .basvuru-owl .item .basvurucard {
}

.basvurupage .basvuru-owl .item .basvurucard .top {
    height: 10vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.basvurupage .basvuru-owl .item .basvurucard .top h5 {
    font-size: 25px;
    font-weight: 700;
    padding-left: 10%;
    padding-right: 10%;
}

.basvurupage .basvuru-owl .item .basvurucard p.baslik {
    padding-top: 5%;
    font-weight: 600;
}

.basvurupage .basvuru-owl .owl-nav {
    bottom: -10%;
    right: 6%;
}

.basvurupage .basvuru-owl .item .basvurucard p {
    padding-left: 10%;
    padding-right: 10%;
    font-size: 17px;
    line-height: 130%;
    color: #191828;
}

.basvurupage .basvuru-owl .item .basvurucard li {
    font-size: 17px;
    line-height: 130%;
    color: #191828;
    width: 90%;
}

.basvurupage .basvuru-owl .item .basvurucard {
    width: 90%;
    border: 1px solid #636363;
    border-radius: 20px;
    height: 45vh;
    overflow: auto;
}

.basvurupage .basvuru-owl .item .basvurucard .leftbasvuru {
    width: 50%;
    padding-left: 10%;
}

.rightbasvuru .sinerjibtn-rel {
    width: 100%;
}

.basvurupage .basvuru-owl .item .basvurucard .leftbasvuru table {
    padding-left: 5%;
}

.basvurupage .basvuru-owl .item .basvurucard .leftbasvuru table tr {
}

.basvurupage .basvuru-owl .item .basvurucard .leftbasvuru table td:first-child {
    width: 20%
}

.basvurupage .basvuru-owl .item .basvurucard .leftbasvuru table td:last-child {
    width: 80%;
}

.basvurupage .basvuru-owl .item .basvurucard .leftbasvuru table td img {
}

.basvurupage .basvuru-owl .item .basvurucard .leftbasvuru table td p {
}

.basvurupage .basvuru-owl .item .basvurucard .rightbasvuru {
    width: 50%;
}

.iletisim-formubasvuru input[type="text"] {
    font-weight: 300;
    font-size: 18px;
    line-height: 114%;
    color: #333;
    width: 80%;
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #8DFF33;
    height: 50px;
    margin-bottom: 40px;
}

.iletisim-formubasvuru select {
    font-weight: 300;
    font-size: 18px;
    line-height: 114%;
    color: #545454;
    width: 80%;
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #8DFF33;
    height: 50px;
    margin-bottom: 40px;
    padding-left: 0;
}

.iletisim-formubasvuru textarea {
    font-weight: 300;
    font-size: 18px;
    line-height: 114%;
    color: #545454;
    width: 80%;
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #8DFF33;
    height: 140px;
    margin-bottom: 40px;
    resize: none;
}
.checkbox-kvkk{
  
float: left;
}
.iletisim-formubasvuru .inputrow {
    padding-top: 5%;
    width: 100%;
}

@media (max-width: 1100px) {
    .iletisim-formubasvuru textarea {
        width:100%;
    }

    .iletisim-formubasvuru select {
        width: 100%;
    }

    .iletisim-formubasvuru input {
        width: 100%;
    }

    .main-header .main-header-menu ul li {
        display: inline-block;
        margin: 0px 0px 0px 4%;
    }
}

@media (max-width: 900px) {
    .iletisim-formubasvuru input {
        font-size:14px;
    }

    .iletisim-formubasvuru select {
        font-size: 14px;
    }

    .iletisim-formubasvuru textarea {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .inputrow .col-lg-6 {
        padding:0;
    }
}

.iletisim-formubasvuru {
}

.iletisim-formubasvuru h4 {
    width: 100%;
}

.iletisim-formubasvuru .inputrow {
}

.iletisim-formubasvuru .inputrow .leftbasvuru {
    width: 50%;
}

.iletisim-formubasvuru .inputrow .rightbasvuru {
    width: 50%;
}

.iletisim-formubasvuru h4 {
    margin-top: 5%;
    margin-bottom: 5%;
}

.tamabasvuru {
    width: 100%;
    text-align: right;
}

.tamabasvuru .sinerjibtn-rel {
    width: 20%;
    display: inline-block;
}

.arge-2 {
    background: #DFE8EF;
}

.yetkinliklerimiz.digr-yetkinliklerimiz.det {
    background: #DFE8EF;
    height: 100vh;
}

.sloganpart {
}

.sloganpart img {
    width: 100%;
}

.banner .banneriletisim {
    position: absolute;
    top: 20%;
    right: 10%;
    text-align: right;
    width: 50%;
}

.banner .banneriletisim a {
}

.banner .banneriletisim a:hover img {
    transform: scale(1.2);
    transition: 1s;
}

.banner .banneriletisim a img {
    width: 10%;
    height: 100%;
    transition: 1s;
}

.banner .banneriletisim a span {
    color: #fff;
    font-size: 150%;
    padding-right: 5%;
}

.left-baslik.surdur {
}

.width50.hak-ful-widthp {
    width: 100%;
}

.left-baslik.surdur {
    position: absolute;
    left: 3%;
    top: 20%;
}

.left-baslik.detay {
    position: absolute;
    left: -1%;
    top: 15%;
}

.surdur.left-baslik h4:before {
    content: "";
    background-image: url(../img/baslikbeforeyesil.png);
    background-size: contain;
    width: 360px;
    height: 5px;
    position: absolute;
    left: -210%;
    top: 50%;
}

.banner .bannerdesc.parkur {
}

.banner .bannerdesc.parkur h2 {
}

.margineksi {
    margin-top: -5%;
}

.tooltipbutton {
}

.tooltipbutton span {
    position: relative;
    background: #FFFFFF;
    padding: 10px 30px;
    border-radius: 10px;
    display: block;
    width: max-content;
}

.tooltipbutton a {
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.tooltipbutton:hover span {
    background: #8DFF33;
}

.tooltipbutton span:before {
    content: "";
    background-image: url(../img/argebefore.png);
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 40%;
    top: 130%;
}

.tooltipbutton .content {
}

.tooltipbutton .content p {
    color: #fff;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5%;
    padding-bottom: 5%;
}

.arge-part {
    position: relative;
}

.argepartarastirma {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    border-radius: 20px;
    background: #3058ED;
}

.argepartgelistirme {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
}

.argepartarastirma .gelistirme {
}

.argepartarastirma .gelistirme h3 {
    color: #fff;
}

.argepartarastirma .gelistirme p {
    color: #fff !important;
}

.argepartarastirma .gelistirme h3:after {
    content: "";
    background-image: url(../img/arastirma-after.png);
    width: 160%;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 90%;
    right: -60%;
    transform: rotate(0deg);
}

.argepartgelistirme .gelistirme {
    background: #dfe8ef;
    width: 100%;
    border-radius: 20px;
}

#opacit {
    opacity: 1;
    transition: 0.3s;
    transition-delay: 0.2s;
}
#opacits {
    opacity: 0;
    transition: 0.3s;
    transition-delay: 0.2s;
}

.argepartgelistirme .gelistirme h3 {
    margin-bottom: 5%;
    position: relative;
    width: max-content;
}

.argepartgelistirme .gelistirme h3:after {
    content: "";
    background-image: url(../img/icafter.png);
    width: 160%;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 60%;
    right: -60%;
    transform: rotate(180deg);
}

.argepartgelistirme .gelistirme p {
}

.argepartarastirma .gelistirme {
}

.gelistirme .leftimagegel {
    width: 45%;
    padding: 1%;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}

.gelistirme .leftimagegel img {
    width: 80%;
    border-radius: 213px 0 0 0;
    padding: 0%;
}

.gelistirme .rightdescgg {
    width: 55%;
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 2%;
}

.gelistirme .rightdescgg h3 {
    position: relative;
    width: max-content;
    margin-bottom: 5%;
}

.gelistirme .rightdescgg p {
    color: #030a22;
}

.argepartgelistirme .absolutegeri {
    position: absolute;
    top: 5%;
    left: 5%;
}

.argepartgelistirme .absolutegeri .geri {
    color: #1b2445;
    font-size: 20px;
}

.argepartarastirma .absolutegeri {
    position: absolute;
    top: 5%;
    left: 5%;
}

.argepartarastirma .absolutegeri .geri {
    color: #fff;
    font-size: 20px;
}

.sinerjibtn-rel {
    width: 33%;
    position: relative;
    height: 10vh;
    display: inline-block;
    /* position: absolute; */
    /* right: 0; */
    /* top: -2px; */
}

.ortalabtnform .sinerjibtn-rel { 
    position: absolute;
    right: 0;
     top: -2px;
}

.hakkimizda .sinerjibtn-rel.mavi .sinerjibtn a {
    margin-top: 0%;
}

.hakkimizda .sinerjibtn-rel {
    left: 0%;
}

.hak-ful-widthp p {
    line-height: 130%;
    color: #414141;
}

.openmenulinks ul li {
    position: relative;
}

.openmenulinks ul li:hover:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150%;
    height: 10px;
    background-image: url('../img/menubottom.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.iceriik {
    margin-bottom: 5%;
}

strong,b {
    font-weight: bold;
}
.myslider{}
.myslider .item{
    position: relative;
}
.myslider .item .images{
    width: 100%;
}

.myslider .item .images{ 
    opacity:0;
    transition:0.3s; 
}
.myslider .owl-item.active .item .images{ 
	opacity:1;
    transition:0.3s;
}
.myslider .item .images img{
    height: 110vh;
    object-fit: cover;
    width: 120%;
}
.myslider .item .descslider{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 50%;
    opacity:0;
    transition: 0.5s;
    left: 0px;
}
.myslider .owl-item.active .item .descslider{
	opacity:1;
	transition: 2s;
	left: 10%;
}
 
.myslider .item .descslider .sinerjibtn-rel.mavi .sinerjibtn {
    left: -4%;
}
.myslider .item .descslider h3{
    width: 80%;
    color: #FFF;
    text-shadow: 1px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 60px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 134.5%;
    letter-spacing: 0.6px;
}
.myslider .item .descslider p{
    color: #FFF;
}
.myslider .item .film-sinerji{
    width:100%;
    height:100vh;
    position:absolute;
    left:0;
    top:0;
    background: linear-gradient(90deg, rgba(13, 21, 51, 0.9) 0%, rgba(36, 55, 125, 0.04) 60.94%);
    }
.sosyalmedyalar{
    position: absolute;
    left: 2%;
    bottom: 10%;
    z-index: 9;
}
.sosyalmedyalar ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.sosyalmedyalar ul li {
    margin-bottom: 15px;
    height: 50px;
}
.sosyalmedyalar ul li a{}
.sosyalmedyalar ul li a img{
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: 0.5s ease-out;
}
.sosyalmedyalar ul li:hover{} 
.sosyalmedyalar ul li:hover a img{
    transition: 0.5s ease-out;
    width: 48px;
    height: 48px;
}

.pagelist{
    position: absolute;
    right: 8%;
    top: 20%;
    z-index:0;
}
.pagelist ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagelist ul li{
    position:relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    line-height: initial;
    border: none;
    width: auto;
}
.pagelist ul li::before{
    content:"";
    width:14px;
    height:14px;
    border-radius:50%;
    background: rgba(217, 217, 217, 1);
    position:absolute;
    right: -30px;
    top: 34%;
}
.pagelist ul li::after{}
.pagelist ul li a{
        font-size: 15px;
        font-family: Poppins;
        font-style: normal;
        font-weight: 600;
        line-height: 136.5%;
        letter-spacing: 0.075px;
        opacity: 0;
}
.pagelist ul li.active::after{
    content:"";
    width:22px;
    height:22px;
    border-radius:50%;
    background:transparent;
    position:absolute;
    right: -34px;
    top: 13px;
    border:1px solid #FFF;
}
.pagelist ul li.active.beyaz::after{
    
    border:1px solid #FFF;
}
.pagelist ul li.active.yesil::after{
    
    border:1px solid #8DFF33;
    }
.pagelist ul li.active.mavi::after{
    
    border:1px solid #24377D;
    }
.pagelist ul li.active.beyaz::before{
    
    background: #FFF;
}
.pagelist ul li.active.yesil::before{
    
    background: #8DFF33;
    }
.pagelist ul li.active.mavi::before{
    
    background: #24377D;
    }
.pagelist ul li.active.beyaz a{
    color: #FFFFFF;
    opacity:1;
}
.pagelist ul li.active.yesil a{
    color: #8DFF33;
    opacity:1;
    }
.pagelist ul li.active.mavi a{
   color: #24377D;
    opacity:1;
    }
    .iletisimfixed{
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 1;
}
    .iletisimfixed a {
    background: #FF852D;
    z-index: 9;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
    margin-top: 4px;
    }
    .iletisimfixed a  img{
    width: 30px;
    object-fit: contain;
}
    .iletisimemail{
    position: fixed;
    right: 0;
    background: #FF852D;
    top: 50%;
    z-index: 9;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
    .iletisimemail a {}
    .iletisimemail a  img{
    width: 40px;
    object-fit: contain;
}
.nedenbiz{
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
}
.nedenbiz h3{
    font-weight: 700;
    width: 100%;
    text-align: center;padding-bottom:3%;
}
.nedenbiz p{
    width: 62%;
    text-align: justify;
    margin: auto;
}
.nedenbiz .nb-card{
    width: 30%;
    margin-right: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid #3058ED;
    background: #3058ED;
    box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.15);
    padding: 50px 50px;
}
.nedenbiz .nb-card h4{
    color: #FFF;
    text-align: justify;
    font-size: 30px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    
}
.nedenbiz .nb-card img{
    height: 100px;
    object-fit: contain;
}
.nedenbiz .row{padding-top:5%;}
.nedenbiz .nb-card span{
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    line-height: 139.5%;
    text-align:center;
}
    
    .nedenbiz .left-baslik h4{
        color: #3058ED;
        font-size: 20px; 
        font-weight: 400; 
        position:relative;
        transform:rotate(-90deg)
    }
    .nedenbiz .left-baslik h4::after{
        content:"";
        width:100%;
        height:2px;
        background: rgba(91, 112, 181, 1);
        position:absolute;
        left: -430px;
        top: 24px;
        background-image: url(../img/baslikbeforeyesil.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 390px;
    }
    
    
    .nedenbizabsol{}
    
    
        .nedenbizabsol span{
            font-size: 150px;
            position: absolute;
            top: 0;
            right: 0;
            color: transparent;
            background: linear-gradient(rgb(0 0 0 / 12%), rgb(0 0 0 / 14%));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-stroke: 1px #00000029;
            background: transparent;
            color: transparent;
        }
    
    .rakamlars{
    background: url(../img/rakamlarla.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 7%;
    padding-bottom: 7%;
    background-position: 0;
    position: relative;
}
    
    .rakamlars .left-baslik h4{
        color: #8DFF33;
        font-size: 20px;
        font-weight: 400;
        position:relative;
        transform:rotate(-90deg)
    }
    .rakamlars .left-baslik h4::after{
        content:"";
        width:100%;
        height:2px;
        background: rgba(91, 112, 181, 1);
        position:absolute;
        left: -430px;
        top: 24px;
        background-image: url(../img/baslikbeforeyesil.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 390px;
    }
    .rakamlars h3{
    color: #FFF;
    width: 50%;
    margin-bottom: 2rem;
}
    .rakamlars p{
    color: #FFF;
}
    .rakamlars .leftrakam{width:50%;}
    .rakamlars .rightrakam{width:50%;}
    .rakamlars .rightrakam .rakamlar{
    width: 30%;
    margin-right: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5rem;
}
    .rakamlars .rightrakam .rakamlar img{
    margin-bottom: 1rem;
}
    .rakamlars .rightrakam .rakamlar h4{
    color: #fff;
    font-weight: 800;
}
    .rakamlars .rightrakam .rakamlar span{
    color: #FFF;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    line-height: 126.27%;
}
.markalar{
    padding-top: 5%;
    padding-bottom: 5%;
}
.markalar .markalar-owl{}
.markalar .markalar-owl .owl-item{}
.markalar .markalar-owl .owl-item .item{
    display: flex;
    justify-content: center;
    align-items: center;
}
.markalar .markalar-owl .owl-item .item img{
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: grayscale(1);
    transition:0.5s;
}
.owl-carousel.markalar-owl .owl-nav {
    display: none !important; 
}
.markalar .markalar-owl .owl-item .item:hover img{
    filter:grayscale(0);
    transition:0.5s;
}
.haberler-slider{}
.haberler-slider .haberler-new-owl{
    padding-top: 5%;
}
.haberler-slider .haberler-new-owl .owl-item{
}
.haberler-slider .haberler-new-owl .owl-item .item{
    width: 90%;
}
.haberler-slider .haberler-new-owl .owl-item .item .haberslider2{}
.haberler-slider .haberler-new-owl .owl-item .item .haberslider2 .date{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #24377D;
    font-size: 15px;
    font-weight: 500; 
    margin-bottom: 2rem;
}
.haberslider2.haberwidth .date{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #24377D;
    font-size: 15px;
    font-weight: 500; 
    margin-bottom: 2rem;
}
.haberler-slider .haberler-new-owl .owl-item .item .haberslider2 .date img{
    width: auto;
    display: inline-block;
    height: auto;
}.haberslider2.haberwidth .date img{
    width: auto;
    display: inline-block;
    height: auto;
}
.haberslider2.haberwidth{
	width:30%;
	margin-right:3%;
}
.haberslider2.haberwidth .sinerjibtn-rel.mavi .sinerjibtn a{
    margin: 0;
}
.haberslider2.haberwidth .sinerjibtn-rel.mavi .sinerjibtn a img{
    height: auto;
    width: 99%;
}
.haberslider2.haberwidth img{
    height: 300px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}
.haberler-slider .haberler-new-owl .owl-item .item .haberslider2 h6{
    font-weight: 600;
    color: #24377D;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.haberslider2.haberwidth  h6{
    font-weight: 600;
    color: #24377D;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.haberler-slider .haberler-new-owl .owl-item .item .haberslider2 .sinerjibtn-rel.mavi{
}
.haberler-slider .haberler-new-owl .owl-item .item .haberslider2 .sinerjibtn-rel.mavi .sinerjibtn{}
.haberler-slider .haberler-new-owl .owl-item .item .haberslider2 .sinerjibtn-rel.mavi .sinerjibtn a{
    margin: 0;
}
.haberler-slider .haberler-new-owl .owl-item .item .haberslider2 .sinerjibtn-rel.mavi .sinerjibtn a img{
    height: auto;
    width: 99%;
}
.haberler-slider .haberler-new-owl .owl-item .item .haberslider2 img{
    height: 300px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}
.haberler-slider .haberler-new-owl .owl-item .item .haberslider2 h6{
    font-weight: 600;
    color: #24377D;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.haberler-slider .haberler-new-owl .owl-nav{
    position:absolute;
    right:0;top:-100px
}
.haberler-slider .haberler-new-owl .owl-nav{
 
}

.sinerjibtn-rel.urunincele .sinerjibtn a {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
}

.sinerjibtn-rel.urunincele .sinerjibtn a {
    margin-top: 0%;
}

.sinerjibtn-rel.urunincele .sinerjibtn {
    position: absolute;
    left: 0;
}
.sinerjibtn-rel.urunincele .sinerjibtn {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
}

.sinerjibtn-rel.urunincele .sinerjibtn a:hover {
    transition: 0.5s;
}

.sinerjibtn-rel.urunincele .sinerjibtn a:before {
    content: "";
    background-image: url(../img/basincard-yesil.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    height: 82px;
    width: 192px;
}
.sinerjibtn-rel.urunincele .sinerjibtn a:hover:before {
    top: 0%!important;
    z-index: 1;
}
.sinerjibtn-rel.basin .sinerjibtn a {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transition: 0.5s;
    z-index: 0;
    overflow: hidden;
}

.sinerjibtn-rel.basin .sinerjibtn a {
    margin-top: 15%;
}

.sinerjibtn-rel.basin .sinerjibtn {
    position: absolute;
    left: 0;
}
.sinerjibtn-rel.basin.silah .sinerjibtn {
    position: absolute;
    left: -40px;
}

.sinerjibtn-rel.basin .sinerjibtn a:hover {
    transition: 0.5s;
}

.sinerjibtn-rel.basin .sinerjibtn a:before {
    content: "";
    background-image: url('../img/basincard-yesil.png');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    top: -100% !important;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    bottom: 0;
    width: 100%;
}
.sinerjibtn-rel.basin .sinerjibtn a:hover:before { 
    top:0!important;
    z-index:1;
}

.haberodasi{
    background: #1B2445;
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
}
.haberodasi .absoluteimage{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.haberodasi .absoluteimage img{
    width: 100%;
}
.haberodasi h3{color:#FFFFFF}
.haberodasi .basincard{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 300px;
    margin-right: 5%;
    z-index: 1;
}
.haberodasi .basincard img{
    margin-bottom: 1rem;
    object-fit: contain;
}
.haberodasi .basincard h5{
    color: #fff;
}
.haberodasi .basincard .sinerjibtn-rel{
    left: -4%;
    opacity: 0;transition:0.5s;
}
.haberodasi .basincard .sinerjibtn-rel a{}
.haberodasi .basincard .sinerjibtn-rel a img{
    width: 150px;
} 

.haberodasi .basincard:hover .sinerjibtn-rel{opacity:1; transition:0.5s;}
.haberodasi .basincard:hover {background:#3058ED;border-radius:10px;}
.socialmedia{
    padding-top: 5%;
    padding-bottom: 5%;
}
.socialmedia .socialcard{
    width: 30%;
    margin-right: 3%;
}
.socialmedia .socialcard.insta{}
.socialmedia .socialcard.twitter{}
.socialmedia .socialcard.facebook{}
.socialmedia .socialcard.insta .top{
    background: #FF852D;
}
.socialmedia .socialcard.twitter .top{
    background: #1DADEC;
}
.socialmedia .socialcard.facebook .top{
    background: #3D5B96;
}
.socialmedia .socialcard .top{
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin-bottom: 20px;
}
.socialmedia .socialcard .top a{position:relative;text-align:right;display:block;width: 90%;margin: auto;font-size: 15px;color: #fff;}
.socialmedia .socialcard .top a img{position:absolute;left:0;top: 0px;width: auto;height: auto;border-radius: 0;}
.socialmedia .socialcard table{
    height: 90px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 4%;
    margin-bottom: 20px;
}
.socialmedia .socialcard table tr{}
.socialmedia .socialcard table tr td{
    color: #24377D;
    font-weight: 500;
}
.socialmedia .socialcard table tr td img{width:auto;height:auto;object-fit:contain;}
.socialmedia .socialcard table tr td:first-child{
    width: 63%;
}
.socialmedia .socialcard table tr td:last-child{}
.socialmedia .socialcard table tr td p{}
.socialmedia .socialcard img{
    width: 100%;
    height: 300px;
    border-radius: 10px;
}
.vizyonpage.urunlerimiz{
    padding-top:2%;
    padding-bottom:2%;                     
}

.vizyonpage.urunlerimiz .kurumsalpageborder {background:transparent;border:none;padding: 0;margin: 0;box-shadow: none;border-radius: 0;}
.cesitler{
    padding-bottom: 5%;
}
.cesitler h3{
    margin-bottom: 3%;
}
.cesitler p{}
.cesitler .silahwidth{
    width: 23%;
    margin-right: 2%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 3%;
    margin-bottom: 10px;
    transition: 0.5s;
}
.cesitler .silahwidth .silahcard{
    transition:0.5s;display: flex;justify-content: center;align-items: center;flex-direction: column;position: relative;top: 40px;}
.cesitler .silahwidth .silahcard img{}
.cesitler .silahwidth .silahcard h5{
    height: 40px;
    color: #fff;
    margin-top: 2rem;
    text-align:center;
} 
.cesitler .silahwidth:hover{transition:0.5s;}
.cesitler .silahwidth:hover .silahcard .sinerjibtn-rel.basin.silah{opacity:1}
.cesitler .silahwidth .silahcard .sinerjibtn-rel.basin.silah{
    
    opacity: 0;
    transition-delay: 0.5s;
    transition: 1s;
}
.cesitler .silahwidth:hover{box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;}
.cesitler .silahwidth:hover .silahcard p{opacity:1; transition:0.4s;}
.cesitler .silahwidth .silahcard p{
    width: 80%;
    margin: auto;
    text-align: center;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    margin-top: 0rem;
    opacity: 0;
    transition-delay: 0.5s;
    transition: 0.5s;
}
.cesitler .silahwidth .silahcard strong{
    font-weight: 600;
}
.cesitler .silahwidth .bgimages{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.cesitler .silahwidth:hover{
    transition:0.5s;
}
.cesitler .silahwidth:hover .bgimages{transition:0.5s;} 
.cesitler .silahwidth:hover .bgimages::after{
    content:"";
    width:100%;
    height: 100%;
    background: #3058ED;
    position:absolute;
    left:0;
    top:0%;
    border-radius:10px
    transition:0.5s;
}
 
.cesitler .silahwidth .bgimages img{
    width: 100%;
    height: 500px;transition:0.5s;
    object-fit: cover;
}
.cesitler .silahwidth .bgimages .films{
    
position: absolute;transition:0.5s;
    
top: 0;
    
left: 0;
    
width: 100%;
    
height: 100%;
    
background: #000;
    
border-radius: 10px;
    
background: linear-gradient(180deg, #202539 0%, rgba(26, 44, 113, 0.03) 100%);
}
.urunler-detay{
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
}
.urunler-detay .w50 {
    width: 50%;
}
.urunler-detay .w50 img{
    width: 100%;
    height: 50vh;
    object-fit: contain;
}
.urunler-detay .w50:first-child img{
    width: auto;
    height: auto;
}
.urunler-detay .w50 h3{color: #1B2445;font-weight: 700;}
.urunler-detay .w50 h4{
    margin-top: 5rem;
}
.urunler-detay .w50 h4 strong{
  display:block;
}
.doku{
    position: absolute;
    left: 0;
    top: 0;
}
.doku img{
    width: 100%;
}
.urunler-detay .absolbgbaslik{
    position: absolute;
    top: 0;
    z-index: -1;
    left: 40%;
}
.urunler-detay .absolbgbaslik span{
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 1px #00000052;
    z-index: -1;
    display: block;
}
.urunler-detay .solbaslik span{
    color: #3058ED;
    font-size: 20px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1.4px;
    position: relative;}
.urunler-detay .solbaslik{position: absolute;top: 15%;left: -1%;transform: rotate(-90deg);}
.urunler-detay .solbaslik span::after{
	content:"";
	width: 10px;
	height: 420px;
	background:url(../img/urun-after.png);
	background-repeat:no-repeat;
	background-size:contain;
	position:absolute;
	left: -180px;
	top: -197px;
	transform: rotate(-90deg);
}
.urunler-detay .btnwidth{
    width: 30%;
    margin-right: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.urunler-detay .btnwidth:hover a{
   background: #3058ED;
    color:#fff;
    transition:0.5s;
}  
.urunler-detay .btnwidth a{
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #3058ED;
    color: #1B2445;
    padding: 10px 0;
    transition:0.5s;
}
.urunler-detay .part1{}
.urunler-detay .part1 h4{
    font-weight: 700;
    color: #1B2445;
    margin-bottom: 3rem;
}
.urunler-detay .part1 p, .urunler-detay .part1 li{font-weight: 300;}
.urunler-detay .part1 p strong, .urunler-detay .part1 li strong{
    color: #1B2445;
}
.urunler-detay .btnrow{width: 100%;margin:auto;margin-top: 3%;margin-bottom: 3%;}
.genelozellikler{
    background: #1B2445;
    padding-top: 3%;
    padding-bottom: 3%;
    position: relative;
}
.genelozellikler h3{
    color: #fff;
}
.genelozellikler h5{
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 5rem;
}
.genelozellikler .widthlist{
    width: 45%;
    margin-bottom: 3rem;
}
.genelozellikler .widthlist:nth-child(2n-1){
    margin-right: 5%;
}
.genelozellikler .widthlist:nth-child(2n-2){
    margin-left: 5%;
}
.genelozellikler .widthlist table{}
.genelozellikler .widthlist table tr{}
.genelozellikler .widthlist table tr td{
}
.genelozellikler .widthlist table tr td img{
    width: 80px;
    object-fit: contain;
    height: 80px;
    margin-right: 40px;
}
.genelozellikler .widthlist table tr td h6{
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}
.genelozellikler .widthlist table tr td p{
    color: #fff;
    font-weight: 300;
}
.brosurrs{
    padding-top: 5%;
    padding-bottom: 5%;
}
.brosurrs h4{
    margin-bottom: 3rem;
}
.brosurrs .sol{
    text-align: center;
    width: 14%;
    margin: auto;
    height: 30vh;
    border: 1px solid #E1E1E1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-left: 5px solid #24377D;
    padding: 25px;
}
.brosurrs .sol img:first-child{
    width: auto;
    display:block;
    margin: auto;
    text-align: center;
}
.brosurrs .sol img:last-child{
    width: 100%;
    display:block;
    margin: auto;
    text-align: center;
}
.brosurrs .sol span{}
.brosurrs .sag{
    width: 80%;
}
.brosurrs .sag h4{
    font-weight: 400;
    color: #021D49;
}
.brosurrs .sag h4 strong{
    display:block;
    font-weight: 600;
}
.brosurrs .sag p{
    width: 80%;
}
.brosurrs .sag a{
    border-radius: 10px;
    background: #3058ED;
    display: block;
    color: #fff;
    position: relative;
    padding-left: 6%;
    line-height: 300%;
    width: 50%;
}
.brosurrs .sag a .first{
    position: absolute;
    left: 5px;
    top: 6px;
}
.brosurrs .sag a .last{
    position: absolute;
    right: 10px;
    top: 25%;
}


.main-header2 {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.3s;
    width: 100%;
    height: 80px;
}header.sticky 
.main-header2{
  
position: fixed;
  
top: 0;
  
background: #fff;
  
overflow: hidden;
  
z-index: 3;
  
-webkit-box-shadow: 0px 4px 14px 0px rgba(115,115,115,1);
  
-moz-box-shadow: 0px 4px 14px 0px rgba(115,115,115,1);
  
box-shadow: 0px 4px 14px 0px rgba(115,115,115,1);
}

.main-header2 .main-header-logo2 {
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-header2 .main-header-logo2 img {
    width: 80%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.main-header2 .main-header-menu2 {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-header2 .main-header-menu2 ul {
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;  
}

.main-header2 .main-header-menu2 ul li {
    display: inline-block;
    position:relative;
    cursor: pointer;
}
.main-header2 .main-header-menu2 ul li:nth-child(1){width: 8%;}
.main-header2 .main-header-menu2 ul li:nth-child(2){width: 25%;}
.main-header2 .main-header-menu2 ul li:nth-child(3){width: 15%;}
.main-header2 .main-header-menu2 ul li:nth-child(4){width: 12%;}
.main-header2 .main-header-menu2 ul li:nth-child(5){width: 7%;}
.main-header2 .main-header-menu2 ul li:nth-child(6){width: 7%;}
.main-header2 .main-header-menu2 ul li:nth-child(7){width: 5%;}
.main-header2 .main-header-menu2 ul li:nth-child(8){width: 2%;}
.main-header2 .main-header-menu2 ul li:nth-child(9){ 
}
.main-header2 .main-header-menu2 ul li:nth-child(10){ 
}
.main-header2 .main-header-menu2 ul li span:first-child{
    width: 37px;
    height: 2px;
    background: #213780;
    transition: 0.5s;
    display: block;
}
.main-header2 .main-header-menu2 ul li:hover span:first-child{
    transform: translate(5px, 0px);
    transition: 0.5s;
}


.main-header2 .main-header-menu2 ul li span:nth-child(2){width: 37px;height: 2px;background: #213780;display: block;margin-top: 10px;}
.main-header2 .main-header-menu2 ul li span:nth-child(3){width: 37px;height: 2px;background: #213780;display: block;margin-top: 10px;}


.main-header2 .main-header-menu2 ul li .dropdown{
    
}
.main-header2 .main-header-menu2 ul li .dropdown img{
    width:20px;
    right: 30px;
}
.main-header2 .main-header-menu2 ul li a{font-size: 18px;display: flex;align-items: center;}

.main-header2 .main-header-menu2 ul li img {
    width: auto;
    cursor: pointer;
}


.main-header2 .main-header-menu2 ul li input {
    border: 1px solid #474747;
    height: 40px;
    width: 130%;
    border-radius: 20px;
    padding-left: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #474747;
}

.main-header2 .main-header-menu2 ul li input::placeholder {
    color: #474747;
}

.main-header2 .main-header-menu2 ul li input::placeholder {
    color: #474747;
}.rakamlars .left-baslik {
    
    left: -3%;
}
.arge .left-baslik {
    left: -3%; 
}
 

.main-header2 .main-header-menu2 ul{padding-left:0;margin-bottom:0;padding-top:2%;}
.main-header2 .main-header-menu2 ul li{/* display:inline-block; *//* position:relative; */}
.main-header2 .main-header-menu2 ul li a{color: #0E0E0E !important;font-weight:500;line-height:25px;transition:0.5s;text-align: center;display: flex;justify-content: center;align-items: center;}
.main-header2 .main-header-menu2 ul li a:hover{color:#A45D43;transition:0.5s;cursor:pointer;}
.main-header2 .main-header-menu2 .acilir-menu-beyaz ul{padding-left:0;margin-bottom:0;padding-top:2%;flex-direction: column;justify-content: flex-start;align-items: flex-start;} 
.main-header2 .main-header-menu2 .acilir-menu-beyaz ul li{position: relative!important;width: 100%!important;display: block!important;text-align: left;}
.main-header2 .main-header-menu2 .acilir-menu-beyaz ul li a{transition:0s;text-align: center;display: flex;justify-content: flex-start;align-items: center;color: #213780 !important;font-family: Poppins;font-style: normal;line-height: 110%;width: 90%;}
.main-header2 .main-header-menu2 .acilir-menu-beyaz ul li a:hover{color: #115BE6 !important;transition:0.5s;cursor:pointer;font-weight: 600px!important;}

.main-header2 .main-header-menu2 .acilir-menu-beyaz ul li a::after{
  content:"";
  width:0;
  height:0;
  background: transparent;
}
.main-header2 .main-header-menu2 .acilir-menu-beyaz ul li a:hover::before{
	
content:"";
	
display: block;
	
height: 44px;
	
background: none;
	
background-image:url('../img/kucukyataycizgi.png');
	
width: 3px;
	
position: absolute;
	
left: -12px;
	
background-size: 100%;
	
background-repeat: no-repeat;
	
top: 8px;
	
background-size: contain;
transition:0s;
}

.main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li a::before{
  content:"";
  width:0;
  height:0;
}
.main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li a::after{
  content:"";
  width:0;
  height: 0!important;
}


.main-header2 .main-header-menu2 .acilir-menu-kahverengi ul{padding-left:0;margin-bottom:0;padding-top:2%;flex-direction: column;justify-content: flex-start;align-items: flex-start;} 
.main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li{position: relative!important;width: 100%!important;display: block!important;text-align: left;margin-bottom: 0px;}
.main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li a{transition:0.5s;text-align: left;color: #213780 !important;line-height: 110%;padding: 0;align-items: center;justify-content: flex-start;}
.main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li a:hover{color: #115BE6 !important;transition: 0.5s;cursor: pointer;font-weight: 600!important;}

.dropdown{}
.dropdown-content a{float:none;color:black;padding:12px 16px;text-decoration:none;display:block;text-align:left;}
.dropdown:hover .dropdown-content{display:block;padding-top: 0px;}
.dropdown-content{position:fixed;right: 0;left: 18%;padding-bottom:0;transition:opacity 0.5s ease-in-out, top 0.3s ease-in-out, margin-top 0.3s ease-in-out;overflow:hidden;height: auto;width: 60%;z-index:99999999;display:none;background:#ffffff;overflow:hidden;}
.dropdown a{color:#fff!important;}
.acilir-menu-beyaz{display:inline-block;width:30%;background:#fff;height: auto;padding-left: 5%;padding-top: 20px;/* border: 1px solid #00000025; */}
.acilir-menu-beyaz-left{display:inline-block;width:40%;background:#fff;height: 100%;padding-top: 0;}
.acilir-menu-beyaz-left img{width: 100% !important;height: 100%;object-fit: cover;}
.acilir-menu-beyaz ul li{display:block;transition:0.5s;width:70%;margin-bottom: 0px;}
.acilir-menu-beyaz ul li:hover{transition:0.5s;}
.acilir-menu-beyaz ul li:hover a img{transition:0.5s;display:inline;right: 20px;}
.acilir-menu-beyaz ul li a{font-weight:normal!important;font-size:21px!important;color:#565656!important;padding-left:0;padding-right:0;}
.acilir-menu-beyaz ul li a img{margin-top:10px;transition:0.5s;position:absolute;}
.acilir-menu-kahverengi ul li a img{margin-top:10px;transition:0.5s;right:195px;}
.acilir-menu-kahverengi{display:inline-block;width:30%;background: #FFFFFF;height: 500px;padding-left: 0%;padding-top: 20px;/* border: 1px solid #00000025; */border-left: none;}
.acilir-menu-kahverengi h5{font-weight:bold;font-size:50px;line-height:68px;color:#FFFFFF;padding-top:4%;}
.acilir-menu-kahverengi p{font-size:14px;line-height:150%;letter-spacing:0.02em;color:#FFFFFF;margin-top:20px;width:80%;height:90px;}
.main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li a img{width:25px;height:40px;object-fit:contain;transition:1s;margin-right:20px}
.main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li a img.silahimg{
	    width: 25px;
    height: 40px;
}
.main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li a img.okimg{width:25px;height:40px;    position: absolute;
    right: -50px;}
.main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li a img.arrow{width:25px;height:40px;object-fit:contain;transition:1s;margin-right:20px;position: absolute;right: 0;}
.acilir-menu-kahverengi .buton{font-size:14px;padding:6px 0px 0px 10px;}
.acilir-menu-resim-rakam{position:relative;}
.acilir-menu-resim-rakam span{font-size:150px;line-height:205px;color:#FFFFFF;position:absolute;bottom:-40px;right:22%;-webkit-text-fill-color:transparent;-webkit-text-stroke-width:1px;-webkit-text-stroke-color:#fff;transition:1s;}
.acilir-menu-resim-rakam:hover span{transition:1s;-webkit-text-fill-color:#fff;}
.acilir-menu-kahverengi .buton-ok-alani{margin-top:2px;}
.acilir-menu-beyaz ul li a:hover:before{-webkit-transform:scaleX(1) translateZ(0);transform:scaleX(1) translateZ(0);}
.acilir-menu-beyaz ul li a:before{content:"";position:absolute;bottom:0;left:0;width: 90%;height:1px;background: #115BE6;-webkit-transform-origin:left;transform-origin:left;-webkit-transform:scaleX(0) translateZ(0);transform:scaleX(0) translateZ(0);-webkit-transition:-webkit-transform .6s cubic-bezier(.165,.84,.44,1);transition:-webkit-transform .6s cubic-bezier(.165,.84,.44,1);transition:transform .6s cubic-bezier(.165,.84,.44,1);transition:transform .6s cubic-bezier(.165,.84,.44,1), -webkit-transform .6s cubic-bezier(.165,.84,.44,1);}
.acilir-menu-kahverengi .buton{color:#fff!important;}
.header-acilir-menu-daha-fazlasi-btn .buton{border:1px solid #fff;}
.main-header2 .main-header-menu2 ul li a:hover::after{}
.main-header2 .main-header-menu2 ul li a::after{}
.acilir-menu-beyaz ul li a:hover:after{display:none;}
.acilir-menu-beyaz ul li::before{display:none;}
.acilir-menu-kahverengi ul li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 1px;
    background: #115BE6;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    -webkit-transition: -webkit-transform .6s cubic-bezier(.165,.84,.44,1);
    transition: -webkit-transform .6s cubic-bezier(.165,.84,.44,1);
    transition: transform .6s cubic-bezier(.165,.84,.44,1);
    transition: transform .6s cubic-bezier(.165,.84,.44,1), -webkit-transform .6s cubic-bezier(.165,.84,.44,1);
}
.acilir-menu-kahverengi ul li a:hover:before {
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
}
@media (max-width: 1650px){
.acilir-menu-beyaz {
    padding-top: 2%;
    padding-left: 3%;
}
.acilir-menu-beyaz ul li a{font-size:17px!important;}
.acilir-menu-beyaz ul li a img{}
.acilir-menu-kahverengi h5{font-size:40px;line-height:50px;}
.acilir-menu-kahverengi p{font-size:12px;}
.acilir-menu-resim-rakam span{font-size:120px;bottom:-50px;right:14%;}
.acilir-menu-kahverengi img{width:70%;}
}
@media (max-width: 1500px){ 
}
@media (max-width: 1300px){
.acilir-menu-beyaz {
    padding-top: 53px;
}
}
@media (max-width: 1200px){
.main-header2 .main-header-menu2 ul li a{font-size:15px;}
.acilir-menu-beyaz ul li a{font-size:16px!important;}
.acilir-menu-kahverengi h5{font-size:30px;line-height:40px;}
}
@media (max-width: 991.98px){ 
.main-header2 .main-header-menu2 ul li a{font-size:10px;}
}


.menu {
  align-items: center;
  background-color: transparent;
  clip-path: polygon(81.05% 9.1%, 92% 9.1%, 92% 10.1%, 81.05% 10.1%);
  color: #f2f2f2;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  font-size: 28px;
  height: 100%;
  position: absolute;
  top: 0;
  transition: clip-path 400ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  z-index: 9;
}
.active .menu {
  background-color: rgba(11, 191, 220, 1);
  clip-path: polygon(101% -1%, 101% 101%, -1% 101%, -1% -1%);
}
.options {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  transform: scale(0.8);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.option {
  cursor: pointer;
  margin: 8px 0;
}
.option.selected {
  color: #FFFFFF;
}
.active .options {
  transform: scale(1);
}
.x {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
}
.top-bars {
  stroke: #FFFFFF;
  transition: stroke 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.active .top-bars {
  stroke: #FFFFFF;
}
.bar {
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bar1 {
  transform-origin: 190px 20.5px;
}
.bar2 {
  transform-origin: 190px 28.5px;
}
.active .bar1 {
  transform: translateY(8.6px) rotate(45deg);
}
.active .bar2 {
  transform: rotate(-45deg);
}
.menu-click-area {
    cursor: pointer;
    height: 40px;
    opacity: 0.3;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    background: transparent;
    z-index: 9999;
} 

.new-owl .owl-nav{
	display:none !important;
}
.flwidthslider{
	width:100%;
	overflow:hidden;
	height:100vh;
}
.topmenu{
	
margin-top: 30px;
	
margin-bottom: 30px;
	
position: relative;
	
z-index: 1;
}
.topmenu a.topmenuilinks{
	
font-size: 15px;
	
display: block;
	
border-radius: 10px;
	
padding: 10px;
	
margin-right: 20px;
	
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	
overflow: hidden;
	
display: flex;
	
justify-content: center;
	
align-items: center;
} 
.topmenu a.topmenuilinks span{
	
display: block;
	
float: left;
	
margin-left: 20px;
	
line-height: 40px;
} 
.topmenu a.topmenuilinks img{
	
width: 37px;
	
float: left;
	
margin-right: 10px;
} 
.topmenu .menuparent{
	
float: left;
}
.menucontainer{
	position:relative;
}
.menucontainer::before{
 
    
}
.menucontainer.kurusalyataybilgi{
	display:block;
    content:"Kurumsal";
    position:absolute;
    left:0;
    color:#3058ED;transform: rotate(270deg);
    top:15px;
    
}
.twopartsection{
	padding-top: 40px;
	padding-bottom: 20px;
	background-image: url('../img/hikayemiz-en-alt-back.jpg');
	background-size: cover;
	background-position: center;
}
.twopartsection h2{
	color: #1B2445;
	font-size: 40px;
	line-height: 50px;
	font-weight: bold;
	margin-bottom: 40px;
	margin-top: 40px;
}
.twopartsection p{
	
font-size: 16px;
}
.twopartsection img{
	
width: 80%;
	
float: right;
	
margin-bottom: 50px;
}
.twopartsection p.firstpweight{
	font-weight: 600;
}
.counterinfos{
	
margin-top: 30px;
}

.counterinfos .eachcoubt{
	
text-align: center;
}

.counterinfos h4{
	
color: #3058ED;
	
font-size: 28px;
	
line-height: 20px;
}

.counterinfos h5{
	
font-size: 20px;
	
line-height: 20px;
	
font-weight: 800;
	
color: #24377D;
}

.counterinfos p{
	
color: #24377D;
}

.policiesdiv{
	
background: url('../img/hikayemiz-icon-enalt.jpg');
	
color: #fff;
	
background-size: cover;
	
padding-top: 40px;
	
padding-bottom: 40px;
	
background-position: center;
}
.policiesdiv .policiparent{
	
display: block;
	
margin: auto;
	
float: none;
}
.policiesdiv .policiparent >div>div>h2{
	
font-size: 40px;
}
.policiesdiv .policiparent .policilist{
	
} 
.policiesdiv .policiparent .policilist h2{
	
font-size: 27px;
} 
.policiesdiv .policiparent .policilist img{
	
display: block;
	
margin: auto;
	
max-width: 100%;
	
background: #3058ED;
	
padding: 10px 10px;
	
height: 70px;
	
width: 70px;
	
border-radius: 50%;
} 
.policiesdiv .policiparent .policilist p{
	
color: #fff;
	
font-size: 15px;
	
font-weight: 200;
} 
.topmenuilinks.active{
	
background-color: #24377D;
	
color: #fff;
}
.topmenuilinks.active img{
	
background-color: #3058ED;
	
padding: 8px;
	
border-radius: 19px;
}
.topmenuilinks.active span{
	
}
.firstcontainer{
    position: relative;
    background-image: url(../img/hikayemiz-en-alt-back.jpg);
    background-size: cover;
    background-position: center;
}
.firstcontainer::before{
	content:"";
	display: block;
	height: 317px;
	background-image:url('../img/solyataycizgi.png');
	width: 2px;
	position: absolute;
	left: 0;
	top: 160px;
	background-size: contain;
	}
.silahlarfirst.silahlaric .firstcontainer::before{
	 left: 0;
	 height: 190px;
	 background-size: contain;
	}
.tesisimizfirst{
	
background-image: url('../img/hikayemiz-en-alt-back.jpg');
	
background-size: cover;
	
background-position: top;
	
background-repeat: no-repeat;
}

.tesisimizfirst .firstcontainer{
	
padding-top: 80px;
	
padding-bottom: 70px;
}

.tesisimizfirst p{
	
color: #323232;
	
font-size: 18px;
	
margin-bottom: 70px;
}

.tesisimizfirst p.ilkpstrong{
	
font-weight: bold;
	
margin-top: 90px;
	
margin-bottom: 10px;
}

.tesisimizfirst .tesiskutulari{
	margin-bottom: 
50px;
}

.tesisimizfirst .tesiskutulari .tesisikutu{
	position: relative;
	text-align: center;
}

.tesisimizfirst .tesiskutulari .tesisikutu img{
	background: #3058ED;
	padding: 10px;
	width: 70px;
	height: 70px;
	border-radius: 35px;
	object-fit: contain;
}

.tesisimizfirst .tesiskutulari .tesisikutu p{
	color: #213780;
	font-size: 20px;
	margin: auto;
	margin-top: 10px;
}
 
.tesisimizfirst .tesiskutulari .tesisikutu::after{
        content: "";
        display: block;
        height: 157px;
        background-image: url(../img/solyataycizgi.png);
        width: 2px;
        position: absolute;
        right: 0;
        top: 0;
        background-size: contain;
} 
.tesisimizfirst .tesiskutulari .tesisikutu.lastelement::after{ 
        display: none;
} 
.tesisaltdiv{
	
background: #1B2445;
	
color: #fff;
	
padding-top: 50px;
	
padding-bottom: 50px;
}
.tesisaltcontent{
	
margin-bottom: 30px;
}

.tesisaltcontent h3{
	
font-size: 20px;
	
position: relative;
}

.tesisaltcontent h3::before{
	
content:"";
	
display: block;
	
height: 40px;
	
background-image:url('../img/solyataycizgi.png');
	
width: 2px;
	
position: absolute;
	
left: -16px;
	
top: 20px;
	
background-size: contain;
}

.tesisaltcontent p{
	
font-size: 15px;
	
color: #fff;
	
font-weight: 300;
}
.tesisaltslider{
	
}
.tesisimizfirst.misyon{
	
}

.tesisimizfirst.misyon h2{
	
color: #1B2445;
	
font-size: 45px;
	
font-weight: bold;
}

.tesisimizfirst.misyon h2 span{
	
font-weight: 300;
}

.tesisimizfirst.misyon p{
	
max-width: 90%;
	
line-height: 32px;
	
margin-bottom: 10px;
}

.tesisimizfirst.misyon img{
	
width: 90%;
}
.misyonvizyonikili{
	
}
.misyonvizyonikili .halfdivs{
	background-image: url(../img/vizyonback.png);
	background-size: cover;
	background-image: url(../img/misyonback.png);
}
.misyonvizyonikili .halfdivs.misyonhalf{
	padding-left: 12%;
	padding-top: 70px;
	padding-bottom: 70px;
	background-size: cover;
	background-image: url(../img/vizyonback.png);
}
.misyonvizyonikili .halfdivs.vizyonhalf{
	background-image: url(../img/vizyonback.png);
	background-size: cover;
	background-image: url(../img/misyonback.png);
	padding-left: 5%;
	padding-top: 80px;
}
.misyonvizyonikili .halfdivs img{
	
margin-bottom: 50px;
}
.misyonvizyonikili .halfdivs h4{
	color: #021D49;
	font-size: 35px;
	margin-bottom: 40px;
}
.misyonvizyonikili .halfdivs p{
	font-size: 18px;
	color: #021D49;
}
.misyonvizyonikili .halfdivs.vizyonhalf img{
}
.misyonvizyonikili .halfdivs.vizyonhalf h4{
	color: #ffffff;
}
.misyonvizyonikili .halfdivs.vizyonhalf p{
	color: #fff;
}
.bottomdifmisyon{
	background: url(../img/tesisimiz-image-back.jpg);
	padding-top: 80px;
	padding-bottom: 80px;
	background-size: cover;
	background-position: center;
	color: #fff;
}
.bottomdifmisyon h1{
	font-size: 56px;
	text-align: center;
	font-weight: bold;
	line-height: 60px;
}


.bottomdifmisyon h2{
	font-size: 40px;
	text-align: center;
	font-weight: 200;
	line-height: 40px;
}

.tesisimizfirst.misyon.degerler{
	
}
.tesisimizfirst.misyon.degerler h2{
	
}
.tesisimizfirst.misyon.degerler img{
	
float: right;
}
.tesisimizfirst.misyon.degerler h3{
	
font-size: 25px;
	
line-height: 36px;
	
font-weight: bold;
	
color: #011030;
	
margin-bottom: 40px;
}
.tesisimizfirst.misyon.degerler ul{
	
list-style: none;
	
padding-inline-start: 0;
}
.tesisimizfirst.misyon.degerler li{
	
padding-left: 30px;
	
position: relative;
	
font-size: 18px;
	
margin-bottom: 20px;
}
.tesisimizfirst.misyon.degerler li::before{
	content: " ";
	display:block;
	background-image:url('../img/deger-icon-ok.png');
	position: absolute;
	height: 30px;
	width: 30px;
	left: -4px;
	background-size: cover;
	top: 4px;
}
.degerlerimizaltdiv{
	
background: #1B2445;
	
color: #fff;
	
padding-top: 70px;
	
padding-bottom: 70px;
}
.degerlerimizaltdiv h2{
	
font-size: 43px;
	
text-align: center;
	
line-height: 49px;
	
margin-bottom: 90px;
}
.degerlerimizaltdiv h2 span{
	
color: #8DFF33;
}
.degerlerimizaltdiv .degerkutu{
	
width: 95%;
	
margin: 2.5%;
	
display: block;
	
margin-bottom: 50px;
	
padding-bottom: 80px;
	
background-image: url('../img/degerlerimiz-card-gorsel.png');
	
background-size: cover;
	
padding-top: 50px;
	
border-radius: 20px;
	
background-position-x: -1px;
	
transition: 0.5s;
}
.degerlerimizaltdiv .degerkutu.nothover{
  background:#3059ed !important;
  transition: 0.5s;
}


.degerlerimizaltdiv .degerkutu:hover{
	
/* background: #3058ED; */
}
.degerlerimizaltdiv .degerkutu h3{
	
font-size: 24px;
	
text-align: center;
} 
.degerlerimizaltdiv .degerkutu img{
	
display: block;
	
margin: auto;
	
height: 140px;
	
object-fit: contain;
} 
.degerlerimizaltdiv .degerkutu p{
	
font-size: 17px;
	
line-height: 28px;
	
text-align: center;
	
font-weight: 300;
	
color: #fff;
	
opacity: 1;
	
max-width: 90%;
	
margin: auto;
	
height: 150px;
} 
.degerlerimizaltdiv .degerkutu:hover p{
	
opacity: 1;
}
.tesisimizfirst.misyon.ilkelerimiz{
	
} 
.tesisimizfirst.misyon.ilkelerimiz h2{
	
text-align: center;
} 
.tesisimizfirst.misyon.ilkelerimiz h3{
	
font-size: 23px;
	
line-height: 32px;
	
text-align: center;
	
font-weight: 300;
} 
.ilkesatir{padding-top: 20px;margin-top: 30px;border-top: 1px solid #B5B5B5;}
.tesisimizfirst.misyon .ilkesatir img{width: auto;max-width: 110px;margin-top: 40px;}
.ilkesatir h4{color: #24377D;font-size: 30px;line-height: 45px;margin-top: 20px;font-weight: 600;}
.ilkesatir p{ 
}
.ilkesatir p b{ 
}

.ilkesatir p::before{
	
content:"";
	
display: block;
	
height: 41px;
	
background-image:url('../img/kucukyataycizgi.png');
	
width: 3px;
	
position: absolute;
	
left: 3px;
	
background-size: 100%;
	
background-repeat: no-repeat;
	
top: 8px;
}

.silahlarfirst{
	
background-image: url(../img/hikayemiz-en-alt-back.jpg);
	
background-size: cover;
	
background-position: center;
	
padding-top: 50px;
	
padding-bottom: 50px;
}
.silahlarfirst.silahlaric{
    padding-bottom: 180px;
}

.silahlarfirst .firstcontainer::after{
	 display: block;
	 content: "Silahlar";
	 position: absolute;
	 left: -23px;
	 color: #3058ED;
	 transform: rotate(270deg);
	 top: 40px;
}
.argetekno .firstcontainer::after{
	 display: block;
	 content: "Arge ve Teknoloji";
	 position: absolute;
	 left: -23px;
	 color: #3058ED;
	 transform: rotate(270deg);
	 top: 40px;
}
.argetekno .firstcontainer {
	background: none !important;
}
.teknikhizmet{
    
padding-bottom: 50px !important;
}.teknikhizmet .firstcontainer::after{content: "Teknik Hizmet" !important;}
.silahlarfirst h2{
	color: #1B2445;
	font-size: 50px;
	font-weight: bold;
}
.silahlarfirst.silahlaric h3{
	 font-size:37px;
	 line-height: 46px;
	 margin-top: 175px;
}

.silahlarfirst.silahlaric h3 span{
 
	font-weight: bold;
}

.silahlarfirst p{
	font-size: 17px;
}

.silahlarfirst img{
	display: table-cell;
	vertical-align: middle;
	line-height: 100%;
	margin-top: 110px;
	max-width: 70%;
	margin: auto;
	margin-top: 20%;
}
.silahlaric div img{
    
max-width: 100%;
    
width: 50%;
}
.silahlarsecond{
	padding-top: 100px;
	padding-bottom: 100px;
	background-image: url('../img/silahsecondback.png');
	background-size: contain;
	background-repeat: no-repeat;
}
.silahlarsecond img{
	max-width: 90%;
}
.silahlarsecond p{position: relative;font-size: 18px;line-height: 39px;margin-top: 60px;}
.silahlarsecond p::before{
	content:"";
	display: block;
	height: 41px;
	background-image:url('../img/kucukyataycizgi.png');
	width: 3px;
	position: absolute;
	left: -9px;
	background-size: 100%;
	background-repeat: no-repeat;
	top: 8px;
}

.silahlarlast{
	background: #1B2445;
	color: #fff;
	padding-top: 70px;
	padding-bottom: 70px;
}
.silahlarlast h1{
	font-size: 40px;
	font-weight: 600;
}
.silahlarlast .silahlarkutu{
	background:url('../img/sila-back.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}
 
.silahlarlast .silahlarkutu img{
	display: block;
	margin: auto;
	padding-top: 30px;
	padding-bottom: 20px;
	height: 80px;
}
.silahlarlast .silahlarkutu h2{
	font-size: 25px;
	text-align: center;
	line-height: 36px;
	font-weight: bold;
	height: 80px;
}
.silahlarlast .silahlarkutu p{
	color: #fff;
	font-size: 18px;
	text-align: center;
	width: 90%;
	margin: auto;
    margin-bottom: 40px;
	font-weight: 200;
	height: 340px;
}
.silahlarlast .silahlarkutu p span{
 
font-weight: 500;
}
.silahlarlast .silahlarkutu .urunincele{
	display: block;
	margin: auto;
	width: 100%;
	height: 120px;
	cursor: pointer;
}
.silahicsecond{
	
padding-top: 50px;
	
padding-bottom: 50px;
}
.silahicsecond .silahictabmenuler{
	
}
.silahicsecond .silahictabmenuler span{
	
}
.silahicsecond .silahictabmenuler span.tabs{
	    padding: 11px;
	    text-align: center;
	    border-radius: 8px;
	    color: #1B2445;
	    display: block;
	    border: 1px solid #24377D;
}
.silahicsecond .silahictabmenuler span.tabs.active{background: #3058ED;color: #ffffff;}
.silahicsecond .silahiceriklertab{
	padding-top: 40px;
}
.silahicsecond .silahiceriklertab h3{
	font-size: 40px;
	font-weight: bold;
}
.silahicsecond .silahiceriklertab p{
	padding-left: 20px;
	font-size: 17px;
	line-height: 33px;
}
.silahicsecond.yetkinlikicsecond .silahiceriklertab p{
	padding-left: 0px; 
} 
.silahicsecond .silahiceriklertab ul{
	display: inline-block;
	list-style: none;
	padding-inline-start: 0;
}
.silahicsecond .silahiceriklertab ul li{
	padding-left: 40px;
	position: relative;
	font-size: 17px;
}.silahicsecond .silahiceriklertab ul li::before{
	 display:block;
	 content:">";
	 color: #115BE6;
	 position: absolute;
	 left: 20px;
}
.silahicsecond .silahiceriklertab ul li::before{
	
}
.silahicthirt{
	background: #1B2445;
	color: #fff;
	padding-bottom: 70px;
	padding-top: 40px;
}
.silahicthirt h1{
	font-size: 40px;
	font-weight: bold;
}
.silahicthirt p{
	font-size: 17px;
	line-height: 25px;
	color: #fff;
	max-width: 95%;
	margin-bottom: 40px;
	position: relative;
	padding-left: 30px;
}
.silahicthirt p::before{
	display:block;
	content:"";
	background-image:url(../img/silahicicon.png);
	width: 26px;
	height: 19px;
	position: absolute;
	left: -2px;
	background-size: contain;
	background-repeat: no-repeat;
	top: 6px;
}
.silahicborsur{
	padding-top: 30px;
	padding-bottom: 50px;
}
.silahicborsur h1{
	font-size: 40px;
	font-weight: bold;
}
.silahicborsur .borurkutubilgi{
	max-width: 200px;
	border: 1px solid #E1E1E1;
	border-left: 3px solid #24377D;
	padding-left: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
}
.silahicborsur h3{
	font-size: 18px;
	text-align: center;
	line-height: 22px;
}


.silahicborsur img{
	max-width: 80%;
	display: block;
	margin: auto;
}
.silahicborsur .borsurbuton{
	display: block;
	background: #3058ED;
	width: auto;
	border-radius: 10px;
	width: fit-content;
	overflow: hidden;
}
.silahicborsur .pdficon{
	float: left;
	margin-top: 4px;
	margin-bottom: 6px;
}
.silahicborsur a.downloadicon{
	display: block;
	float: left;
	margin-top: 14px;
	margin-right: 12px;
}
.silahicborsur p{
	font-size: 15px;
	text-align: center;
}
.silahicborsur h4{font-size: 27px;line-height: 38px;font-weight: 300;}
.silahicborsur h4 span{font-weight: bold;}

.silahicborsur a.downloadicon img{
	
}

.silahicborsur .borsurbuton p{
	color: #fff;
	float: left;
	display: block;
	min-width: 150px;
	text-align: left;
	padding-left: 40px;
	padding-right: 70px;
	padding-top: 18px;
}
.yetkinliklerimizfirst{
	
background: #fff;
}
.yetkinliklerimizfirst .firstcontainer{
	
background: none;
}
.yetkinliklerimizfirst .firstcontainer::before{
	
}
.yetkinliklerimizfirst .firstcontainer::after{
	
content: "Yetkinliklerimiz";
}
.yetkinliklerimizfirst h2{
	
color: #1B2445;
}
.yetkinliklerimizfirst p{
	
margin-bottom: 50px;
	
line-height: 30px;
}
.yetkinliklerimizfirst img{
	
max-width: 80%;
	
margin-top: 14%;
} 

.yetkinliklersecond{
	
padding-top: 50px;
	
padding-bottom: 50px;
	
background-image: url(../img/yetkinlikback.png);
}
.yetkinliklersecond img{
	
width: 90%;
}
.yetkinliklersecond h4{
	
font-size: 19px;
}
.yetkinliklersecond ul{
	
list-style: none;
	
padding-inline-start: 20px;
}
.yetkinliklersecond li{
	
font-size: 16px;
	
font-weight: 600;
}
.yetkinliklersecond ul li::before{
	display: inline-block;
	content:">";
	color:#115BE6;
	margin-left: -20px;
	margin-right: 8px;
}
.yetkinliklersecond p{
	
}

.yetkinliklerthird{
	background: #F6F6F6;
	padding-top: 50px;
	padding-bottom: 50px;
}
.yetkinliklerthird p{
	margin-top: 40px;
	width: 98%;
}
.yetkinliklerthird p span{font-weight: 600;}
.yetkinliklerthird p::before{
	content:" ";
    display:block;
    background-image:url(../img/smallicon.png);
    
}
.yetkinliklerthird img{
	width: 100%;
} 



.yetkinliklerimizliste{

background: url(../img/yetkinlikback.png);

background-color: #1B2445;

background-repeat: no-repeat;

background-size: contain;

padding-top: 50px;

padding-top: 50px;
}
.yetkinliklerimizliste h3{

font-size: 35px;

color: #fff;

font-weight: 700;
}
.yetkinliklerimizliste p{

color: #fff;

margin-bottom: 60px;

font-weight: 300;
}
 
.yetkinliklerimizliste .yetkinlikkutu img{

}
.yetkinliklerimizliste .yetkinlikkutu:hover{background: #115BE6;}
.yetkinliklerimizliste .yetkinlikkutu .urunincele{width: 100%;height: auto;opacity: 0;}
.yetkinliklerimizliste .yetkinlikkutu:hover .urunincele{opacity: 1;}
.yetkinliklerimizliste .yetkinlikkutu h3{font-size: 21px;font-weight: 500;max-width: 100%;line-height: 30px;margin: auto;margin-top: 15px;margin-bottom: 15px;}
.yetkinliklerimizliste  .yetkinlikkutu{margin-bottom: 30px;border-radius: 11px;padding: 20px;text-align: center;}

.yetkinlikic div img{
	
width: 80%;
}
.yetkinlikicthird{
	
background: #F6F6F6;
	
color: #231F20;
	
background-image: url(../img/yetkinlikback.png);
}

.yetkinlikicthird p{
	
color: #231F20;
	
padding-left: 10px;
}
.yetkinlikicthird p:before{
	
background-image: url(../img/kucukyataycizgi.png);
	
height: 30px;
}
.yetkinlikicthird ul{
	
padding-inline-start: 0;
	
list-style: none;
}
.yetkinlikicthird ul li{
	font-size: 15px;
	font-weight: 500;
	color: #231F20;
	padding-left: 10px;
}
.yetkinlikicthird ul li:before{
	display: block;
	content: ">";
	color: #115BE6;
	position: absolute;
	left: 10px;
}
.argetekno{
    padding-top: 40px;
    padding-bottom: 60px;
    background-image: url(../img/hikayemiz-en-alt-back.jpg);
    background-size: cover;
}
.ucuncudicalisanlar .col-lg-5.float-left{
    
padding-top: 140px;
}
.argeteknothird{
    
padding-top: 40px;
    
padding-bottom: 60px;
    
background-image: url(../img/hikayemiz-en-alt-back.jpg);
    
background-size: cover;
}
.argeteknothird p{
    
margin-bottom: 20px;
    
margin-top: 20px;
}
.argeteknothird p strong{
    
color: #24377D;
    
font-size: 20px;
}
.argeteknothird ul{
    
}
.argeteknothird ul li{
    
}
.argetekno h2{

font-size: 40px;

line-height: 40px;

margin-bottom: 30px;

margin-top: 20px;

font-weight: bold;
}
.argetekno p{

font-size: 17px;
}
.politika h2{
    
}
.politika ul{
    list-style: none;
    margin-bottom: 49px;
    float: left;
    display: block;
}
.politika ul li{
    position: relative;
}
.politika ul li::before{
    content:"";
    display:block;
    background-image: url('../img/ulbefore.png');
    width: 20px;
    height: 20px;
    position: absolute;
    left: -30px;
    background-size: contain;
    top: 5px;
}
.argetekno img{

width: 80%;
}.argetekno .firstcontainer::before{
    
}

.argetknosecond{
    background: #24377D;
}

.argetknosecond h2{
    color: #8DFF33 !important;
}

.argetknosecond.policiesdiv .policiparent .policilist img{
    background: none;
    border-radius: 0;
}
.argetekno .topmenu{
	overflow: hidden;
}
.argetekno .tompmenurow{
	display: block;
	width: 100%;
	float: none;
	clear: both;
	text-align: center;
	margin-bottom: 30px;
}
.argetekno .tompmenurow  .menuparent{
	float: none;
	display: inline-block;
	max-width: 19%;
	margin-top: 10px;
} 
.argetekno .tompmenurow  .menuparent a{
	
display: flex;
	
justify-content: center;
	
align-items: center;
} 
.argetekno .tompmenurow  .menuparent a span{
	font-size: 14px;
	line-height: 17px;
	float: revert;
	vertical-align: middle;
	display: inline-block;
	margin-left: 0;
} 
.homslayt
{
	
}

.homslayt .slaytmetin
{
	
}

.homslayt .slaytmetin h2
{
	
}

.homslayt .slaytmetin p
{
	
}

.homslayt .slaytmetin a
{
	
}

.homslayt .slaysocailicons
{
	
}

.homslayt .slaysocailicons li
{
	
}

.homslayt .slaysocailicons a
{
	
}

.homslayt .slaysocailicons a img
{
	
}
.styleforalignleft p{
	text-align:left;
}
.argeteknosecond{
	
background-color: #1B2445;
	
color: #fff;
	
padding-top: 50px;
	
padding-bottom: 50px;
}

.argeteknosecond img{
	
}

.argeteknosecond h2{
	
font-size: 40px;
	
line-height: 40px;
	
margin-bottom: 30px;
	
margin-top: 20px;
	
font-weight: 600;
}

.argeteknosecond p{
	
color: #fff;
	
font-weight: 200;
}

.argeteknosecond p strong{
	
}
.proto p::before{
	content:"";
	
display: block;
	
height: 41px;
	
background-image:url('../img/kucukyataycizgi.png');
	
width: 3px;
	
position: absolute;
	
left: 3px;
	
background-size: 100%;
	
background-repeat: no-repeat;
	
top: 8px;
}
.proto p{
	position: relative;
	padding-left: 20px;
}
 
.proto h3{
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 20px;
}
.proto h3 strong{
    font-weight: normal;
}

.yaklasimsecond{
    
padding: 100px 0;
    
background-size: cover;
    
background-repeat: no-repeat;
}
.yaklasimsecond p{
    
color: #fff;
    
font-size: 3rem;
    
line-height: 5rem;
    
max-width: 80%;
}
.belgekutu>div{
    
padding: 20px;
    
border: 1px solid #115BE6;
    
margin-bottom: 30px;
}
 
.belgekutu {
    
}
 
.belgekutu a{
    
}
.belgekutu p{
    
line-height: 20px;
    
margin-top: 20px;
    
text-align: center;
    
font-weight: 500;
    
font-size: 15px;
}
 
.belgekutu img{
    
width: 65%;
    
display: block;
    
margin: auto;
    
max-width: 300px;
}
 .dokumanrow{
 	
border: 1px solid #213780;
 	
overflow: hidden;
 	
border-radius: 10px;
 	
margin-bottom: 25px;
 }
 .main-header2 .main-header-menu2 ul li a::after{
    content: "";
    background: #3058ed;
    position: absolute;
    bottom: -10px;
    left: 45%;
    opacity: 0;
    z-index: 9999999999999;
    width: 15px !important;
    height: 15px !important;
    clip-path: polygon(100% 0, 0 0, 51% 100%);
    display: block;
}
  
.main-header2 .main-header-menu2 ul li.menu-yeni:hover a::after{
    opacity: 1;
}

 .dokumanrow p{
 	
line-height: 20px;
 	
float: left;
 	
margin-top: 20px;
 	
width: 40%;
 }
 .dokumanrow .dokicon{
 	
width: 50px;
 	
margin: 20px;
 	
float: left;
 }
 .dokumanrow .downloadicon{
 	
float: right;
 	
width: 50px;
 	
margin: 20px;
 } 
 .mobilemenyicon{
 	display:none;
 }

.catalog{padding-top:7%;}
.catalog .katalogrow{padding-top:5%;}
.catalog .katalogrow .katalogwidth:hover{background:#2e7fb8;box-shadow:4px 4px 20px rgba(0, 0, 0, 0.25);border-color:#2e7fb8;}
.catalog .katalogrow .katalogwidth:hover .downloadtext h6{color:#fff;}
.catalog .katalogrow .katalogwidth:hover p{color:#fff;}
.catalog .katalogrow .katalogwidth:hover .ikon svg{fill:#2e7fb8;}
.catalog .katalogrow .katalogwidth:hover .ikon svg path{fill:#fff;}
.catalog .katalogrow .katalogwidth{width:20%;text-align:center;height:50vh;background:#FFFFFF;border:1px solid #414141;margin-right:5%;margin-bottom:5%;transition:1s ease;}
.catalog .katalogrow .katalogwidth .ikon{height:20vh;display:flex;justify-content:center;align-items:flex-end;}
.catalog .katalogrow .katalogwidth .ikon svg{transition:0.5s;}
.catalog .katalogrow .katalogwidth .ikon svg path{transition:0.5s;fill:#2e7fb8;}
.catalog .katalogrow .katalogwidth .downloadtext{height:20vh;display:flex;justify-content:center;align-items:center;}
.catalog .katalogrow .katalogwidth .downloadtext h6{font-weight:600;color:#414141;transition:0.5s;}
.catalog .katalogrow .katalogwidth p{font-weight:600;color:#414141;transition:0.5s;}
@media (max-width:1650px){
.catalog .katalogrow .katalogwidth{height:40vh;}
.catalog .katalogrow .katalogwidth .ikon{height:15vh;}
.catalog .katalogrow .katalogwidth .downloadtext{height:15vh;}
}
@media (max-width:900px){
.catalog .katalogrow .katalogwidth{height:30vh;width:44%;background:#F5C32C;box-shadow:4px 4px 20px rgb(0 0 0 / 25%);border-color:#F5C32C;}
.catalog .katalogrow .katalogwidth .ikon{height:8vh;}
.catalog .katalogrow .katalogwidth .ikon svg path{transition:0.5s;fill:#fff;}
.catalog .katalogrow .katalogwidth{margin-bottom:5%;}
.catalog .katalogrow .katalogwidth .downloadtext h6{color:#fff;}
}
@media (max-width:800px){
.catalog .katalogrow .katalogwidth .ikon{height:11vh;}
.catalog .katalogrow .katalogwidth{height:33vh;}
}
@media (max-width:500px){
.catalog .katalogrow .katalogwidth{width:100%;}
}
 
.main-header2 .main-header-menu2 ul li a::before{
  content: "";
  width: 80%;
  height: 5px;
  border-style: solid;
  border-color: #3058ed transparent transparent transparent;
  position: absolute;
  bottom: 0;
  left: 10%;
  opacity: 0;
  z-index: 9;
}
.main-header2 .main-header-menu2 ul li.menu-yeni:hover a::before {transition: 0.5s;opacity: 1;}
  


  .main-header2 .main-header-menu2 .acilir-menu-beyaz ul li:hover a::before{
       
      }
      .sticky .main-header-logo2 a.logoonnothover img{
          display:none
          }
      .sticky .main-header-logo2 a.logoonhover img{
          display:block
          }
       .main-header-logo2 a.logoonnothover img{
          display:block
          }
      .main-header-logo2 a.logoonhover img{
          display:none
          }
          
          .main-header2 .main-header-menu2 .acilir-menu-beyaz ul li a img{opacity:0}
          
          .main-header2 .main-header-menu2 .acilir-menu-beyaz ul li a:hover img{opacity:1}
          .main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li a img.okimg{opacity:0}
          
          .main-header2 .main-header-menu2 .acilir-menu-kahverengi ul li a:hover img.okimg{opacity:1}
 
@media (min-width: 1200px){
    .mobile-menu{
        display:none};
}
@media (max-width: 1200px){
.mobile-menu{position:relative;padding-top:30px;padding-bottom:30px;transition:1s;width:100%;z-index:1111;background:#fff;}
.mobile-menu .mobile-menu-logo{width:50%;display:flex;align-items:center;justify-content:flex-start;}
.mobile-menu .mobile-menu-logo img{width:100%;}
.mobile-menu .mobile-menu-hamburger{width:50%;display:flex;align-items:center;justify-content:flex-end;}
.mobile-menu .mobile-menu-hamburger img{width:12%;}
.openmobilemenu{height:100%;width:0;position:fixed;z-index:999999;top:0;left:0;background-color:#fff;overflow-x:hidden;transition:0.5s;padding-top:0px;}
.mobilemenu-kapat-logo{position:relative;border-bottom:1px solid #000;padding-left:2%;padding-right:2%;padding-bottom:10px;}
.mobilemenu-kapat-logo .mobilemenu-logo{width:50%;display:flex;align-items:center;justify-content:flex-start;}
.mobilemenu-kapat-logo .mobilemenu-logo img{width:120%;}
.mobilemenu-kapat-logo .mobilemenu-kapat{width:50%;display:flex;align-items:center;justify-content:flex-end;}
.mobilemenu-kapat-logo .mobilemenu-kapat .closebtn{font-size:50px;color:#000;font-weight:300;}
.openmobilmenulinks{margin-top:10px;}
.openmobilmenulinks ul{padding-left:0;margin-bottom:0;}
.openmobilmenulinks ul li{list-style:none;border-bottom:1px solid #000;margin-bottom:20px;}
.openmobilmenulinks ul li a{color:#000;font-size:30px;font-weight:400;}
.openmobilmenulinks ul li:last-child{border-bottom:none;}
.mm-acc{background-color:transparent;cursor:pointer;padding:8px 0 8px 0;width:100%;border:0;text-align:left;outline:0;transition:0.4s;color:#000;font-size:30px;font-weight:400;}
.mm-acc:hover{background-color:transparent;}
.mm-acc:after{content:"\002B";color:#000;font-weight:300;float:right;margin-left:5px;}
.panel-mm-acc{padding:0 18px;background-color:#fff;max-height:0;overflow:hidden;transition:max-height 0.2s ease-out;}
.panel-mm-acc ul li a{font-size:20px;}
.panel-mm-acc ul li:last-child{border-bottom:1px solid #000;}
.openmobilemenuarama{margin-top:10px;}
.openmobilemenuarama input{width:100%;height:60px;padding-left:10px;color:#000;font-weight:700;border-radius:18px;border:3px solid #000;font-size:20px;}
.openmobilemenudiller{margin-top:10px;}
}
@media (max-width: 500px){
.mobilemenu-kapat-logo{padding-left:4%;padding-right:4%;}
.mobilemenu-kapat-logo .mobilemenu-logo img{    width: 81%;
    margin-top: 26px;}
.mobilemenu-kapat-logo .mobilemenu-kapat .closebtn{font-size:30px;}
.mm-acc{font-size:30px;}
.openmobilmenulinks ul li{margin-bottom:10px;}
.openmobilmenulinks ul li a{font-size:30px;}
.openmobilemenuarama input{height:40px;font-size:14px;}
.mobile-menu .mobile-menu-logo img{width:89%;}
.panel-mm-acc ul li a{font-size:20px;}
} 
@media (max-width: 1651px){
li,a{font-size:19px;}
span{font-size:19px;}
}
@media (max-width: 1500px){
span{font-size:18px;}
}
@media (max-width: 1300px){
span{font-size:16px;}
li,a{font-size:15px;}
}
@media (min-width:1200px){
.mobile-menu{display:none;}
}
@media (max-width: 1200px){
span{font-size:15px;}
li,a{font-size:14px;}
.mobile-menu{display:block;}
}
@media (max-width: 900px){
span{font-size:14px;}
li,a{font-size:13px;}
}
@media (max-width: 600px){
span{font-size:14px;}
li,a{font-size:13px;}
.mobile-menu{padding-top:20px;padding-bottom:20px;}
}
 .odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative;
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  *display: inline;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  *display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  *display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
/*
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.1em;
}
.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
  text-align: center;
}

 

.odometer{
	font-size: 32px;
	font-weight: 600;
}
*/

.main-header2 .main-header-menu2 ul li.menu-yeni:hover li a::after{
    width:0;
    height:0
}
.main-header2 .main-header-menu2 ul li.menu-yeni:hover li a::before{
 
    background: #3058ed00; 
}

.main-header2 .main-header-menu2 ul li.menu-yeni li a::before{
    content: "";
    width: 0%;
    height: 5px;
    background: #3058ed00;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: 0.5s;
    z-index: 9999999999;
    }
    
    .main-header2 .main-header-menu2 .acilir-menu-beyaz ul li a::before {
    content: "";
    display: block;
    height: 0;
    background: none;
    background-image: url(../img/kucukyataycizgi.png);
    width: 3px;
    position: absolute;
    left: -12px;
    background-size: 100%;
    background-repeat: no-repeat;
    top: 8px;
    background-size: contain;
    transition: 0s;
}



    .main-header2 .main-header-menu2 .acilir-menu-beyaz ul li a:hover:before{
            content: "";
    display: block;
    height: 44px;
    background: none;
    background-image: url(../img/kucukyataycizgi.png);
    width: 3px;
    position: absolute;
    left: -12px;
    background-size: 100%;
    background-repeat: no-repeat;
    top: 8px;
    background-size: contain;
    transition: 0s;
        }
        










 /*
	
.odometer {
  padding: 65px 125px;
  background-color: #e6e3e8;
  font-size: 100px;
  font-family: "Roboto" !important;
  font-weight: 100;
  box-shadow: 0px 10px 15px rgba(#000, 0.3);
 }
 .odometer .odometer-inside {
    background-color: #4f465e;
    color: #fff;
    padding: 0px 55px;
    box-shadow: 0px 10px 15px rgba(#000, 0.3);
  }
   .odometer-formatting-mark {
    margin-right: 20px;
  }
   
    .odometer .odometer-digit:not:last-child {
      margin-right: 20px;
    } */
    .haber-top .left-baslik {
    top: 5% !important;
    display: none;
}
 .banner .bannerdesc { 
    top: 25%; 
}
.sinerjienbtn{
    margin-top: 2rem;
}
.sinerjienbtn.abone{
    margin-top: 1rem;
}
.sinerjienbtn.abone a{
    width: 20%;
}
.sinerjienbtn a{
    width: 30%;
    height: 60px;
    background: #1B2445;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 20px;
  transition:0.5s;
}
.sinerjienbtn a:hover{ 
    background: #8DFF33; 
  color:#1B2445;
  transition:0.5s;
}
.sinerjienbtn.iletisim a{
  background: #8DFF33;
  color:#1B2445;
  transition:0.5s;
}
.sinerjienbtn.iletisim:hover a{
  background: #1B2445;
  color:#8DFF33;
  transition:0.5s;
}
.silahlarkutu .sinerjienbtn{
    margin-bottom: 0rem;
}
.silahlarkutu .sinerjienbtn a{
    width: 50%;
    margin: auto;
    margin-top: 5rem;
}
.sinerjienbtn.yet a{
    width: 50%;
    margin: auto; 
    background: #8DFF33;
}
.sinerjienbtn.yet:hover a{
    width: 50%;
    margin: auto; 
    background: #1B2445;
    color:#8DFF33
}
.iletisim-footer{}
.iletisim-footer img{width: 27px;}
.nedenbiz .nb-card span {
    height: 340%;
    display: block;
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    line-height: 139.5%;
    text-align: center;
}
.topmenu a.topmenuilinks span {
    margin-left: 4px;
    line-height: normal;
}
.silahlarlast .silahlarkutu h2 {
    font-size: 20px;
    text-align: center;
    line-height: 23px;
    font-weight: bold;
    height: 80px;
}
.silahlarlast .silahlarkutu p { 
    font-size: 15px; 
    line-height: 28px;
}