@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}
html{
    scroll-behavior: smooth;
}
.mb30{
    margin-bottom: 30px !important;
}
.display-flex{
    display: flex;
    justify-content: space-around;
}
section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: flex-start;
    align-items:center;
    overflow-x:hidden;
}
.section-header{
    margin-bottom: 10px;
    color: #333;
}
.section-flex{
    flex-direction: column;
    padding: 40px 100px;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
header .logo{
    position: relative;
    color: #ff9800;
    display: inline-block;
    font-size: 2em;
    text-decoration: none;
    font-weight: 800;
    opacity: 0;
    animation: slide_left 0.5s linear forwards;
    animation-delay: 0.2s;
}
header ul{
    position: relative;
    display: flex;
}
header ul li{
    list-style: none;
}
header ul li a{
    display: inline-block;
    color: #ff9800;
    font-weight: 600;
    font-size: 1.1em;
    margin-left: 10px;
    padding: 8px 18px;
    text-decoration: none;
    user-select: none;
    opacity: 0;
    animation: slide_top 0.5s linear forwards;
    animation-delay: calc(0.2s * var(--i));
}
header ul li a.active, header ul li a:hover {
    background-color: #b3b1d8;
    color: #fff;
    border-radius: 30px;
}
header.sticky{
    background: #fff;
    padding: 10px 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.content{
    position: relative;
    display: flex;
}
.content .textBox{
    position: relative;
    max-width: 550px;
}
.content .textBox h2{
    color: #ff9800;
    font-size: 3.5em;
    margin-bottom: 10px;
    line-height: 1.2em;
    font-weight: 700;
    opacity: 0;
    animation: slide_right 0.5s linear forwards;
    animation-delay: 1.5s;
}
.content .textBox p{
    font-size: 1.2em;
    color: #333;
    opacity: 0;
    animation: slide_left 0.5s linear forwards;
    animation-delay: 1.75s;
}
.content .textBox a{
    display: inline-block;
    margin-top:20px;
    padding: 10px 20px;
    background: #ff9800;
    color: #fff;
    font-size: 1em;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0;
    animation: slide_top 0.5s linear forwards;
    animation-delay: 2s;
    transition: .5s;
}
.content .textBox a:hover{
    background: #b3b1d8;
    transition: .5s;
}
.sci{
    position: absolute;
    bottom:40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sci li{
    list-style: none;
}
.sci li a{
    display: flex;
    position: relative;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: #ff9800;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease-in-out;
    opacity:0;
    animation: slide_right 0.5s linear forwards;
    animation-delay: calc(0.2s * var(--i));
}
.sci li a img{
    filter: invert(1);
    transform: scale(0.5);
}
.sci li a:hover{
    background: #b3b1d8;
    transform: translateY(-10px);
}
.demo{
    position: absolute;
    top: 120px;
    right: 0;
    max-width: 700px;
    opacity: 0;
    animation: fade_in 2.5s linear forwards;
    animation-delay: 1.5s;
}
.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.service{
    background: #d0cede;
    min-height: 90vh !important;
    padding: 35px 15px !important;
}
section .box{
    position: relative;
    width: 275px;
    background: #fff;
    padding: 30px;
    margin-right: 10px;
    text-align: justify;
    box-shadow: 20px 20px 10px 0 rgba(0,0,0,.2);
    opacity: 0;
}
section .box:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff9800;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
}
section .box:hover:before{
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.5s;
}
section .box p{
    position: relative;
    transition: 0.5s;
}
section .box:hover h3,section .box:hover p{
    color: #fff;
    z-index: 1;
    transition: 0.5s;
}
section .box .icon{
    position: relative;
    width: 65px;
    height: 65px;
    color: #fff;
    background: #d0cede;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    transition: 1s;
}
section .box:hover .icon{
    background: #fff;
}
section .box a{
    display: block;
    position: relative;
    padding: 10px 20px;
    background: #ff9800;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin: 30px auto 0 auto;
}
section .box:hover a{
    z-index: 1;
    background: #fff;
    transition: .5s;
    color: #ff9800;
}
section h3{
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}
.bg-purple{
    background: #b3b1d8;
}
.pricing-table{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: min(1600px,100%);
    margin: auto;
}
.pricing-card{
    position: relative;
    flex: 1;
    max-width: 300px;
    background-color: #fff;
    overflow: hidden;
    margin: 20px 10px;
    text-align: center;
    cursor: pointer;
    color: #2d2d2d;
    transition: .3s linear;
    border: 1px solid #ff9800;
}
.active-left{
    animation: slide_left 0.5s linear forwards;
    animation-delay: 0.5s;
}
.active-left-200{
    animation: slide_left_200 0.5s linear forwards;
    animation-delay: 0.5s;
}
.active-top{
    animation: slide_top 0.5s linear forwards;
    animation-delay: 0.5s;
}
.active-right{
    animation: slide_right 0.5s linear forwards;
    animation-delay: 0.5s;
}
.active-bottom{
    animation: slide_bottom 0.5s linear forwards;
    animation-delay: 0.5s;
}
.pricing-card-header{
    background: #ff9800;
    display: inline-block;
    color: #fff;
    padding: 7px 15px;
    border-radius: 0 0 20px 20px;
    font-size: .9em;
    text-transform: uppercase;
    font-weight: 600;
    transition: .9s ease-out;
}
.pricing-card:hover .pricing-card-header{
    box-shadow: 0 0 0 39em #ff9800;
}
.price{
    font-size: 25px;
    color: #6f6f6f;
    margin: 20px 0;
    transition: .9s linear;
}
.pricing-card:hover, .pricing-card:hover .price{
    color: #fff;
    transition: .8s ease-out;
}
.pricing-card li{
    font-size: .70em;
    padding: 5px 0;
    text-transform: uppercase;
    list-style: none;
}
.order-button{
    display: inline-block;
    margin-top: 25px;
    margin-bottom: 40px;
    border: 1px solid #ff9800;
    color: #ff9800;
    font-size: .7em;
    padding: 13px 25px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s linear;
    text-decoration: none;
}
.order-button:hover{
    background: #ff9800;
    color:#fff;
}
.examine{
    display: inline-block;
    margin-top: 25px;
    margin-bottom: 40px;
    background-color: #ff9800;
    color: #fff;
    border: 1px solid #fff;
    font-size: .7em;
    padding: 13px 25px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s linear;
    text-decoration: none;
    opacity: 0;
}
.examine:hover{
    box-sizing: border-box;
    color: #ff9800;
    background-color: #fff;
    border: 1px solid #ff9800;
}
.border-purple{
    border-color: #b3b1d8 !important;
    transition: 1s;
}
.border-purple:hover{
    border-color:#ff9800 !important;
}
/**
section hakkımızda
**/
section.default-section{
    min-height:70vh;
    justify-content: space-around;
    flex-wrap: wrap;
}
.text-box{
    display: block;
    width: 48%;
    padding: 20px;
}
.text-box h2{
    margin-bottom: 20px;
    opacity: 0;
}
.text-box p{
    opacity: 0;
}
.default-img-box{
    position: relative;
    width: 400px;
    height: 350px;
}
.img-box{
    width: 100%;
    height: 100%;
}
.box-shadow{
    box-shadow: 0 0 0 10px #ff9800 inset;
    opacity: 0;
    animation: visible 1s linear forwards;
    animation-delay: 0.2s;
}
/**
section hakkımızda sonu
**/
/**
section contact start
**/
.contact-container{
    position: relative;
    min-width: 800px;
    min-height: 440px;
    display: flex;
    background: #fff;
    box-shadow: 20px 20px 10px 0 rgb(0 0 0 / 20%);
    opacity: 0;
}
.contact-container .contactInfo{
    position: absolute;
    top: 40px;
    left: -80px;
    width: 250px;
    height: calc(100% - 80px);
    padding: 30px;
    background: #ff9800;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 5px 5px 10px 0 rgba(0,0,0,.3);
    opacity: 0;
}
.contact-container .contactInfo h3{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
.contact-container .contactInfo ul.info{
    position: relative;
    margin:20px 0;
}
.contact-container .contactInfo ul.info li{
    position: relative;
    list-style: none;
    display: flex;
    margin: 20px 0;
    align-items: flex-start;
    font-size: .8em;
}
.contact-container .contactInfo ul.info li span:nth-child(1){
    width: 30px;
    min-width: 30px;
}
.contact-container .contactInfo ul.info li span:nth-child(1) img{
    max-width: 100%;
    filter: invert(1);
}
.contact-container .contactInfo ul.info li span:nth-child(2){
    color: #fff;
    margin-left: 10px;
    font-weight: 300;
    padding-top:3px;
}
.contact-container .contactInfo ul.contact-sci{
    position: relative;
    display: flex;
    margin-top: 20px;
}
.contact-container .contactInfo ul.contact-sci li {
    list-style: none;
    margin-right: 10px;
}
.contact-container .contactInfo ul.contact-sci li img{
    width: 25px;
    height: 25px;
}
.contact-container .contactInfo ul.contact-sci li a{
    text-decoration: none;
}
.contact-container .contactInfo ul.contact-sci li a img{
    filter: invert(1);
}
.contact-container .contactForm{
    position: absolute;
    padding:40px 50px;
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 100%;
    background: #fff;
}
/* Contact Form */
.contact-container .contactForm h3{
    color: #ff9800;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
.contact-container .contactForm .formBox{
    position: relative;
    display: flex;justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}
.contact-container .contactForm .formBox .inputBox{
    position: relative;
    margin-bottom: 35px;
}
.contact-container .contactForm .formBox .inputBox.w50{
    width: 47%;
}
.contact-container .contactForm .formBox .inputBox.w100{
    width: 100%;
}
.contact-container .contactForm .formBox .inputBox input,.contact-container .contactForm .formBox .inputBox textarea{
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    border: none;
    outline: none;
    border-bottom: 1px solid #ff9800;
    cursor: pointer;
}
.contact-container .contactForm .formBox .inputBox span{
    position: absolute;
    top: -22px;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 15px;
    font-weight: 300;
    transition: .3s;
}
.contact-container .contactForm .formBox .inputBox input:focus ~ span,
.contact-container .contactForm .formBox .inputBox input,
.contact-container .contactForm .formBox .inputBox textarea:focus ~ span,
.contact-container .contactForm .formBox .inputBox textarea:valid ~ span,
.contact-container .contactForm .formBox .inputBox input:valid ~ span{
    transform: translateY(-20px);
    font-size: 12px;
    letter-spacing: 1px;
    color: #ff9800;
    font-weight: 500;
}
.contact-container .contactForm .formBox .inputBox input[type="submit"]{
    transform: translateY(0);
    position: relative;
    background: #ff9800;
    color: #fff;
    border: none;
    max-width: 150px;
    padding: 12px;
    max-height: 50px;
}
.contact-container .contactForm .formBox .inputBox input[type="submit"]:hover{
    background: #f8a436;
}

/**
section contact end
**/
.img-box img{
    position: absolute;
    top: 40px;
    right: 40px;
    opacity: 0;
}
.section-name{
    opacity: 0;
}
.section-name:before{
    content: '|';
    padding-right: 5px;
}
/* Popup */
.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 75%;
    min-height: 45vh;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 30px 0px rgba(0,0,0,0.30);
    visibility: hidden;
    opacity:0 ;
    transition: 1s;
}
.popup .inner{
    padding: 10px;
}
.popup .popup-title{
    font-size: 1.2em;
    text-align: center;
    margin-top: 10px;
}
.blur {
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
    transition: 1s;
}
.popup-active{
    visibility: visible;
    opacity:1 ;
    transition: 1s;
}
.popup-close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
}
.popup-close img{
    width: 100%;
    height: 100%;
    opacity: .5;
}
/* Popup */
/*Footer*/
footer{
    display: flex;
    width: 100%;
    height: 50px;
    background: #f3f3f3;
    justify-content: left;
    align-items: center;
    padding: 20px;
    color: #9a9a9a;
    font-size: .8em;
}
footer .footer-mark{
    color: #ff9800;
}
/*Footer*/
/* Keyframe Area Start*/
@keyframes slide_left {
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes visible {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes fade_in {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes fade_in_opacity5 {
    0%{
        opacity: 0;
    }
    100%{
        opacity: .3
    }
}
@keyframes slide_left_200 {
    0%{
        transform: translateX(-200px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slide_bottom {
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slide_right {
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slide_top {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
/* Keyframe Area End*/
/* responsive */
@media (max-width: 991px) {
    section{
        padding: 150px 20px;
    }
    header{
        padding: 20px;
    }
    .navigation{
        display: none;
    }
    .navigation.active{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    header ul li{
        margin:10px 0;
    }
    header ul li a{
        margin-left: 0;
        font-size: 1.5em;
    }
    .toggle{
        position: fixed;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: url("../img/menu.png");
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        z-index: 1000;
        border-radius: 2px;
    }
    .toggle.active{
        background: url("../img/close.png");
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
    }
    .service .box {
        width: 48%;
    }
    .service .box:first-child, .service .box:nth-child(2){
        margin-bottom: 10px;
    }
    .content .textBox h2{
        font-size: 2.5em;
    }
    .content .textBox p{
        font-size: 1em;
    }
    .pricing-card{
        flex: 50%;
    }
    .contact-container{
        width: 90%;
        min-width: auto;
        margin: 20px;
    }
    .contact-container .contactInfo{
        position: relative;
        top: 0;
        left: 0;
        height: 400px;
        box-shadow: none;
    }
    .contact-container .contactForm{
        position: relative;
        height: 400px;
        padding: 30px 40px;
        margin-left: 0;
    }
    .demo{
        width: 100%;
        top: 15%;
        animation: fade_in_opacity5 1s linear forwards;
        animation-delay: 3.5s;
    }
    .popup .inner{
        overflow: auto;
    }
    .popup .pricing-table{
        display: block;
        width: 740px;
        float: left;
    }
    .popup .pricing-table .pricing-card{
        display: block;
        width: 220px;
        float: left;
    }
}
@media (max-width: 815px){
    .mobile-margin-top{
        margin-top: 40px;
    }
}
@media (max-width: 809px) {
    section {
        padding-top: 30px;
        padding-bottom: 70px;
    }

    .text-box {
        width: 80%;
    }

    .img-box img {
        right: -5px;
        top: 0;
    }
}
@media (max-width: 700px){
    .service .box{
        width: 100%;
        margin-right: 0;
    }
    .service .box:nth-child(3){
        margin-bottom: 10px;
    }
    .contact-container{
        display: flex;
        flex-direction: column-reverse;
    }
    .contact-container .contactInfo{
        width: 100%;
        height: auto;
    }
    .contact-container .contactForm{
        width: 100%;
        height: auto;
    }
    .contact-container .contactForm .formBox .inputBox.w50{
        width: 100%;
    }
}