/* baslik font */
@font-face {
    font-family: 'audiowide';
    src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
    font-style: normal;
}
/* baslık2 font */
@font-face {
    font-family: 'Rodchenko';
    src: url('../fonts/Rodchenko\ Condensed.ttf') format('truetype');
    font-style: normal;
}
/* baslık3 font */
@font-face {
    font-family: 'roboto';
    src: url('../fonts/RobotoMono-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
}
/* main font */
@font-face {
    font-family: 'GT-America-Regular';
    src: url('../fonts/FontsFree-Net-GT-America-Regular-1.ttf') format('truetype');
    font-style: normal;
}
/* footer font */
@font-face {
    font-family: 'GT-America-Mono';
    src: url('../fonts/GT-America-Mono-Regular.ttf') format('truetype');
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: #000;
    cursor: crosshair;
}

/* Header start */

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    cursor: url('../imgs2/bottom.png') auto;
}

.logo {
    margin-left: 5%;
    height: 70%;
}

.logo img {
    height: 90%;
    object-fit: scale-down;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

header h1 {
    display: none;
}

.menu a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    font-family: audiowide;
    font-size: 17px;
    font-weight: 400;
    margin: 20px;
    transform: translateX(0px);
    transition: 0.3s;
}

.menu a:hover {
    transform: scale(1.1) translateY(5px) ;
    color: #0971b7;
}

.menu a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #0971b7;
    transition: width .3s;
}

.menu a:hover::after {
    width: 100%;
    transition: width .3s;
}

.menu-icon {
  display: none;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .menu {
  transform: scale(1, 1);
}

.dropbtn {
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
    color: #ffffff;
    font-family: audiowide;
    font-size: 17px;
    font-weight: 400;
    transform: translateX(0px);
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
  
.dropdown {
    position: relative;
    display: inline-block;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: max-content;
    z-index: 1;
}
  
.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.dropdown:hover .dropdown-content {display: block;}

/* Header finish */

/* baslik start */
.baslik {
    position: relative;
    margin: auto;
    width: 100%;
    height: 80vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 100px;
}

.baslik h1 {
    font-family: audiowide;
    font-size: max(2.6666666667vw,32px);
    margin: auto;
    margin-bottom: 0;
    animation: animation 7s infinite;
}

@keyframes animation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.baslik h3 {
    font-family: roboto;
    font-size: max(1.0666666667vw,15px);
    font-weight: 400;
    margin: auto;
    margin-top: 20px;
    animation: animation 7s infinite;
}

.glow-div {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 1;
    transition: 0.5s;
}

.glow {
    position: relative;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin: 50px;
    border: 2px solid white;
}

.glow:before,
.glow:after, .spn {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0%;
    left: 0%;
    border-radius: 50%;
    box-shadow: 0 0 15px #153f86;
    animation: glow-grow 2s ease-out infinite;
}

.glow:after {
    animation-delay: 1s;
}

.glow .spn{
    animation-delay: 2s;
}

.glow-div a{
    text-decoration: none;
    cursor: pointer;
    transform: translateY(50px);
    transition: transform 0.5s;
}

.glow-div a:hover{
    transform: translateY(70px);
}

.glow img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

@keyframes glow-grow {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}


/* baslik finish */

/* içerik start */

.icerik {
    width: 100%;
    min-height: 700px;
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icerik-h1 {
    text-align: center;
    color: #fff;
    font-family: audiowide;
    margin-top: 100px;
    font-size: max(3.6666666667vw,30px);
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}

.line {
    position: absolute;
    left: -100px;
    top: 55px;
    transform: rotate(270deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-span {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}

.box {
    margin-top: 50px;
    width: 60%;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.box-sol {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    width: 40%;
    min-width: 290px;
    height: 100%;
    position: relative;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}

.line1 {
    position: absolute;
    right: -70px;
    bottom: 80px;
    transform: rotate(90deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-span1 {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}

.box-sol h1 {
    color: #fff;
    font-family: audiowide;
    font-size: max(1.2666666667vw,20px);
}

.box-sol p {
    color: #fff;
    font-family: roboto;
    transition: 0.5s;
    font-size: max(.8666666667vw,15px);
    background-color: transparent;
    padding: 10px;
    border-radius: 1px;
    position: relative;
    left: -10px;
}

.box-sol:hover p {
    background-color: #000000cb;
    transform: scale(1.3);
}

/* içerik finish */

/* modul finish */
.modul {
    width: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 100px;
}

.modul-h1 {
    text-align: center;
    color: #fff;
    font-family: audiowide;
    margin-top: 100px;
    font-size: max(3.6666666667vw,30px);
    transition: 0.5s;
    margin-top: 150px;
}

.box-modul {
    margin-top: 50px;
    width: 80%;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.line-modul {
    position: absolute;
    left: -100px;
    top: 120px;
    transform: rotate(270deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-modul-span {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}

.moduls {
    width: 280px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin: 20px;
    border-radius: 1px;
    transition: 0.5s;
}

.moduls:hover {
    background-color: #000000cb;
    transform: scale(1.3) !important;
}

.moduls h1 {
    color: #fff;
    font-family: roboto;
    font-size: 25px;
}

.moduls p {
    color: #fff;
    font-family: GT-America-Regular;
    font-size: 17px;
    margin-top: 0;
}

.line1-modul {
    position: absolute;
    right: -70px;
    bottom: 110px;
    transform: rotate(90deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-modul-span1 {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}


/* modul finish */


/* içerik mobil start */

.icerik-mobil {
    width: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(0deg, #000000a9 0%, #00000096 50%, #0000000f 80%, #00000000 100%);
}

.mobil-h1 {
    text-align: left;
    color: #fff;
    font-family: audiowide;
    font-size: max(3.6666666667vw,30px);
    width: 80%;
    margin-top: 100px;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}

.box-mobil {
    margin-bottom: 150px;
    width: 80%;
    min-height: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.line-mobil {
    position: absolute;
    left: -100px;
    top: 85px;
    transform: rotate(270deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-mobil-span {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}

.mobil-text {
    width: 67%;
    min-width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
}

.mobil-text h3 {
    color: #fff;
    font-family: roboto;
    font-size: max(1.2666666667vw,16px);
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}

.mobil-ust {
    width: 80%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.ust-div {
    width: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    text-align: left;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}

.ust-div:hover {
    background-color: #000000cb;
    transform: scale(1.3)!important;
}


.mobil-text p {
    color: #fff;
    font-family: GT-America-Regular;
    font-size: max(.8666666667vw,16px);
}

.mobil-text h4 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-family: roboto;
    font-size: max(.8666666667vw,16px);
}

.mobil-img {
    width: 30%;
    min-width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    opacity: 0;
    transform: translateX(170px);
}

.mobil-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 0px 50px #001986;
}

/* içerik mobil finish */


/* içerik web start */

.icerik-web {
    width: 100%;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000000a9;
}

.web-h1 {
    text-align: right;
    color: #fff;
    font-family: audiowide;
    font-size: max(3.6666666667vw,30px);
    width: 80%;
    margin-top: 100px;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}

.box-web {
    margin-bottom: 150px;
    width: 80%;
    min-height: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    position: relative;
}

.line-web {
    position: absolute;
    right: -80px;
    top: 100px;
    transform: rotate(270deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-web-span {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}

.web-text {
    width: 40%;
    min-width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
}

.web-text h3 {
    color: #fff;
    font-family: roboto;
    font-size: max(1,666666667vw,16px);
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}

.web-ust {
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}

.web-ust-p {
    transition: 0.5s;
}

.web-ust-p:hover {
    background-color: #000000cb;
    transform: scale(1.3)!important;
}


.ust-div1 {
    width: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    text-align: left;
    transition: 0.5s;
}

.ust-div1:hover {
    background-color: #000000cb;
    transform: scale(1.3)!important;
}

.web-text p {
    color: #fff;
    font-family: GT-America-Regular;
    font-size: max(.8666666667vw,16px);
}

.web-text h4 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-family: roboto;
    font-size: max(.8666666667vw,16px);
}


.web-img {
    width: 55%;
    min-width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    opacity: 0;
    transform: translateX(-170px);
    position: relative;
    top: -60px;
}

.web-img img {
    width: 90%;
    object-fit: fill;
    border-radius: 10px;
    box-shadow: 0px 0px 50px #001986;
}

/* içerik web finish */


/* fiyatlar start */

.icerik-fiyat {
    width: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000000a9;
}

.fiyat-h1 {
    text-align: center;
    color: #fff;
    font-family: audiowide;
    font-size: max(3.6666666667vw,29px);
    width: 100%;
    margin-bottom: 0;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}

.box-fiyat {
    margin-bottom: 150px;
    width: 82%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.line-fiyat {
    position: absolute;
    left: 0px;
    top: 190px;
    transform: rotate(270deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-fiyat-span {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}

.fiyat-text {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fiyat-text h3 {
    color: #fff;
    font-family: roboto;
    font-size: max(1.2666666667vw,15px);
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}


.fiyat-card {
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    margin: auto;
    margin-top: 0;
}

.card {
    transition: 0.5s;
    opacity: 0;
    transform: translateY(170px);
}

.gradient-border {
    --border-width: 3px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    width: 320px;
    min-width: 290px;
    min-height: 600px;
    color: #ffffff;
    background: #131313;
    margin: 50px;
  
    &::after {
    position: absolute;
    content: "";
    top: calc(-1 * var(--border-width));
    left: calc(-1 * var(--border-width));
    z-index: -1;
    width: calc(100% + var(--border-width) * 2);
    height: calc(100% + var(--border-width) * 2);
    background: linear-gradient(
        60deg,
        #5ddcff,
        #3c67e3,
        #4e00c2,
        #5ddcff
    );
    background-size: 300% 300%;
    background-position: 0 50%;
    animation: moveGradient 2s alternate infinite;
    }
}
  
@keyframes moveGradient {
    50% {
      background-position: 100% 50%;
    }
}

.gradient-border h2 {
    font-family: audiowide;
    text-align: center;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 0;
}

.teklif {
    font-family: GT-America-Regular;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 20px;  
    margin-bottom: 5px;
}

.teklif1 {
    font-family: GT-America-Regular;
    text-align: center;
}

.teklif-fiyat {
    font-family: GT-America-Mono;
    text-align: center;
    font-size: 35px;
    margin: 10px;
    color: #00ff00;
}

.span1 {
    font-family: GT-America-Mono;
    font-size: 25px;
    margin: -20px;
    color: #00c700;
}

.span2 {
    font-family: GT-America-Mono;
    font-size: 12px;
    margin: 0;
    color: #dddddd;
}

/* fiyatlar finish */


/* footer start */

.footer {
    width: 100%;
    min-height: 300px;
    max-height: max-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000000d8;
    box-shadow: 0px 0px 25px #1a2866;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-sol {
    min-width: 200px;
    width: 15%;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    transition: 0.5s;
}

.footer-sol img {
    width: 60%;
    object-fit: fill;
}

.footerlinkx {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.footerlinkx a {
    text-decoration: none;
}
.footerlinkx i {
    color: #fff;
    font-size: 30px;
    margin: auto;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 0;
    margin-bottom: 0;
    transition: 0.5s;
    transform: translateY(0);
}

.footerlinkx i:hover {
    color: #0971b7;
    transform: scale(1.2) translateY(5px);
}

.footer-orta {
    min-width: 200px;
    width: 15%;
    height: 100%;
    margin-right: 1%;
    margin-left: 1%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    transition: 0.5s;
}

.footer-orta h3{
    color: #fff;
    font-family: roboto;
    font-size: max(.8666666667vw,14px);
    line-height: 20px;
    margin-top: 36px;
}

.footer-orta a{
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;
    font-family: GT-America-Mono;
    font-size: max(.6666666667vw,12px);
}

.footer-sag {
    min-width: 200px;
    width: 15%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    transition: 0.5s;
}

.footer-sag h3 {
    color: #fff;
    font-family: roboto;
    font-size: max(.8666666667vw,15px);
    line-height: 20px;
}

.footer-sag p {
    text-decoration: none;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: GT-America-Mono;
    font-size: max(.6666666667vw,12px);
}

/* footer finish */


/* scroll img start */

#image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -99;
}

#scrollingImage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -99;
}

/* scroll img finish */



.mySlides1, .mySlides2 {display: none;}
.mySlides1.fade,
.mySlides2.fade {
  opacity: 1;
}
img {vertical-align: top;}

/* Slideshow container */
.slideshow-container {
  max-width: 80%;
  position: relative;
  margin: auto;
}

.slideshow-container1 {
    max-width: 100%;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #000000;
  background-color: #ffffffc6;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: #000000c6;
  color: #ffffff;
}

.fade {
    animation-name: fade;
    animation-duration: 1s;
    animation-timing-function: ease-in-out; 
}
  

@keyframes fade {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

/*--------------------------------------------------------*/

/* hakkımızda start */

.icerik-hak {
    width: 100%;
    min-height: 700px;
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icerik-hak-h1 {
    text-align: center;
    color: #fff;
    font-family: audiowide;
    margin-top: 100px;
    font-size: max(3.6666666667vw,30px);
    transition: 0.5s;
}

.line-hak {
    position: absolute;
    left: -100px;
    top: 40px;
    transform: rotate(270deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-hak-span {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}

.box-hak {
    margin-top: 50px;
    width: 60%;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.box-hak-sag {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    width: 35%;
    min-width: 290px;
    height: 100%;
    position: relative;
    transition: 0.5s;
}
.box-hak-sag img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.box-hak-sol {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    width: 60%;
    min-width: 290px;
    height: 100%;
    position: relative;
    transition: 0.5s;
}

.line1-hak {
    position: absolute;
    right: -70px;
    bottom: 80px;
    transform: rotate(90deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-hak-span1 {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}

.box-hak-sol h1 {
    color: #fff;
    font-family: audiowide;
    font-size: max(1.2666666667vw,20px);
}

.box-hak-sol p {
    color: #fff;
    font-family: roboto;
    transition: 0.5s;
    font-size: max(.8666666667vw,15px);
    background-color: transparent;
    padding: 10px;
    border-radius: 1px;
    position: relative;
    left: -10px;
}

.box-hak-sol:hover p {
    background-color: #000000cb;
    transform: scale(1.1);
}

/* hakkımızda finish */

/* crm start */

.icerik-crm {
    width: 100%;
    min-height: 700px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icerik-crm-h1 {
    text-align: center;
    color: #fff;
    font-family: audiowide;
    margin-top: 100px;
    font-size: max(3.6666666667vw,30px);
    transition: 0.5s;
}

.line-crm {
    position: absolute;
    left: -100px;
    top: 40px;
    transform: rotate(270deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-crm-span {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}

.box-crm {
    margin-top: 50px;
    width: 60%;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.box-crm-sag {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    width: 40%;
    min-width: 290px;
    height: 100%;
    position: relative;
    transition: 0.5s;
    margin-bottom: 50px;
}
.box-crm-sag img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.box-crm-sol {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    width: 55%;
    min-width: 290px;
    height: 100%;
    position: relative;
    transition: 0.5s;
}

.line1-crm {
    position: absolute;
    right: -100px;
    bottom: 85px;
    transform: rotate(90deg);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Rodchenko;
}
.line-crm-span1 {
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin: auto;
    margin-right: 15px;
}

.box-crm-sol h1 {
    color: #fff;
    font-family: audiowide;
    font-size: max(1.2666666667vw,20px);
}

.box-crm-sol p {
    color: #fff;
    font-family: roboto;
    transition: 0.5s;
    font-size: max(.8666666667vw,15px);
    background-color: transparent;
    padding: 10px;
    border-radius: 1px;
    position: relative;
    left: -10px;
}

.box-crm-sol:hover p {
    background-color: #000000cb;
    transform: scale(1.1);
}

/* crm finish */