:root {
    --blue: #155dfc;
    --black: #111;
}

html{
    scroll-behavior: smooth;
    font-display: swap;
}

* {
    box-sizing: border-box;
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    font-weight: 500;
    color: var(--black);
    font-size: 18px;
    font-family: "Inter", sans-serif;
    cursor: default;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    overflow-x: hidden;
    background-color: #f6f6f6;
}

.hero-bg {
  background-image: url("/images/bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  left: 0;
  background-color: #f6f6f6;
  width: 100%;
  height: 800px; /* Görsel yüksekliği burada sabitlenir */
  z-index: -2;
}

.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--blue);
  opacity: 0.3;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.cursor-hovered {
  width: 50px;
  height: 50px;
}


.header-top{
    width: 100%;
    padding: 20px;
    position: relative;
    align-items: center;
    text-align: center;
    color: white;
    background-image: url(images/bluebg.webp);
    background-color: var(--blue);
    background-position: center;
    background-size: cover;
}

header {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
.header-left {
    width: 20%;
    height: 100%;
}

.header-left img {
    width: 100%;
    max-width: 200px;
    height: 100%;
    object-fit: contain;
    transition-duration: 0.3s;
}

.header-left img:hover {
    opacity: 0.5;
}

.header-mid {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-mid a {
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-mid a::after {
    content: "";
    width: 0;
    background-color: #ccc;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition-duration: 0.3s;
}

.header-mid a:hover::after {
    width: 100%;
}

.header-right {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.blue-button {
    background-color: oklch(.546 .245 262.881);
    color: white;
    border-radius: 500px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    transition-duration: 0.3s;
    background-image: url(images/bluebg.webp);
    background-position: center;
    background-size: 500%;
}

a.button {
    background-color: var(--black);
    color: white;
    border-radius: 500px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    transition-duration: 0.3s;
    height: 45px;
    overflow: hidden;
}

a.white-button {
    color: white;
    background-color: #0fc96b;
    border-radius: 500px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 45px;
    overflow: hidden;
}

a.white-button i{
    color: white;
    font-size: 30px;
}

a.button:hover {
    opacity: 0.5;
}

a.blue-button:hover {
    background-size: 100%;
}

a.white-button:hover {
    opacity: 0.5;
}

h1,
h2 {
    font-family: "Lexend", serif;
}

h1 strong,
h2 strong {
    font-family: "Lexend", serif;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.hero-section {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
    gap: 20px;
}

.hero-section h1 {
    font-size: 64px;
    line-height: 50px;
    text-align: center;
    max-width: 800px;
    padding-bottom: 10px;
}

.hero-section div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-section h1 strong {
    font-size: 64px;
    line-height: 50px;
    color: var(--blue);
}

.hero-section h1 span {
    position: relative;
}

.hero-section p {
    color: #666;
    max-width: 550px;
    line-height: 30px;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
}

.hero-section .info{
    color: #666;
    max-width: 550px;
    line-height: 13px;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: color 0.3s;
}

.hero-section .info:hover{
    color: #111;
}

.fill-blue-300\/70 {
    fill: var(--blue);
    opacity: 0.3;
    position: absolute;
    left: -5%;
    z-index: -1;
    height: 1.5rem;
    width: 110%;
    top: 50%;
}
.trustedby {
    padding-top: 70px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
    overflow: hidden; /* önemli */
}

.trustedby h3 {
    color: #333;
}

.slider-track {
    display: flex;
    gap: 30px;
    animation: scroll-left 40s linear infinite;
    width: max-content;
}

.trustedby img {
    height: 400px;
    width: auto;
    flex: 0 0 auto;
    border-radius: 10px;
    user-select: none;
    -webkit-user-drag: none;
    object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.1));
}

/* Scroll animasyonu */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}



section.blue{
    width: 100%;
    padding: 100px;
    position: relative;
    align-items: center;
    text-align: center;
    color: white;
    background-image: url(images/bluebg.webp);
    background-position: center;
    background-size: cover;
    margin-top: 0px !important;
}

section.blue h1{
    color: white;
}

section.blue p{
    color: white;
    font-weight: 300;
    margin-top: 50px;
    white-space: pre-line;
}

section{
    margin-top: 100px;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

section h1{
    font-size: 40px;
}

.asamalar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.asama{
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.asama:hover {
  transform: scale(1.02);
}

.asama span{
    margin-top: 10px;
}

.asama div{
    background-color: var(--blue);
    border-radius: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-width: 40px;
    color: white;
    font-weight: 700;
}

.asama p{
    color: #666;
    font-size: 20px;
    margin-top: 10px;
}

.asama h1{
    font-size: 25px;
    margin-top: 10px;
    text-align: left;
}

.container {
    width: 100%;
}

h1 {
    text-align: center;
}

.hizmetler{
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    margin-top: 50px;
}

.hizmet{
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: transform 0.3s ease;
    width: 400px;
}

.hizmet box-icon{
    width: 120px;
    height: 120px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d4e6ff;
    border-radius: 50%;
}

.hizmet h2{
    font-size: 30px;
}

.hizmet p{
    font-size: 18px;
    font-weight: 400;
    color: #444;
}

.hizmet:hover {
  transform: translateY(-10px);
}

.faq{
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-left: 30px;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: border-color 0.3s;
    border: 2px solid white;
}

.faq:hover{
    border-color: #ccc;
}

.faq-title{
    font-weight: 600;
    font-size: 20px;
}

.faq p{
    margin-top: 20px;
    font-weight: 400;
    color: #444;
    font-size: 15px;
    display: none;
}

.projeler{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    margin-top: 50px;
}

.proje{
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue);
    overflow: hidden;
    border-radius: 10px;
}

.proje p{
    color: white;
    font-weight: 600;
    opacity: 0;
    transition-duration: 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.proje img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    transition-duration: 0.3s;
}

.proje:hover img{
    opacity: 0.3;
}

.proje:hover p{
    opacity: 1;
}

.bloglar{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    margin-top: 50px;
}

.blog{
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.blog img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.blogimage{
    width: 80%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.blog h2{
    font-size: 25px;
}

.blog p{
    color: #444;
    font-weight: 400;
}

.hakkimizda{
    width: 80%;
    white-space: pre-line;
    text-align:center;
    line-height: 25px;
    margin-top: 20px;
}

.hakkimizda b{
    color: var(--blue);
}

.hakkimizda a{
    text-decoration: underline;
    color: var(--blue);
}

.menu-button{
    display: none;
    height: 50px;
    width: 50px;
    cursor: pointer;
}

.navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: right 0.3s ease-in-out;
    padding-top: 60px;
    z-index: 100;
}

.navbar.active {
    right: 0;
}

.navbar a {
    display: block;
    color: #111;
    text-decoration: none;
    padding: 15px;
    font-size: 18px;
    transition: background 0.3s;
}

.navbar a:hover {
    background: #f6f6f6;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #111;
    border: none;
    background: none;
    font-size: 40px;
    cursor: pointer;
    border-radius: 50%;
}

.whatsappicon{
    position: fixed;
    right: 90px;
    bottom: 20px;
    width: 60px;
    height: 60px;
}

.whatsappicon img{
    width: 100%;
    height: 100%;
}

.rakam{
    width: 300px;
    height: 150px;
}

.rakam {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  transition: transform 0.3s ease;
}

.rakam:hover {
  transform: translateY(-5px);
}

.rakam h5 {
  color: #155dfc;
  font-family: "Lexend", sans-serif;
  font-size: 56px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -1px;
}

.rakam p {
  color: #222;
  opacity: 0.65;
  font-size: 22px;
  font-weight: 600;
  margin-top: 6px;
  font-family: "Inter", sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


footer{
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
    justify-content: space-between;
    background-color: white;
}

footer img{
    width: 200px;
}

.footer-left{
    width: 45%;
}

.footer-right{
    width: 50%;
    display: flex;
    justify-content: space-between;
    padding-right: 5%;
}

.footer-right div{
    display: flex;
    flex-direction: column;
}

footer h6{
    font-weight: 600;
}

footer a,p{
    font-weight: 400;
    color: #555;
    transition-duration: 0.3s;
    margin-top: 5px;
    font-size: 15px;
}

footer a:hover{
    color: #111;
}

.footer-bottom{
    width: 100%;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 40px;
}

/* Arka plan karartma */
.form-popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Form kutusu */
.form-popup-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Kapat (X) butonu */
.form-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 18px;
  cursor: pointer;
  color: #555;
}

/* Başlık */
.form-popup-box h2 {
  margin-top: 0;
  color: #111;
}

/* Giriş alanları */
.form-popup-box input,
.form-popup-box textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

/* Gönder butonu */
.form-popup-box button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #0f62fe;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Tam ekran beyaz arka plan */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  display: none;
}

/* Yükleme animasyonu */
.loader {
  width: 45px;
  height: 40px;
  background: 
    linear-gradient(#0000 calc(1*100%/6),#111 0 calc(3*100%/6),#0000 0),
    linear-gradient(#0000 calc(2*100%/6),#111 0 calc(4*100%/6),#0000 0),
    linear-gradient(#0000 calc(3*100%/6),#111 0 calc(5*100%/6),#0000 0);
  background-size: 10px 400%;
  background-repeat: no-repeat;
  animation: matrix 1s infinite linear;
  display: none;
}

@keyframes matrix {
  0% {
    background-position: 0% 100%, 50% 100%, 100% 100%;
  }
  100% {
    background-position: 0% 0%, 50% 0%, 100% 0%;
  }
}


@media (max-width: 1500px) {
    .hero-section {
        width: 95%;
    }
    .hero-section div{
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    section{
        width: 90%;
    }
    .projeler{
        width: 90%;
        grid-template-columns: repeat(2, 1fr);
    }
    .bloglar{
        width: 90%;
    }
    .lottie{
        display: none;
    }
    .hero-section h1{
        text-align: center;
    }
    .hero-section p{
        text-align: center;
    }
    .menu-button{
        display: flex;
    }
    footer{
        flex-direction: column;
    }
    .footer-left{
        width: 100%;
    }
    .footer-right{
        width: 100%;
        margin-top: 50px;
        flex-direction: column;
        gap: 20px;
    }
    .header-top{
        font-size: 15px;
    }
    header{
        padding-left: 5%;
        padding-right: 5%;
    }
    .header-left{
        width: 50%;
    }
    .header-mid{
        display: none;
    }
    .header-right{
        display: none;
    }
}

@media (max-width: 900px) {
    header{
        padding-left: 2%;
        padding-right: 1%;
    }
    .bloglar{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .hizmetler{
        flex-wrap: wrap;
    }
    .asama{
        width: 100%;
        margin-bottom: 20px;
    }
    .hero-section h1{
        font-size: 30px;
        line-height: 30px;
    }
    .hero-section h1 strong{
        font-size: 30px;
        line-height: 30px;
    }
    .hero-section{
        gap: 10px;
    }
    .hero-section p{
        font-size: 15px;
        line-height: 20px;
    }
    .projeler{
        grid-template-columns: repeat(1, 1fr);
    }
    .proje{
        height: 220px;
    }
    .proje img{
        height: 220px;
    }
    .bloglar{
        grid-template-columns: repeat(1, 1fr);
    }
    section.blue{
        padding: 20px;
    }
}


@media (max-width: 500px) {
    footer{
        margin: 10px;
        margin-top: 50px;
        width: calc(100% - 20px);
        padding: 30px;
    }
    .rakam{
        width: 150px;
        height: 50px;
    }
    .rakam h5{
        font-size: 25px;
    }
    .rakam p{
        font-size: 15px;
    }
}

/*  Plans  */


.hero-section h2 strong {
    font-size: 44px;
    color: oklch(.546 .245 262.881);
}

.plans {
    display: flex;
    margin-top: 50px;
    gap: 1px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    background-color: #ccc;
    flex-wrap: nowrap;
    border-radius: 10px;
}

.plan {
    width: 290px;
    padding: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.plan-mid{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 4px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 32px;
    padding-bottom: 18px;
}

.plan-top {
    width: 100%;
    border-radius: 10px;
    background-color: rgb(247, 247, 248);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 40px;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

.plan-top .most2{
    border: 1px solid oklch(.546 .245 262.881);
    background-color: white;
    color: oklch(.546 .245 262.881);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    width: 200px;
    text-align: center;
    position: absolute;
    top: -15px;
    z-index: 100;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-top.most{
    background-color: oklch(.546 .245 262.881);
    background: linear-gradient(-45deg, rgb(255, 255, 255), rgb(76, 79, 255), oklch(.546 .245 262.881)) 0% 0% / 200% 200%;
    color: white;
}

.plan-top:hover {
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal;
    transition-duration: 300ms;
    background: linear-gradient(-30deg, rgb(247, 247, 248), rgb(250, 250, 250), #ccc) 0% 0% / 400% 400%;
    animation: 4s ease 0s infinite normal none running gradient;
}

@keyframes gradient {
    0% {
        background-position: 50% 50%;
    }

    25% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes gradient2 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.plan-top h3 {
    font-size: 25px;
    font-weight: 500;
    color: #555;
    transition-duration: 0.3s;
}

.plan-top h3.premium {
    color: white;
}

.plan-top section {
    background-color: oklch(.546 .245 262.881);
    padding: 2px;
    width: 90%;
    border-radius: 500px;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition-duration: 0.3s;
    color: white;
}

.plan-top a.premium {
    color: #111;
}

.plan-top h5.premium {
    color: white;
}

.plan-top h2.premium {
    color: white;
}

.plan-top span.premium {
    color: #ccc;
}

.plan-to.most a {
    color: #111;
}

.plan-top.most h5 {
    color: white;
}

.plan-top.most h2 {
    color: white;
}

.plan-top.most h3 {
    color: white;
}

.plan-top.most span {
    color: #ccc;
}

.plan-top h2 {
    font-size: 40px;
    position: relative;
    font-weight: 400;
}

.plan-top h5 {
    position: relative;
    color: #555;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
}


.plan-top span {
    position: absolute;
    right: -20px;
    top: 0px;
    display: flex;
    font-weight: 300;
    color: #555;
    font-size: 10px;
}

.plan p {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    padding-right: 20px;
    padding-left: 20px;
}

.plan b {
    font-size: 12px;
    font-weight: 600;
}

.plan box-icon {
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    line-height: 0;
}

.contains h6 {
    text-align: center;
    font-size: 16px;
    width: 100%;
}

.contains {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.contain {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition-duration: 0.3s;
}


.contain:hover {
    transform: scale(1.1);
}

.contain p {
    color: #111;
    font-weight: 400;
    line-height: 18px;
    font-size: 14px;
    font-family: "Plus Jakarta Sans", serif;
}

.contain h2 {
    line-height: 18px;
    font-size: 14px;
    color: #111;
}

.contain box-icon {
    height: 25px;
    width: 30px;
}

.plan-top.premium {
    display: flex;
    flex-direction: column;
    background: linear-gradient(-30deg, rgb(255, 255, 255), #340f49, #111) 0% 0% / 200% 200%;
    overflow: hidden;
}

.plan-top.premium section {
    background-color: white;
    color: #111;
}

.plan-top.most section {
    background-color: white;
    color: oklch(.546 .245 262.881);
}

.plan-top.premium:hover{
    background: linear-gradient(-30deg, rgb(255, 255, 255), #6e09a8, #111111) 0% 0% / 200% 200%;
    animation: none;
}

.plan-top.most:hover{
    background: linear-gradient(-45deg, rgb(255, 255, 255), rgb(45, 48, 224), oklch(.546 .245 262.881)) 0% 0% / 200% 200%;
    animation: none;
}

.premium-bg {
    display: flex;
    flex-direction: column;
    background-color: black;
    background-image: radial-gradient(at 88% 40%,
            hsla(240, 15%, 9%, 1) 0px,
            transparent 85%),
        radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
        radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
        radial-gradient(at 0% 64%, hsla(263, 93%, 56%, 1) 0px, transparent 85%),
        radial-gradient(at 41% 94%, hsla(284, 100%, 84%, 1) 0px, transparent 85%),
        radial-gradient(at 100% 99%, hsla(306, 100%, 57%, 1) 0px, transparent 85%);
    width: 100%;
    top: 0;
    left: 0px;
    height: 550px;
    position: absolute;
    z-index: -1;
}

.premium-logo-image {
    width: 200px;
    filter: brightness(100);
}

@media only screen and (max-width: 1460px) {
    .plans{
        width: 100%;
    }
}
@media only screen and (max-width: 450px) {
    .plan{
        width: 100%;
    }
    .plan-mid{
        width: 90%;
    }
}