@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #061e3b1a;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

html {
    position: relative;
}

.wrapperx {
    overflow-x: hidden;
    width: 100%;
}

/* header start */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
    transition: transform 0.5s;
    transform: translateY(0px);
}

.logo {
    width: 180px;
    height: 100%;
    text-decoration: none;
    margin-left: 3%;
}

.logo img {
    object-fit: scale-down;
    width: 100%;
    height: 100%;
}

.navigation {
  margin: auto;
  margin-right: 20%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.menu-icon {
  display: none;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .menu {
  transform: scale(1, 1);
}

.btn {
    text-decoration: none;
    color: #fff;
    padding: 6px 15px;
    margin: 0 10px;
    font-weight: 600;
    display:inline-block;
    text-transform:uppercase;
}

.btn:after {
    display:block;
    content: '';
    border-bottom: solid 3px #40ddcc;  
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
}

.btn.active,
.btn:hover{
    color: #fff;
    text-shadow: 
    0 0 10px #fff,
    0 0 20px #fff, 
    0 0 30px #40ddcc;
}

.btn:hover:after { transform: scaleX(1); }
/* header finish */


/* section start */

.parallax {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    z-index: 0;
}

.text-flex {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#text {
    font-size: 6em;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(255, 255, 255);   
    transition: transform 0.5s;
    margin: 10px;
    z-index: 1;
}

#prg {
    position: absolute;
    text-align: center;
    top: 58%;
    width: 55%;
    font-size: 1.7em;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(255, 255, 255);   
    transition: transform 1s;
    opacity: 0;
    z-index: 1;
}

.bg-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(6,30,59,.1) 0%, rgb(6, 30, 59) 18%, rgba(2,11,33) 80%);
    z-index: 1;
}

#monitor {
    position: absolute;
    width: 30%;
    min-width: 350px;
    height: 100vh;
    object-fit: scale-down;    
    backface-visibility: hidden;
    overflow: hidden;
    transform: perspective(800px) rotateY(35deg);
    -webkit-transform: perspective(800px) rotateY(35deg);
    -moz-transform: perspective(800px) rotateY(35deg);
    transition: transform 0.5s ease;
    z-index: 100;
}


#solsekil {
    position: absolute;
    left: 0;
    pointer-events: none;
    width: 26%;
    height: auto;
    transition: transform 0.5s;
    z-index: 1;
}

#sagsekil {
    position: absolute;
    right: 0;
    pointer-events: none;
    width: 26%;
    height: auto;
    transition: transform 0.5s;
    z-index: 1;
}

#c {
    display: block;
    position:absolute;
    top:0;
    left:0;
    transform: scale(1.1);
    z-index: -1;
    width: 100%;
    height: 100%;
}
/* section finish */

/* section sec start */

.sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #030b22 0%, #092955 50%, #030b22 100%);
    padding: 60px 0px 60px 0px;
    margin-top: 1500px;
}

#stars {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

#cizgisol {
    position: absolute;
    left: 4%;
    top: 0px;
    width: 12%;
    opacity: 0;
    transform: translateY(-200px);
    transition: 1s;
}
#cizgisag {
    position: absolute;
    right: 4%;
    bottom: 0px;
    width: 12%;
    transform: translateY(-200px);
    transition: 1s;
    opacity: 0;
}

.sec h2 {
    font-size: 3em;
    color: #fff;
    margin-top: 50px;
    text-align: center;
    margin-bottom: 50px;
}

.sec p {
    font-size: 1em;
    color: #fff;
    font-weight: 300; 
}

#urun-bslk {
    transform: translateY(170px);
    opacity: 0;
    transition: 0.5s;
}
/* section sec finish */

/* card start */
.card-kapla {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: auto;
}

.card-kapla a {
    text-decoration: none;
    transition: 0.8s;
    margin: auto;
}

.card-kapla a:hover {
    transform: translateY(0);
    opacity: 1;
}

.card {
    width: 350px;
    min-height: 600px;
    max-height: max-content;
    margin: 50px 0px;
    box-shadow: 20px 20px 50px #00000080;
    border-radius: 25px;
    background-color: #9999991f;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    position: relative;
}

.card img {
    position: absolute;
    width: 90%;
    height: 90%;
    object-fit: scale-down;
    border-radius: 20px;
}

.yazi {
    margin: auto;
    width: 100%;
    margin-bottom: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
}

.card:hover .yazi {
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.61) 80%, rgba(0, 0, 0, 0) 100%);
}

.yazi h2 {
    font-size: 2em;
    color: #ffffff;
    margin: auto;
    margin-top: 0;
    transform: translateY(0px);
    transition: 0.5s;
    width: 100%;
}
.card-baslk {
    transform: translateY(80px) !important;
}
.card-baslk1 {
    transform: translateY(80px) !important;
}
.card-baslk2 {
    transform: translateY(175px) !important;
}
.card-baslk3 {
    transform: translateY(225px) !important;
}
.card-baslk4 {
    transform: translateY(105px) !important;
}
.card:hover .yazi h2 {
    transform: translateY(20px) !important;
    text-shadow: 
    0 0 10px #000000,
    0 0 20px #000000, 
    0 0 30px #40ddcc,
    0 0 50px #40ddcc;
}

.yazi p {
    margin: auto;
    margin-bottom: 0px;
    margin-top: 0;
    padding: 10px;
    color: #ffffff;
    text-shadow: 0px 0px 2px #000000;
    transform: translateY(150px);
    opacity: 0;
    transition: 0.5s;
}

.card:hover .yazi p {
    transform: translateY(0px);
    opacity: 1;
    margin-top: 10px;
}
/* card finish */

/* urun1 start */

.urun1{
    position: relative;
    background: linear-gradient(135deg, rgba(3,11,34,1) 0%, rgba(9,41,85,1) 50%, rgba(3,11,34,1) 100%);
    padding: 50px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 0;
}

#capraz {
    position: absolute;
    left: -20.7%;
    top: 0;
    width: 50%;
    z-index: -1;
}

#capraz1 {
    position: absolute;
    right: -20.7%;
    bottom: 0;
    width: 50%;
    z-index: -1;
}

.urun1 h2 {
    font-size: 3em;
    color: #ffffff;
    margin-top: 100px;
    margin-bottom: 10px;
    text-align: center;
    transform: translateY(170px);
    opacity: 0;
    transition: 0.5s;
}

.urun1-box {
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.text1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.text1 img {
    object-fit: scale-down;
    width: 40%;
    min-width: 300px;
    transform: translateY(-200px);
    transition: 1s;
    opacity: 0;
}

.text1-ic {
    width: 50%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    text-align: left;
}

.text1-ic h3 {
    text-align: start;
    font-size: 2em;
    transform: translateX(200px);
    transition: 1s;
    opacity: 0;
}

.text1-ic p {
    margin-top: 20px;
    margin-bottom: 50px;
    transform: translateX(200px);
    transition: 1s;
    opacity: 0;
}
/* urun1 finish */

/* PDF start */

#pdf {
    background: linear-gradient(135deg, rgba(3,11,34,1) 0%, rgba(9,41,85,1) 50%, rgba(3,11,34,1) 100%);
    width: 100%;
    min-height: 100vh;
    padding: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#pdf h2 {
    font-size: 3em;
    color: #ffffff;
    margin-top: 100px;
    margin-bottom: 10px;
    text-align: center;
    transform: translateY(170px);
    opacity: 0;
    transition: 0.5s;
}

#starsx {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

#solsekilx {
    position: absolute;
    left: 0;
    pointer-events: none;
    width: 26%;
    height: auto;
    opacity: 0;
    transform: translateX(-200px);
    transition: 1s;
}

#sagsekilx {
    position: absolute;
    right: 0;
    pointer-events: none;
    width: 26%;
    opacity: 0;
    transform: translateX(200px);
    transition: 1s;
}

/* PDF finish */

/* footer start */

footer {
    width: 100%;
    height: auto;
    background-color: #030b22;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    position: relative;
}

.footerimg  {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: start;
    width: 25%;
    height: 100%;
    min-width: 350px;
    color: #fff;
}

.footerimg img {
    object-fit: scale-down;
    width: 50%;
    margin-top: 50px;
    margin-bottom: 20px;
}
.footerimg p {
    margin-bottom: 50px;
    width: 70%;
}

.footeriletisim {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    justify-content: center;
    align-items: start;
    width: 15%;
    min-height: 100%;
    min-width: 350px;
    color: #fff;
    list-style-type: none;
    margin-top: 50px;
    margin-bottom: 50px;
}
.footeriletisim nav {
    margin-top: 20px;
}
.footeriletisim a {
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
}

.footeriletisim a:hover {
    color: #40ddcc;
    text-shadow: 
    0 0 10px #fff,
    0 0 20px #fff, 
    0 0 30px #40ddcc;
}

.footerlink {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: left;
    width: 30%;
    height: 100%;
    color: #fff;
    list-style-type: none;
    min-width: 350px;
    margin-bottom: 50px;
    margin-top: 50px;
}

.footerlink nav {
    margin-top: 20px;
}

.footerlink h3 {
    width: fit-content;
}

.footerlink li {
    margin-top: 5px;
}

.tel {
    margin-top: 20px;
}

.footerlinkx {
    display: flex;
    flex-direction: row;
    justify-content: baseline;
    align-items: center;
    margin-top: 20px;
}
.footerlinkx a {
    text-decoration: none;
}
.footerlinkx i {
    color: #fff;
    font-size: 30px;
    margin-left: 0;
    margin-right: 30px;
    margin-top: 0;
    margin-bottom: 0;
    transition: 0.5s;
    transform: translateY(0);
}

.footerlinkx i:hover {
    color: #0971b7;
    transform: scale(1.2) translateY(5px);
}


/* ---------------------------------------------- */

/* cookie */

.fixed {
  position: fixed;
  will-change: transform;
  z-index: 999;
}

.fixed--bottom {
  bottom: 0;
  left: 0;
  right: 0;
}


/* modules/anchor.css */

:root {
  --anchorColor: inherit;
}

a {
  color: inherit;
  color: var(--anchorColor);
}

/* modules/button.css */

:root {
  --buttonBorderWidth: 0.0625em;
  --buttonPaddingHorizontal: 1em;
  --buttonPaddingVertical: 0.5em;

  --buttonHoverBackgroundColor: #26a7f2;
}

button {
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  margin: 0;
  padding: 0;
  width: max-content;
}

.button {
  border-style: solid;
  border-width: 0.0625em;
  border-width: var(--buttonBorderWidth);
  padding: 0.5em 1em;
  padding: var(--buttonPaddingVertical) var(--buttonPaddingHorizontal);
  position: relative;
}

.button::after {
  background-color: #26a7f2;
  background-color: var(--buttonHoverBackgroundColor);
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  will-change: opacity;
  z-index: -1;
}

.button:focus::after,
.button:hover::after {
  opacity: 1;
}

/* modules/cookie-disclaimer.css */

:root {
  --cookieDisclaumerBackgroundColor: #092955;
  --cookieDisclaumerColor: #fff;
  --cookieDisclaumerFontSize: 0.75rem;
  --cookieDisclaumerPadding: 0.75rem;
}

.cookie-disclaimer {
  background-color: #208bcc;
  background-color: var(--cookieDisclaumerBackgroundColor);
  color: #fff;
  color: var(--cookieDisclaumerColor);
  font-size: 0.75rem;
  font-size: var(--cookieDisclaumerFontSize);
  opacity: 0;
  padding: 0.75rem;
  padding: var(--cookieDisclaumerPadding);
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, transform 0.5s;
  transition: opacity 0.3s, transform 0.5s;
  transition: opacity 0.3s, transform 0.5s, -webkit-transform 0.5s;
}

.cookie-disclaimer.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.cookie-disclaimer :first-child {
  margin-top: 0;
}

.cookie-disclaimer :last-child {
  margin-bottom: 0;
}

/* modules/media.css */

:root {
  --mediaObjectMarginHorizontal: 1em;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.media--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.media__object--left {
  margin-right: 1em;
  margin-right: var(--mediaObjectMarginHorizontal);
}

.media__object--right {
  margin-left: 1em;
  margin-left: var(--mediaObjectMarginHorizontal);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.media__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}