@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');
.flex-1 {
  flex: 8.3333333333%;
}

.flex-2 {
  flex: 16.6666666667%;
}

.flex-3 {
  flex: 25%;
}

.flex-4 {
  flex: 33.3333333333%;
}

.flex-5 {
  flex: 41.6666666667%;
}

.flex-6 {
  flex: 50%;
}

.flex-7 {
  flex: 58.3333333333%;
}

.flex-8 {
  flex: 66.6666666667%;
}

.flex-9 {
  flex: 75%;
}

.flex-10 {
  flex: 83.3333333333%;
}

.flex-11 {
  flex: 91.6666666667%;
}

.flex-12 {
  flex: 100%;
}

* {
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Noto Sans', sans-serif;
}

.nav {
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  position: fixed;
  top: 0;
  z-index: 100;
  height: 100px;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.nav .nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .nav{
    height: 80px;
  }
  .nav.scrolled {
    height: 60px !important;
  }
  .nav.scrolled .nav-logo{
    padding: 10px 0 !important;
  }
  .nav .nav-container {
    justify-content: space-between;
  }
}
.nav .nav-container .nav-logo {
  width: auto;
  height: 100%;
  padding: 15px 0;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
@media screen and (max-width: 1024px) {
  .nav .nav-container .nav-logo {
    padding: 10px 0;
  }
}
.nav .nav-container .nav-logo img {
  width: 100%;
}
.nav .nav-container .sidebar-opener {
  display: none;
  border: 1px solid black;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-size: 1.3em;
}
@media screen and (max-width: 1024px) {
  .nav .nav-container .sidebar-opener {
    display: flex;
  }
}
.nav .nav-container nav {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 40px;
}
.nav .nav-container nav a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  padding: 20px 30px;
  text-decoration: none;
  color: black;
  display: block;
  transition: background-color 0.25s, color 0.25s;
  -webkit-transition: background-color 0.25s, color 0.25s;
  -moz-transition: background-color 0.25s, color 0.25s;
  -ms-transition: background-color 0.25s, color 0.25s;
  -o-transition: background-color 0.25s, color 0.25s;
}
.nav .nav-container nav a:hover {
  color: #dd2b1c;
}
.nav .nav-container nav a.active {
  color: #dd2b1c;
}
@media screen and (max-width: 1024px) {
  .nav .nav-container nav {
    display: none;
  }
}

.nav.scrolled {
  height: 80px;
  box-shadow: 0 0px 10px 3px rgba(31, 31, 31, 0.3);
}
.nav.scrolled .nav-logo {
  padding: 5px 0;
}
#section1 {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 75px 0;
}
.section .container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 20px;
}

.column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 90px;
}
.column .hizmet {
  font-family: 'Noto Sans', sans-serif;
  width: 100%;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 10px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
@media screen and (max-width: 1200px) {
  .column .hizmet {
    flex-direction: column;
  }
}
.column .hizmet .hizmet-left {
  padding: 40px;
}
@media screen and (max-width: 1200px) {
  .column .hizmet .hizmet-left {
    order: 2;
  }
}
.column .hizmet .hizmet-left .hizmet-title {
  font-size: 2em;
  font-weight: 500;
  color: #dd2b1c;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .column .hizmet .hizmet-left .hizmet-title {
    font-size: 2em;
  }
}
@media screen and (max-width: 425px) {
  .column .hizmet .hizmet-left .hizmet-title {
    font-size: 1.75em;
  }
}
.column .hizmet .hizmet-left .hizmet-text {
  color: rgb(112 ,112, 112);
  line-height: 1.5em;
  font-size: 0.91em;
}
@media screen and (max-width: 768px) {
  .column .hizmet .hizmet-left .hizmet-text {
    font-size: 1em;
  }
}
@media screen and (max-width: 425px) {
  .column .hizmet .hizmet-left .hizmet-text {
    font-size: 0.8em;
    text-align: left;
  }
}
.column .hizmet .hizmet-left .hizmet-button{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}
.column .hizmet .hizmet-left .hizmet-button a{
  padding: 10px 15px;
  font-size: 0.8em;
  color: black;
  border: 1px solid #dd2b1c;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: background-color 0.5s, color 0.5s;
  -webkit-transition: background-color 0.5s, color 0.5s;
  -moz-transition: background-color 0.5s, color 0.5s;
  -ms-transition: background-color 0.5s, color 0.5s;
  -o-transition: background-color 0.5s, color 0.5s;
}
.column .hizmet .hizmet-left .hizmet-button a:hover{
  background-color: #dd2b1c;
  color: white;
}
.column .hizmet .hizmet-left .hizmet-text ul li {
  list-style: none;
  font-size: 1.3em;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.column .hizmet .hizmet-left .hizmet-text ul li::before {
  content: "";
  display: block;
  margin-right: 15px;
  width: 25px;
  height: 1px;
  background-color: #dd2b1c;
}
.column .hizmet .hizmet-right {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .column .hizmet .hizmet-right {
    order: 1;
  }
}
.column .hizmet .hizmet-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column .hizmet:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .column .hizmet:hover {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

#section2 {
  padding-top: 100px;
  height: 100%;
}
#section2 .hizmet {
  position: relative;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
  background-color: #0f2331;
}
#section3 .hizmet:nth-child(even) .hizmet-right{
  order: 1;
}
#section3 .hizmet:nth-child(even) .hizmet-left{
  order: 2;
}
#section2 .hizmet .video-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
  -webkit-filter: brightness(0.4);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
#section2 .section2-padding {
  padding: 150px 70px;
}
@media screen and (max-width: 768px) {
  #section2 .section2-padding {
    padding: 75px 35px;
  }
}
@media screen and (max-width: 425px) {
  #section2 .section2-padding {
    padding: 75px 30px;
  }
}
#section2 .hizmet-title {
  text-align: center;
  font-weight: 600;
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  #section2 .hizmet-title {
    font-size: 2em;
  }
}
@media screen and (max-width: 425px) {
  #section2 .hizmet-title {
    font-size: 1.75em;
  }
}
#section2 .hizmet-title {
  color: white;
}
#section2 .hizmet-text {
  font-weight: 300;
  font-size: 1.1em;
  text-align: justify;
  color: white;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  #section2 .hizmet-text {
    font-size: 1em;
  }
}
@media screen and (max-width: 425px) {
  #section2 .hizmet-text {
    font-size: 0.8em;
    text-align: left;
  }
}

.form {
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.75em;
  font-weight: 400;
  color: rgb(22, 22, 22);
  padding: 20px;
  text-align: center;
  max-width: 848px;
}
#section3 .form-title::before {
  content: "Akıllı Teknolojileri Keşfedin";
  display: block;
  text-align: center;
  color: #dd2b1c;
  font-size: 0.7em;
  margin-bottom: 20px;
  font-weight: 500;
}
.form .form-title::before {
  content: "Hemen Teklif Alın";
  display: block;
  text-align: center;
  color: #dd2b1c;
  font-size: 0.7em;
  margin-bottom: 20px;
  font-weight: 500;
}
.form .form-panel {
  width: 100%;
}
.form .form-panel .form-panel-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form .form-panel .form-panel-left .form-panel-column {
  display: flex;
  width: 100%;
}
.form .form-panel .form-panel-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.form .form-panel .form-panel-right .form-panel-column {
  display: flex;
  width: 100%;
}

select {
  font-family: 'Noto Sans', sans-serif;
  width: 100%;
  padding: 7.5px 7.5px;
  border: none;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
select:required:invalid {
  color: rgb(117, 117, 117);
}
select:focus-visible {
  outline: none;
}
select option {
  color: rgb(26, 26, 26);
  text-transform: capitalize;
}
select option[value=""][disabled] {
  display: none;
}

form {
  width: 100%;
  display: flex;
  padding: 20px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  form {
    flex-direction: column;
  }
}

.form-input {
  font-family: 'Noto Sans', sans-serif;
  width: 100%;
  border: none;
  color: rgb(26, 26, 26);
  padding: 10px 7.5px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 18px 25px;
  border: 1px solid #00000057;
}
.form-input:focus-visible {
  outline: 1px solid gray;
}

textarea {
  font-family: 'Noto Sans', sans-serif;
  width: 100%;
  padding: 10px 7.5px;
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 18px 25px;
  border: 1px solid #00000057;
}
textarea:focus-visible {
  outline: 1px solid gray;
}

button {
  cursor: pointer;
  font-family: 'Noto Sans', sans-serif;
  background-color: transparent;
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: 1px solid #00000057;
}
button:hover {
  outline: 1px solid gray;
}
.flex-end {
  margin-top: 20px;
  justify-content: flex-end;
  align-items: flex-end;
  gap:20px;
}
.social-media {
  padding: 10px;
  display: flex;
  gap: 20px;
}
.social-media-button {
  color: white;
  font-size: 2em;
  transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -ms-transition: transform 0.5s;
  -o-transition: transform 0.5s;
}
.social-media-button:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
footer {
  width: 100%;
  height: auto;
  position: relative;
  bottom: 0;
  margin-top: 100px;
  overflow: hidden;
  color: white;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .video-background {
  position: absolute;
  width: 900px;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.3);
  -webkit-filter: brightness(0.3);
}
footer .container {
  width: 100%;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
footer .container .footer-panel {
  font-family: 'Noto Sans', sans-serif;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px;
}
footer .container .footer-panel .footer-top {
  display: grid;
  grid-template-areas: "row row row";
  justify-content: space-between;
  width: 100%;
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  footer .container .footer-panel .footer-top {
    grid-template-areas: "row" "row" "row";
    justify-content: center;
    gap: 50px;
  }
}
footer .container .footer-panel .footer-top .footer-top-row {
  display: flex;
  width: 100%;
  min-width: 160px;
  max-width: 350px;
  flex-direction: column;
}
footer .container .footer-panel .footer-top .footer-top-row .footer-top-column {
  width: 100%;
  padding: 10px;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  font-weight: 300;
}
footer .container .footer-panel .footer-top .footer-navigate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  color: white;
}
footer .container .footer-panel .footer-top .footer-navigate::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #dd2b1c;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
footer .container .footer-panel .footer-top .footer-navigate:hover::before {
  width: 30px;
}
footer .footer-bottom {
  font-family: 'Noto Sans', sans-serif;
  padding: 20px;
  background-color: rgb(44, 44, 44);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-bottom .container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom .container {
    flex-direction: column;
    gap: 20px;
  }
}
footer .footer-bottom .container .arnoma {
  filter: brightness(0.7);
  -webkit-filter: brightness(0.7);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
footer .footer-bottom .container .arnoma:hover {
  filter: brightness(1);
  -webkit-filter: brightness(1);
}

.sidebar-nav {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f9f9f9;
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  z-index: 99;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.sidebar-nav nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 40px;
}
.sidebar-nav nav a {
  font-family: 'Noto Sans', sans-serif;
  color: black;
  font-weight: 400;
  font-size: 2em;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.sidebar-nav nav a:hover {
  color: #dd2b1c;
}
.wp-icon {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  align-items: center;
  color: #fff;
  background-color: #25d366;
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 100;
  font-size: 24px;
  text-align: center;
  padding: 3px;
  line-height: 45px;
  -webkit-box-shadow: 1px 1px 17px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 1px 1px 17px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 1px 1px 17px 0px rgba(0, 0, 0, 0.32);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-icon:visited {
  color: white;
}

.wp-pulse:before,
.wp-pulse:after {
  content: "";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #58ea00;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
  opacity: 0;
}

.wp-pulse:after {
  animation-delay: 0.5s;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.onay{
  font-size: 15px;
  font-weight: 400;
}
.onay a{
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width:768px){
  .footer-logo{
    width:120px;
  }
}
.banner{
  width: 100%;
  height: 100%;
}
.banner img{
  width: 100%;
  height: 100%
}
.logo-red{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
