@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

.r-bar {
    display: none;
}

.r-bar i {
    font-size: 2rem;
}

section {
    padding: 2rem 9%;
}

.logo img{
   height: 100px;
    
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 100px;
}

header nav ul{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
}

header nav ul li {
    margin-right: 60px;
}

header nav ul li a {
    font-size: 1.5rem;
    text-decoration: none;
    color: #539165;
    font-weight: bold;
}

nav ul li a:hover {
    border-bottom: 2px solid #3F497F;
}

.icons {
    font-size: 2rem;
    color: #3F497F;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    margin-left: 20px;
    align-items: center;
}

.icons i {
    margin-right: 20px;
    transition: all .5s;
}

.icons i:hover {
    color: #539165;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    background:linear-gradient(to top, rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(./images/bg.jpg);
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.content {
    font-weight: bold;
    width: 50%;
    text-align: center;
    position: absolute;
    top: 300px;
    left: 100px;
}

.content h1 {
    font-size: 4rem;
    color: #F55353;
}

.content p {
    color: #7A4069;
    font-size: 2rem;
}

.btn {
    font-size: 2rem!important;
}

.section-title {
    text-align: center;
    color: #539165;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about .row {
    display: flex;
    justify-content: center;
}

.row .column {
    flex: 1;
}

.row img {
    width: 100%;
    height: 70rem;
}

.row .column .column-1,
.row .column .column-2 {
    height: 100%;
}

.row .column-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem;
    background-color: #fff;
}

.accordionJS .accordionJS-title {
    margin-bottom: 30px;
    text-align: center;
}

.accordionJS .content-container .question {
    font-size: 18px;
    padding: 20px 0px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    position: relative;
}

.accordionJS .content-container .question::after {
    content: "+";

    position: absolute;
    right: -5px;
}

.accordionJS .content-container .answer {
    padding-top: 20px;
    font-size: 15px;
    line-height: 1.5;
    width: 100%;
    height: 0px;
    overflow: hidden;
    transition: .5s;
}

/* Javascript Kodları */

.accordionJS .content-container.active .answer {
    height: 150px;
}

.accordionJS .content-container.active .question {
    font-size: 18px;
    transition: .5s;
}

.accordionJS .content-container.active .question::after {
    content: "-";
    font-size: 30px;
    transition: .5s;
}

.services {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    background-color: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
    padding: 2rem;
}

.services div {
    width: 50%;
}

.services .fa-solid {
    color: #3FA796;
    font-size: 3rem;
    background-color: #7A4069;
    padding: 1rem;
    border-radius: 50%;
}

.product-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.product-box .product .card {
    flex: 1 1 20rem;
    width: 20rem;
    cursor: pointer;
    margin-right: 20px;
    margin-top: 20px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
    text-align: center;
}

.product-box .product .card img:hover {
    transform: scale(1.3);
}


.product-box .product .card .card-title {
    font-size: 3rem;
    text-align: center;
    margin-top: -20px;
}

.product-icon {
    font-size: 2rem;
    color: #3F497F;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 10px;
}

.product-icon i:hover {
    color: #539165;
}

.product-box .product {
    display: flex;
    flex-wrap: wrap;
}

.rew {
    display: flex;
    position: relative;
    margin-top: 20px;
}

.rew .person img {
    width: 100%;
    height: 80vh;
    border-radius: 50%;
}

.exp {
    position: absolute;
    top: 30%;
}

.exp p {
    font-size: 3rem;
    text-align: center;
}

.contact .row {
    display: flex;
    justify-content: center;
    
}

.contact .row .column-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem;
    background-color:rgba(176, 105, 154,0.3);
}

.contact-form {
    width: 100%;
    font-size: 2rem;
    padding: 2rem 0;
}

.contact-form label {
    display: block;
    margin-bottom: .5rem;
}

.contact-form .form {
    margin-bottom: 1.5rem;
}

.form input {
    border-radius: .5rem;
    width: 100%;
    padding: 5px;
    height: 40px;
    border: 1px solid #f5f5f5;
}

.contact-form .btn {
    margin-top: 20px;
}

.contact h2 {
    font-size: 4rem;
}

.main-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem;
    background-color: #3FA796;
}

.social {
    font-size: 3rem;
}

.main-footer a {
    color: #D61C4E;
}

.main-footer a:hover {
    opacity: .7;
}

@media (max-width:991px) {
    html {
        font-size: 8px;
    }

    

}

@media (max-width:768px) {
    .r-bar {
        display: block;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #eee;
        border-top: .1rem solid rgba(0,0,0,0.1);
    }

    header nav ul {
        display: block;
    }

    header nav ul li {
        display: block;
    }

    header nav ul li a {
        padding: 1.5rem;
        background: #fff;
        border:.1rem solid rgba(0,0,0,0.1);
        display: block;
    }

    .product-box .product .card {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .about .row {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .services {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .contact .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width:733px) { 

}   





