@charset "UTF-8"; /*!
 * HelioCodeDesign (https://heliocode.com.tr/)(https://heliocodedesign.com/)
 * Copyright 2024-2025 The HelioCodeDesign authors. All Rights Reserved
 * Licensed under MIT (https://www.linkedin.com/in/toprak-%C3%B6zkale)
 * Code by Mefamex, on October 2024 , for HelioCodeDesign community
 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap");

* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s ease;
}

html {
    font-size: 62.5%;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: 0.8rem;
    background-color: rgb(20, 60, 60);
}

html::-webkit-scrollbar-thumb {
    width: 0.8rem;
    background: linear-gradient(to bottom, rgb(0, 204, 204), rgb(255, 153, 153));
    border-radius: 3rem;
}

html::-webkit-scrollbar-track {
    width: 0.8rem;
    background-color: rgb(20, 60, 60);
    border-radius: 3rem;
}

body {
    background-color: black;
    overflow-y: scroll;
    overflow-x: hidden;
}

.OrangeD {
    color: rgb(255, 153, 153);
}

.heliocodesign {
    transform: translateY(-1.3vw) translateX(-1.1vw);
    font-size: 0.5em;
    align-self: end;
    padding-bottom: 0.4vw;
    font-family: "Dancing Script", cursive;
}

/* HEADER BAŞLANGIÇ */

.header {
    opacity: 0.8;
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: 9dvw;
    position: sticky;
    top: 0px;
    height: 4.1dvw;
    z-index: 1000;
}

.header .logo {
    display: flex;
    flex: 1;
    align-items: center;
}

.header > .logo > img {
    height: 3dvw;
}

header > a > label1 {
    font-size: 2.3dvw;
    margin-left: 1.5dvw;
    color: rgb(222, 219, 218);
    display: flex;
}

.header .navbar {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    height: 75%;
}

.header .navbar a {
    margin-block: auto;
    padding-inline: 0.8dvw;
    padding-block: 0.3dvw;
    font-size: 1.5dvw;
    margin-left: 5dvw;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    border-radius: 0;
    transition: 0.5s;
}

.header .navbar a:hover {
    background-color: rgb(20, 60, 60);
    border-radius: 2dvw;
    scale: 1.1;
    color: rgb(0, 204, 204);
}

/*!Home başlangıç*/

.home {
    display: flex;
    flex-direction: row;
}

.home img {
    height: 93vh;
    margin-right: 9vw;
    margin-left: auto;
    object-fit: contain;
    object-position: right;
}

.home .content {
    display: flex;
    flex-direction: column;
    height: 96dvh;
    width: max-content;
    align-items: flex-start;
    text-align: center;
    justify-content: center;
}

.home .content h1 {
    text-align: start;
    padding-left: 9.5vw;
    white-space: wrap;
    font-weight: 630;
}

.home .content :nth-child(1) {
    font-size: 2vw;
    color: rgb(222, 219, 218);
}

.home .content :nth-child(2) {
    font-size: 2.5vw;
    background: linear-gradient(to right, rgb(0, 204, 204), rgb(255, 153, 153));
    background-clip: text;
    color: transparent;
}

/*!Home bitiş*/

/*!Blogs başlangıç*/

.blogs {
    margin-left: 8.5vw;
    margin-right: 8.5vw;
    margin-top: 12vw;
}

.blogs .box-container {
    display: flex;
    justify-content: flex-start;
}

.blogs .box-container .box {
    flex: 1;
    padding-inline: 1.5dvw;
    padding-top: 2dvw;
    padding-bottom: 2dvw;
    background-color: rgba(196, 196, 196, 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-radius: 2dvw;
    text-align: center;
    margin-inline: 1.5dvw;
    transition: all 0.3s ease-in-out;
    border: 0.1dvw solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.blogs .box-container .box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0.2dvw;
    background: linear-gradient(to right, rgb(0, 204, 204), rgb(255, 153, 153));
    transition: all 0.3s ease-in-out;
}

.blogs .box-container .box:hover::before {
    width: 80%;
    left: 10%;
}

.blogs .box-container .box:hover {
    transform: translateY(-0.5dvw) scale(1.02);
    border: 0.1dvw solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blogs .box-container .box:hover h3 {
    height: min-content;
    background: linear-gradient(to right, rgb(0, 204, 204), rgb(255, 153, 153));
    background-clip: text;
    color: transparent;
}

.blogs .box-container .box:hover .aciklama {
    display: block;
}

.blogs .box-container .box:hover .btn {
    display: none;
}

.blogs .box-container .box img {
    width: 14dvw;
    margin-bottom: 2dvw;
    object-fit: contain;
    border-radius: 1.5dvw;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blogs .box-container .box .blogs-category {
    font-size: 1dvw;
    margin-block: 0.5dvw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9dvw;
    color: rgb(222, 219, 218);
    opacity: 0.8;
}

.blogs .box-container .box h3 {
    font-size: 2.5dvw;
    margin-block: 0.5dvw;
    height: 8dvw;
    color: rgb(222, 219, 218);
    font-weight: 600;
}

.blogs .box-container .box .aciklama {
    width: 100%;
    font-size: 1dvw;
    overflow-wrap: break-word;
    display: none;
    color: azure;
    padding-block: 1.5dvw;
    text-align: start;
    opacity: 0.9;
}

.blogs .box-container .box .btn {
    display: block;
    font-size: 1.3dvw;
    padding-block: 1dvw;
    border-radius: 3dvw;
    color: white;
    background: linear-gradient(to right, rgb(0, 204, 204), rgb(255, 153, 153));
    cursor: pointer;
    margin-bottom: 2dvw;
    margin-inline: 3dvw;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.blogs .box-container .box .btn:hover {
    background: linear-gradient(to left, rgb(0, 204, 204), rgb(255, 153, 153));
    transform: scale(1.05);
}

/*!Blogs bitiş*/

/* ABOUT başlangıç  */
.about {
    display: flex;
    flex-direction: row;
    margin-top: 10dvw;
    padding-inline: 10dvw;
    color: rgb(222, 219, 218);
}

.about .aboutText {
    display: flex;
    flex-direction: column;
}

.about .aboutText .aboutHead {
    font-size: 7dvw;
}

.about .aboutText .aboutHead .hellooo {
    font-size: 0.7em;
}

.about .aboutText .aboutHead .heliocode {
    background: linear-gradient(to right, rgb(0, 204, 204), rgb(255, 153, 153));
    background-clip: text;
    color: transparent;
    font-size: 6vw;
}

.about .aboutText .aboutPrgf {
    margin-top: 2dvw;
    font-size: 1.5dvw;
    width: 80%;
}

.about img {
    width: 30dvw;
    border-radius: 1.5dvw;
}

/* ABOUT bitiş  */

/* TEAM BAŞLANGIÇ */
.team {
    margin: 10dvw 8.5vw;
    padding-bottom: 5dvw;
}

.team .box-container {
    display: flex;
    justify-content: center;
}

.team .box-container .box {
    flex: 1;
    padding: 2dvw;
    background-color: rgba(196, 196, 196, 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-radius: 2dvw;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 0.1dvw solid rgba(255, 255, 255, 0.2);
    max-width: 90dvw;
    overflow: hidden;
}

.team .box-container .box:hover {
    transform: translateY(-0.5dvw) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team .sub-box-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2dvw;
    padding: 2dvw;
}

.team .sub-box {
    flex: 1 1 18%;
    min-width: 15dvw;
    text-align: center;
    padding: 1dvw;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1.5dvw;
    transition: all 0.3s ease-in-out;
}

.team .sub-box img {
    width: 100%;
    height: auto;
    border-radius: 1dvw;
    object-fit: cover;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.team .sub-box .title {
    font-size: 1.2dvw;
    margin-top: 1dvw;
    color: rgb(222, 219, 218);
    font-weight: 600;
}

.team .sub-box .name {
    font-size: 1dvw;
    color: rgb(222, 219, 218);
    opacity: 0.9;
}

.team .sub-box:hover {
    transform: translateY(-0.3dvw) scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
}

/* TEAM BİTİŞ */

/* contact başlangıç */

.contact {
    background-color: white;
    padding-inline: 0;
    width: 100dvw;
    margin-top: 10dvw;
    min-height: 33dvw;
    height: fit-content;
    padding-top: 7dvw;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.contact > .contact-conts {
    display: flex;
    flex-direction: row;
}

.contact .conts {
    height: fit-content;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.contact #contact-conts1 {
    width: fit-content;
    margin-left: 10vw;
}

.contact #contact-conts1 .head {
    font-size: 2.2dvw;
    font-weight: bold;
}

.contact #contact-conts1 #e-mail {
    margin-top: 3dvw;
    font-size: 2dvw;
    color: black;
    text-decoration: underline;
    display: inline-block;
    width: fit-content;
}

.contact .bottoms {
    margin-top: 9vw;
    padding-bottom: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact .bottoms .socials {
    font-size: 3dvw;
}

.contact span {
    color: black;
}

.contact .bottoms .socials .cizgi {
    border-top: 0.1dvw solid black;
    width: 28.3dvw;
    height: 1dvw;
    display: inline-block;
}

.contact .bottoms .socials .fab {
    margin-inline: 2dvw;
    opacity: 0.8;
}

.contact .bottoms .footerText {
    margin-top: 1dvw;
    font-size: 1.1dvw;
}

/* Responsive başlangıç */

/* Mobil (800px ve altı) */
@media only screen and (max-width: 800px) {
    .heliocodesign {
        transform: translateY(-3.3vw) translateX(-2.6vw);
        font-size: 0.5em;
        align-self: end;
        padding-bottom: 0.4vw;
    }

    .header {
        height: 9.2dvw;
        padding-inline: 1dvw;
    }

    .header .logo {
        justify-content: center;
    }

    header > a > label1 {
        font-size: 5.2dvw;
    }

    .header .navbar {
        display: none;
    }

    .home {
        flex-direction: column;
    }

    .home .content {
        padding-top: 4vw;
        height: fit-content;
        width: 100%;
    }

    .home .content h1 {
        margin-inline: auto !important;
        padding-left: 0px !important;
    }

    .home .content :nth-child(1) {
        font-size: 5vw !important;
    }

    .home .content :nth-child(2) {
        font-size: 6vw !important;
    }

    .home img {
        margin-inline: auto;
        margin-top: 5vw;
        object-fit: cover;
        height: auto;
        width: 91.5vw;
        object-position: center;
    }

    .blogs {
        margin-inline: 3dvw;
    }

    .blogs .box-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3dvw;
    }

    .blogs .box-container .box {
        width: auto;
        margin-inline: auto;
        border-radius: 3dvw;
        padding-inline: 2dvw;
    }

    .blogs .box-container .box img {
        width: 40vw;
        border-radius: 2dvw;
    }

    .blogs .box-container .box h3 {
        font-size: 5dvw;
    }

    .blogs .box-container .box .aciklama {
        font-size: 2dvw;
        padding-left: 5vw;
    }

    .blogs .box-container .box .btn {
        font-size: 2dvw;
        border-radius: 5dvw;
    }

    .about {
        flex-direction: column-reverse;
        padding-inline: 2vw;
        align-items: center;
        margin-top: 10dvw;
    }

    .about .aboutText {
        width: 90vw;
        display: flex;
        flex-direction: column;
        
    }

    .about .aboutText .aboutHead .hellooo {
        font-size: 7vw;
    }

    .about .aboutText .aboutHead .heliocode {
        
        font-size: 8.5vw;
    }

    .about .aboutText .aboutPrgf {
        font-size: 5vw;
        width: 100%;
    }

    .about .aboutImage {
        align-items: center;
        justify-content: center;
        margin-inline: auto;
        width: fit-content;
        height: fit-content;
        
        margin: 0;
    }

    .about .aboutImage img {
        height: 90vw;
        border-radius: 1.5dvw;
        width: auto;
    }

    .team {
        margin: 5dvw 3dvw;
    }

    .team .box-container .box {
        padding: 1dvw;
        max-width: 100%;
    }

    .team .sub-box-container {
        flex-direction: column;
        gap: 5dvw;
    }

    .team .sub-box {
        min-width: 100%;
    }

    .team .sub-box img {
        width: 80%;
        height: 100dvw;
    }

    .team .sub-box .title {
        font-size: 5dvw;
    }

    .team .sub-box .name {
        font-size: 4dvw;
    }

    .contact #contact-conts1 {
        margin-left: 5vw;
    }

    .contact #contact-conts1 .head {
        font-size: 4vw;
    }

    .contact #contact-conts1 #e-mail {
        font-size: 4vw;
    }

    .contact .bottoms {
        margin-top: 10vw;
    }

    .contact .bottoms .socials {
        font-size: 8vw;
    }

    .contact .bottoms .cizgi {
        width: 23.5vw !important;
        height: 2vw !important;
    }

    .contact .bottoms .footerText {
        margin-top: 2vw;
        font-size: 2vw;
    }
}

/* Tablet (800px ile 1000px arası) */
@media only screen and (min-width: 801px) and (max-width: 1000px) {
    .heliocodesign {
        transform: translateY(-2vw) translateX(-1.5vw);
        font-size: 0.5em;
        padding-bottom: 0.4vw;
    }

    .header {
        height: 6dvw;
        padding-inline: 2dvw;
    }

    .header .logo {
        justify-content: flex-start;
    }

    header > a > label1 {
        font-size: 3.5dvw;
    }

    .header .navbar {
        display: flex;
    }

    .header .navbar a {
        font-size: 2dvw;
        margin-left: 3dvw;
    }

    .home {
        flex-direction: row;
        align-items: center;
    }

    .home .content {
        height: 96dvh;
        width: 50%;
    }

    .home .content h1 {
        padding-left: 5vw;
    }

    .home .content :nth-child(1) {
        font-size: 2.5vw;
    }

    .home .content :nth-child(2) {
        font-size: 3vw;
    }

    .home img {
        margin-right: 2vw;
        height: 80vh;
        width: 50%;
        object-fit: contain;
    }

    .blogs {
        margin-inline: 5dvw;
    }

    .blogs .box-container {
        display: flex;
        flex-wrap: wrap;
        gap: 2dvw;
    }

    .blogs .box-container .box {
        flex: 1 1 45%;
        margin-inline: 0.5dvw;
        border-radius: 3dvw;
        padding-inline: 2dvw;
    }

    .blogs .box-container .box img {
        width: 100%;
        border-radius: 2dvw;
    }

    .blogs .box-container .box h3 {
        font-size: 3dvw;
    }

    .blogs .box-container .box .aciklama {
        font-size: 1.5dvw;
    }

    .blogs .box-container .box .btn {
        font-size: 1.8dvw;
        border-radius: 5dvw;
    }

    .about {
        flex-direction: row;
        padding-inline: 5dvw;
    }

    .about .aboutText {
        width: 60%;
    }

    .about .aboutText .aboutHead .hellooo {
        font-size: 5vw;
    }

    .about .aboutText .aboutHead .heliocode {
        font-size: 6vw;
    }

    .about .aboutText .aboutPrgf {
        font-size: 2dvw;
        width: 100%;
    }

    .about img {
        width: 40dvw;
    }

    .team {
        margin: 5dvw 5dvw;
    }

    .team .box-container .box {
        padding: 1.5dvw;
    }

    .team .sub-box-container {
        flex-wrap: wrap;
        gap: 2dvw;
    }

    .team .sub-box {
        flex: 1 1 30%;
        min-width: 20dvw;
    }

    .team .sub-box .title {
        font-size: 1.5dvw;
    }

    .team .sub-box .name {
        font-size: 1.2dvw;
    }

    .contact #contact-conts1 {
        margin-left: 8vw;
    }

    .contact #contact-conts1 .head {
        font-size: 3dvw;
    }

    .contact #contact-conts1 #e-mail {
        font-size: 2.5dvw;
    }

    .contact .bottoms {
        margin-top: 8vw;
    }

    .contact .bottoms .socials {
        font-size: 5vw;
    }

    .contact .bottoms .cizgi {
        width: 25vw;
        height: 1.5vw;
    }

    .contact .bottoms .footerText {
        font-size: 1.5dvw;
    }
}