:root {
  --maximum-yellow-red: hsl(37, 100%, 68%);
  --royal-blue-dark: hsl(231, 61%, 22%);
  --silver-chalice: hsl(0, 0%, 70%);
  --oxford-blue: hsl(231, 100%, 8%);
  --bittersweet: hsl(2, 100%, 69%);
  --french-rose: hsl(342, 90%, 61%);
  --davys-gray: hsl(180, 3%, 28%);
  --cool-gray: hsl(240, 13%, 62%);
  --platinum: hsl(0, 0%, 92%);
  --white-2: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --rythm: hsl(240, 9%, 53%);
  font-family: "Poppins", sans-serif;
  --fs-1: 32px;
  --fs-2: 26px;
  --fs-3: 22px;
  --fs-4: 18px;
  --fs-5: 15px;
  --fs-6: 14px;
  --fw-700: 700;
  --fw-600: 600;
  --fw-500: 500;
  --transition: 0.25s ease-in-out;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.metalink {
  display: none !important;
}

a,
img,
button,
span,
ion-icon,
label,
input,
textarea {
  display: block;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

textarea,
input {
  font: inherit;
  background: none;
  border: none;
  width: 100%;
}

:is(input, textarea):focus {
  outline: none;
}

:focus {
  outline-offset: 4px;
}

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body {
  background: white;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: hsl(0, 0%, 50%);
}

.container {
  padding: 0 15px;
}

.h1,
.h2,
.h3 {
  font-weight: var(--fw-600);
  line-height: 1.3;
  text-transform: capitalize;
}

.h1 {
  color: var(--oxford-blue);
  font-size: var(--fs-1);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  color: var(--oxford-blue);
  font-size: var(--fs-3);
}

.h4 {
  color: var(--royal-blue-dark);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
}

.btn {
  font-size: var(--fs-6);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  padding: 10px 40px;
  border: 1px solid;
  border-radius: 6px;
}

.btn-primary {
  background: #ed3d57;
  border-color: #ed3d57;
  color: white;
}

.btn-primary:hover {
  opacity: 90%;
}

.btn-primary:is(:hover, :focus) {
  --bittersweet: hsl(2, 90%, 65%);
}

.btn-secondary:is(:hover, :focus) {
  background: hsla(0, 0%, 100%, 0.1);
}

header {
  position: relative;
  padding: 20px 0;
  z-index: 2;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-menu-btn {
  font-size: 30px;
  padding: 5px;
}

.navbar .btn-primary {
  display: none;
}

.hero {
  position: relative;
  padding: 130px 0 140px;
  z-index: 1;
}

.hero-content {
  text-align: center;
}

.hero-title,
.hero-text {
  margin-bottom: 40px;
}

.hero-text {
  font-size: var(--fs-5);
  color: var(--oxford-blue);
}

.hero .btn-primary {
  margin-inline: auto;
}

.hero-banner {
  display: none;
}

.shape-content {
  position: absolute;
  width: 900px;
  top: -230px;
  right: 0;
  z-index: -1;
}

.about {
  position: relative;
  z-index: 1;
  background: url("../images/kirmizi-bg.png") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0;
  text-align: center;
}

.about-top {
  margin-bottom: 120px;
}

.about .h2 {
  color: white;
}

.about-top .section-title {
  margin-bottom: 20px;
}

.about-top .section-text {
  color: var(--white);
  font-size: var(--fs-4);
  margin-bottom: 60px;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.about-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.1);
}

.card-icon {
  color: var(--bittersweet);
  font-size: 45px;
  width: max-content;
  margin-inline: auto;
  margin-bottom: 15px;
}

.about-card .card-title {
  margin-bottom: 15px;
}

.about-card .card-text {
  color: var(--davys-gray);
}

.about-bottom-banner {
  margin-bottom: 120px;
}

.about-bottom-banner img {
  width: 100%;
  margin-top: -85px;
}

.about-bottom .section-title {
  margin-bottom: 20px;
}

.about-bottom .section-text {
  color: var(--white);
  font-size: var(--fs-4);
  margin-bottom: 40px;
}

.about-bottom .btn-secondary {
  color: var(--white);
  margin-inline: auto;
}

.features {
  padding-top: 120px;
  text-align: center;
}

.features .section-title {
  color: var(--royal-blue-dark);
  margin-bottom: 20px;
}

.features .section-text {
  color: var(--rythm);
  font-size: var(--fs-4);
  margin-bottom: 60px;
}

.features-item:first-child {
  margin-bottom: 100px;
}

.features-item-banner {
  max-width: 450px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.features-item-banner img {
  width: 100%;
}

.features-item .item-title {
  color: var(--royal-blue-dark);
  margin-bottom: 20px;
}

.features-item .item-text {
  color: var(--rythm);
  font-size: var(--fs-4);
}

.features_recurring {
  padding: 90px 0;
  text-align: center;
  padding-bottom: 0;
}

.contact {
  padding: 60px 0;
}

.contact {
  margin-bottom: 90px;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-title {
  color: var(--royal-blue-dark);
  margin-bottom: 60px;
  text-align: center;
  font-weight: var(--fw-500) !important;
}

.contact-banner img {
  width: 100%;
}

.input-wrapper {
  margin-bottom: 30px;
}

.input-label {
  color: var(--oxford-blue);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  margin-bottom: 10px;
}

.input-field {
  border-bottom: 1px solid var(--platinum);
  padding: 7px 0;
  font-size: var(--fs-6);
}

.input-field::placeholder {
  color: var(--silver-chalice);
}

textarea {
  max-height: 300px;
  min-height: 100px;
  height: 100px;
  resize: vertical;
}

.footer {
  padding: 20px 15px;
  background-color: black;
  display: flex;
}

.footer img {
  display: flex;
  width: 150px;
  height: auto;
}

.footer .copyright {
  color: var(--cool-gray);
  font-size: var(--fs-5);
  display: flex;
  align-items: center;
  margin-left: 35%;
}

.copyright a {
  display: flex;
  color: var(--cool-gray);
}

.copyright a:is(:hover, :focus) {
  color: var(--french-rose);
}

.logo img {
  max-width: 220px;
  width: 100%;
}

/*#RESPONSIVE*/

@media (max-width: 450px) {
  .lang-menu {
    width: 100px;
    text-align: right;
    font-weight: bold;
    position: relative;
  }

  .lang-menu .selected-lang {
    display: flex;
    justify-content: space-between;
    line-height: 1.3;
    cursor: pointer;
  }

  .prev {
    display: none;
  }

  .next {
    display: none;
  }
  .lang-menu .selected-lang:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("../images/turkey.png");
    background-size: contain;
    background-repeat: no-repeat;
  }

  .lang-menu ul {
    margin: -15px;
    padding: 0;
    display: none;
    background-color: #fff;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 45px;
    right: 0px;
    width: 125px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  }

  .lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
  }

  .lang-menu ul li a {
    text-decoration: none;
    width: 125px;
    padding: 5px 10px;
    display: block;
    align-items: center;
  }

  .lang-menu ul li:hover {
    background-color: #f2f2f2;
  }

  .lang-menu ul li a:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 7px;
  }

  .tr:before {
    background: url("../images/turkey.png");
  }

  .en:before {
    background: url("../images/united.png");
  }

  .lang-menu:hover ul {
    display: block;
  }

  .float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 38px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }
}

@media (min-width: 450px) {
  :root {
    /* typography*/
    --fs-1: 60px;
  }

  .lang-menu {
    width: 100px;
    text-align: right;
    font-weight: bold;
    position: relative;
  }

  .lang-menu .selected-lang {
    display: flex;
    justify-content: space-between;
    line-height: 1.3;
    cursor: pointer;
  }

  .lang-menu .selected-lang:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("../images/turkey.png");
    background-size: contain;
    background-repeat: no-repeat;
  }

  .lang-menu ul {
    margin: -15px;
    padding: 0;
    display: none;
    background-color: #fff;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 45px;
    right: 0px;
    width: 125px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  }

  .lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
  }

  .lang-menu ul li a {
    text-decoration: none;
    width: 125px;
    padding: 5px 10px;
    display: block;
    align-items: center;
  }

  .lang-menu ul li:hover {
    background-color: #f2f2f2;
  }

  .lang-menu ul li a:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 7px;
  }

  .tr:before {
    background: url("../images/turkey.png");
  }

  .en:before {
    background: url("../images/united.png");
  }

  .lang-menu:hover ul {
    display: block;
  }

  .float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }

  .my-float {
    margin-top: 16px;
  }

  .h1,
  .h2 {
    font-weight: var(--fw-700);
  }

  .btn {
    padding-block: 15px;
  }

  .hero {
    padding: 100px 0 160px;
  }

  .shape-content {
    top: -70px;
    right: -260px;
  }

  .about-card .card-title {
    padding-inline: 40px;
  }

  .about-bottom-banner {
    max-width: 400px;
    margin-inline: auto;
    margin-bottom: 40px;
  }

  .about-bottom-content {
    padding-inline: 50px;
  }

  .fa-circle:before {
    margin-right: 10px;
  }

  .features .h2 {
    --fs-2: 32px;
  }

  .contact-title {
    --fs-2: 32px;
  }

  .contact-banner {
    max-width: 330px;
    margin-inline: auto;
  }
}

@media (min-width: 560px) {
  .container {
    max-width: 550px;
    margin-inline: auto;
  }

  .hero-content {
    top: 0;
  }
  .hero-content,
  .about-bottom-content {
    text-align: left;
  }

  .hero .btn-primary,
  .about-bottom .btn-secondary {
    margin-inline: 0;
  }

  .shape-content {
    top: -156px;
    right: -152px;
  }
}

@media (min-width: 768px) {
  :root {
    --fs-2: 35px;
    --fs-4: 20px;
  }

  .container {
    max-width: 740px;
  }

  .about-list {
    grid-template-columns: 1fr 1fr;
  }

  .about-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-card .card-title {
    padding-inline: 0;
  }

  .contact-title {
    --fs-2: 42px;
  }
}

@media (max-width: 1024px) {
  .partner {
    width: 30% !important;
    margin-top: 10px !important;
    margin: auto;
  }

  .prev,
  .next {
    font-size: 78px !important;
  }

  .hero-content {
    text-align: center;
    margin-top: -20px;
  }

  .footer .copyright {
    color: var(--cool-gray);
    font-size: var(--fs-5);
    display: flex;
    align-items: center;
    margin-left: 15%;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 950px;
  }

  .navbar-menu-btn {
    display: none;
  }

  .navbar .btn-primary {
    display: block;
  }

  .hero-content {
    max-width: 550px;
  }

  @media (min-width: 1199px) {
    .lg\:-mt-3 {
      margin-top: -100px;
    }
  }

  .hero-banner {
    display: block;
    position: absolute;
    top: 0;
    transform: translateY(-45%);
    width: 450px;
    padding-top: 600px;
    background: url("../images/MessageGate18.png") no-repeat;
    animation: bounce 15s ease infinite;
  }

  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }

    40% {
      transform: translateY(-30px);
    }

    60% {
      transform: translateY(-15px);
    }
  }

  .about-top .section-text {
    max-width: 650px;
    margin-inline: auto;
  }

  .about-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .about-bottom-banner {
    margin-bottom: 0;
    height: 330px;
  }

  .about-bottom-content {
    padding-inline: 0;
    width: 50%;
  }

  .features :is(.section-title, .section-text) {
    max-width: 650px;
    margin-inline: auto;
  }

  .features-item {
    display: flex;
    align-items: center;
    gap: 50px;
  }

  .features-item-banner {
    margin-inline: 0;
    margin-bottom: 0;
  }

  .feature-item-content {
    width: 50%;
    text-align: left;
  }

  .features-item:last-child {
    flex-direction: row-reverse;
  }

  .features img {
    animation: bounce 12s ease infinite;
  }

  .contact .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  .contact-content {
    max-width: 400px;
  }

  .contact-title {
    text-align: left;
  }

  .contact-form {
    width: 50%;
  }
  @media (max-width: 1200px) {
    .hero-banner {
      right: 10px;
    }

    .hero-text {
      max-width: 500px;
    }
  }
  @media (min-width: 1200px) {
    :root {
      --fs-2: 42px;
    }

    .container {
      max-width: 1150px;
    }

    .hero-banner {
      right: 100px;
    }

    .about-bottom-banner {
      height: 400px;
    }

    .features .h2 {
      --fs-2: 42px;
    }

    .features :is(.section-title, .section-text) {
      max-width: 850px;
    }
  }

  .float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }

  .my-float {
    margin-top: 16px;
  }

  /* SLİDER CSS */
  .slideshow-container {
    max-width: 750px;
    position: relative;
    margin: auto;
  }

  .mySlides {
    display: none;
  }

  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
  }

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

  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active,
  .dot:hover {
    background-color: #717171;
  }

  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {
      opacity: 0.4;
    }

    to {
      opacity: 1;
    }
  }

  @import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css");

  .lang-menu {
    width: 100px;
    text-align: right;
    font-weight: bold;
    position: relative;
  }

  .lang-menu .selected-lang {
    display: flex;
    justify-content: space-between;
    line-height: 1.3;
    cursor: pointer;
  }

  .lang-menu .selected-lang:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("../images/turkey.png");
    background-size: contain;
    background-repeat: no-repeat;
  }

  .lang-menu ul {
    margin: -15px;
    padding: 0;
    display: none;
    background-color: #fff;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 45px;
    right: 0px;
    width: 125px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  }

  .lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
  }

  .lang-menu ul li a {
    text-decoration: none;
    width: 125px;
    padding: 5px 10px;
    display: block;
    align-items: center;
  }

  .lang-menu ul li:hover {
    background-color: #f2f2f2;
  }

  .lang-menu ul li a:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 7px;
  }

  .tr:before {
    background: url("../images/turkey.png");
  }

  .en:before {
    background: url("../images/united.png");
  }

  .lang-menu:hover ul {
    display: block;
  }

  .detay a {
    align-items: center;
    display: inline !important;
  }

  .detay {
    margin-bottom: 20px;
  }

  .partner {
    top: -300px !important;
    margin-top: -5px;
    margin-left: 200px;
  }

  .btn-primary {
    float: left !important;
  }
}
