@import 'anim.css';
@import 'resp.css';
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Inter, Arial;
    overflow-x: hidden;
}
.container {
    width: 1150px;
    margin: 0 auto;
}
.sct-title {
    display: block;
    text-align: center;
    font-size: 50px;
    margin: 0;
    padding: 0;
    
}
.sct-desc {
    margin-top: 0px;
    font-size: 20px;
    text-align: center;
    display: block;
    color: #777;
}

header {
    height: 70px;
}

.instagram {
    background: #fff;
    width: 75px;
    height: 75px;
    border:1px solid purple;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    cursor: pointer;
    font-size: 30px;
    color: purple;
}

.inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.inner-header .logo {
    
}
.inner-header .logo img {
    width:120px;
    position: relative;
    top: 30px;
}
.menu {
    display: flex;
    align-items: center;
    height: 100%;
}
.menu a {
    height: 100%;
    padding: 0px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: .2s all;
    border-bottom: 3px solid transparent;
    overflow: hidden;
}
.menu a i {
    margin-right: 10px;
    font-size: 14px;
    transition: .15s all;
    position: relative;
    left: 0px;
}
.menu a:hover {
    border-bottom-color: #000;
    background: rgba(0,0,0,.05);
    color: #000;
}
.menu a:hover i {
    position: relative;
    top: 0px;
    opacity: .1;
    transform: scale(3);
    left: 10%;
}

.header-cta {
    padding: 10px 30px;
    border: 2px solid #333;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    border-bottom-width: 3px;
    background: #fff;
}

.sct1 {
    margin-top: 120px;
    padding-bottom: 50px;
    height: 100vh;
}
.inner-sct1 {
    display: flex;
    justify-content: space-between;
}
.inner-sct1 .left {
    width: 60%;
}
.inner-sct1 .left h1 {
    font-size: 70px;
    font-weight: 800;
}
.inner-sct1 .left h1 span {
    color: rgb(255, 145, 0);
}
.inner-sct1 .left h2 {
    font-size: 35px;
    font-weight: 400;
}
.inner-sct1 .left a {
    width: 270px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    margin-top: 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    border: 2px solid #000;
    border-bottom-width: 4px;
    cursor: pointer;
}
.inner-sct1 .right {
    width: 40%;
    display: flex; 
    align-items: center;
    justify-content: center;
}
.inner-sct1 .right img {
    width: 100%;
    transform: rotateY(-180deg);
    position: relative;
    right: -50px;
    top: -50px;
}
.shape-top {
    position: absolute;
    z-index: -1;
    bottom: 0;
    transform: rotateY(180deg);
    width: 400px;
    right: -20px;
    opacity: .2;
    animation: st1 .3s ease-in 1;
}
@keyframes st1 {
    0% {
        width: 0px;
        opacity: 0;
    }
    100% {
        width: 400px;
        opacity: .2;
    }
}
.shape-top2 {
    position: absolute;
    z-index: -2;
    bottom: 0;
    transform: rotateY(180deg);
    width: 700px;
    right: -50px;
    opacity: 0.1;
    animation: st2 1s ease-in 1;
}
@keyframes st2 {
    0% {
        width: 0px;
        opacity: 0;
    }
    100% {
        width: 700px;
        opacity: .1;
    }
}
.shape-top3 {
    position: absolute;
    z-index: -2;
    bottom: 0;
    transform: rotateY(180deg);
    width: 1000px;
    right: -50px;
    opacity: 0.05;
    animation: st3 2s ease-in 1;
}
@keyframes st3 {
    0% {
        width: 0px;
        opacity: 0;
    }
    100% {
        width: 1000px;
        opacity: .05;
    }
}
.shape-border {
    position: absolute;
    z-index: 1;
    bottom: 0;
    transform: rotateY(180deg);
    width: 100%;
    height: 10px;
    right: 0px;
    background: #FED4B8;
    animation: stb .05s ease-in 1;
}
@keyframes stb {
    0% {
        width: 0%;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.sct2 {
    margin-bottom: 100px;
    margin-top: -70px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-top: 50px;
}
.service {
    width: 31%;
    margin-right: 2%;
    overflow: hidden;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0px 3px 10px rgba(0,0,0,.2);
    margin-bottom: 20px;
}
.service .imgdiv {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}
.service .imgdiv img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.service .service-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 5px;
    position: relative;
}
.service .service-desc {
   font-weight: 400;
   color: #555;
   font-size: 16px;
   line-height: 150%; 
}
.service > a {
    width: 100%;
    cursor: pointer;
    margin-top: 15px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    font-weight: 600;
    border-radius: 5px;
    transition: .15s all;
}
.service > a:hover {
    background: rgba(0,0,0,.05);
}

.service.has-tag .service-title::after {
    content: "ÇOK POPÜLER";
    font-size: 13px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 145, 0);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 7px;
    border-radius: 5px;
}

.service.has-tag2 .service-title::after {
    content: "TREND";
    font-size: 13px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(70, 144, 255);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 7px;
    border-radius: 5px;
}

.sct3-main {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 50px;
}
.sct3-main .left {
    width: 43%;
        background: rgba(255, 145, 0, .1);
    border-radius: 10px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sct3-main .left img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sct3-main .right {
    width: 55%;
    line-height: 200%;
    color: #444;
    font-size: 19px;
}
.sct4 {
    margin-top: 150px;
}

.comments {
    display: flex;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-top: 40px;
}
.comment {
    width: 31%;
    margin-right: 2%;
    overflow: hidden;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0px 5px 10px rgba(0,0,0,.2);
    margin-bottom: 20px;
}
.comment .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.comment .top .left {
    display: flex;
    align-items: center;
}
.comment .top .left .imgdiv {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
}
.comment .top .left .imgdiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.comment .top .left .name h3 {
    font-size: 17px;
}
.comment .top .left .name span {
    font-size: 14px;
}
.comment .top .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.comment .top .right i {
    color: green;
    font-size: 30px;
}
.sct4 .panel-title {
    margin-top: 30px;
    text-align: center;
    display: block;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}
.sct4 .panel {
    width: 360px;
    border: 1px solid #ddd;
    height: 70px;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
}
.sct4 .panel > div {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sct4 .panel .true {
    border-right: 1px solid #ddd;
    color: green;
}
.sct4 .panel .false {
    color: #777;
}
.sct4 .panel > div i {
    margin-right: 5px;
}

.sct5 {
    padding: 100px 0px;
    margin-top: 60px;
    position: relative;
}

.sct5 .formlogo {
    position: absolute;
    width: 450px;
    z-index: -1;
    transform: rotate(-10deg) translate(-50%, -50%);
    opacity: .06;
    left: 20%;
    top: 40%;
}
.inner-sct5 {
    overflow: hidden;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}
.inner-sct5 .right {
    width: 50%;
    margin: 0 auto;
    height: 100%;
    color: #000;
}
.inner-sct5 .right h2 {
    color: #000;
    text-align: center;
    font-size: 45px;
    display: block;
}
.inner-sct5 .right .teklif-desc {
    font-size: 20px;
    line-height: 150%;
    opacity: .7;
    margin-top: 5px;
    display: block;
    color:#777;
    margin-bottom: 30px;
    text-align: center;
}
.inner-sct5 .right input, .inner-sct5 .right select {
    width: 100%;
    height: 65px;
    border-radius: 5px;
    border:0;
    outline: none;
    font-family: Inter;
    padding-left: 20px;
    background: #fff;
    font-weight: bold;
    box-shadow: 0px 2px 3px rgba(0,0,0,.2);
    color: #000;
    font-size: 18px;
    background: #f7f7f7;
    margin-bottom: 10px;
}
.inner-sct5 .right .label {
    margin-top: 10px;
    margin-bottom: 10px;
}
.inner-sct5 .right .label hr {
    margin-bottom: 10px;
}
.inner-sct5 button {
    display: block;
    width: 100%;
    height: 65px;
    margin-top: 25px;
    border-radius: 5px;
    border:0;
    color:#fff;
    background: #000;
    font-weight: 500;
    cursor: pointer;
    font-size: 17px;
}
footer {
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 20px 0px;
    color: #777;
    text-align: center;
}

.true, .false {
    transition: .15s all;
    cursor: pointer;
}
.true:hover {
    background: rgba(0, 128, 0, 0.11);
}
.false:hover {
    background: rgba(128, 0, 0, 0.11);
}