.mainhead {
    height: 100px;
    width: 100%;
    position: relative;
}

.mainhead .logo {
    height: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.mainhead .logo img {
    width: auto;
    height: 60px;
}


.logo_desc {
    margin-left: 10px;
    border-left: 1px solid #52575a;
    padding-left: 10px;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


.logo_desc h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #656565;
    letter-spacing: 1px;
    margin: 0;
}

.logo_desc span {
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    color: #505050;
    font-size: 12px;
    letter-spacing: 1.5px;
    opacity: 0.6;
}

.menu_list {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
}

.menu_list li {
    margin-left: 20px;
}

.menu_list li a {
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    font-size: 14px;
    display: inline-block;
    transition: ease-in-out .3s;
}


.menu_list li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    right: 100%;
    height: 2px;
    background: rgb(75,15,163);
    background: linear-gradient(90deg, rgba(75,15,163,1) 0%, rgba(154,93,243,1) 100%);
    transition: ease-in-out .3s;
}


.menu_list li a:hover:before {
    right: 0;
    transition: ease-in-out .3s;
}


.slider {
    position: relative;
    background-color: #FBFBFB;
    height: 70vh;
}


.head_ust {
    height: 40px;
    border-bottom: 1px solid #f6f6f6;
}

.head_ust .head_ust_index {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.head_ust .head_ust_index .sol a {
    color: #505050;
    font-size: 14px;
    text-decoration: none;
}

.head_ust .head_ust_index .sol a i {
    position: relative;
    font-size: 13px;
    margin-right: 3px;
}


.head_ust .head_ust_index .sag a {
    color: #505050;
    margin-left: 5px;
    text-decoration: none;
    font-size: 14px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.head_ust .head_ust_index .sag a:hover {
    background: rgb(75,15,163);
    background: linear-gradient(90deg, rgba(75,15,163,1) 0%, rgba(154,93,243,1) 100%);
    color: #FFF;
}


.slider .slider_sol {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
}


.slider .slider_sol h1 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}


.slider .slider_sol h1 span {
    
    -webkit-text-stroke: 1px #333;
    color: transparent;
}

.slider .slider_sol_desc {
    border-left: 5px solid #4b0fa3;
    padding: 30px;
    position: relative;
}


.slider .slider_sol_desc:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 70%;
    height: 5px;
    background: rgb(75,15,163);
    background: linear-gradient(90deg, rgba(75,15,163,1) 0%, rgba(154,93,243,1) 100%);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}


.slider .slider_sol_desc:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 70%;
    height: 5px;
    background: rgb(75,15,163);
    background: linear-gradient(90deg, rgba(75,15,163,1) 0%, rgba(154,93,243,1) 100%);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}


.slider .slider_sag {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .slider_sag img {
    width: auto;
    height: 500px;
}



.slider_dotted {
    width: 300px;
    height: 300px;
    position: absolute;
    top: -37px;
    left: 0;
    background-image: radial-gradient(#505050 2px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1!important;
}

.about {
    padding: 50px 0;
}


.about_head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 60px;
}


.about_head h1 {
    margin: 0;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    color: #333;
    display: inline-block;
    position: relative;
    margin-bottom: 50px;
}


.about_head h1:before {
    content: attr(data-text);
    position: absolute;
    z-index: -1;
    font-size: 60px;
    left: 0;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px #333;
    opacity: 0.1;
    top: -5px;
}


.about_box {
    position: relative;
    padding: 30px 70px 30px 0;
}




.about_box h1 {
    margin: 0;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    color: #505050;
}


.about_box h1 span {
    -webkit-text-stroke: 1px #505050;
    color: transparent;
}


.about_box p {
    color: #505050;
    margin: 0;
    line-height: 25px;
    font-size: 15px;
    padding: 15px 0;
    padding-right: 50px;
}


.about_box a {
        background: rgb(75 16 163);
    background: linear-gradient(
90deg
, rgb(75 16 163) 0%, rgb(153 92 242) 100%);
    text-decoration: none;
    height: 40px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    color: #FFF;
    transition: ease-in .3s;
}

.about_box a:hover {
        background: rgb(75 16 163);
    background: linear-gradient(
90deg
, rgb(75 16 163) 0%, rgb(153 92 242) 100%);
    text-decoration: none;
    height: 40px;
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    color: #FFF;
    transition: ease-in .3s;
}










#footer img{
    height: 80px;
}


.social{
    text-align: right;
    margin-top: 20px;
}


.social-media{
    background-color: #fff;
    width: 50px;
    height: 50px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    position: relative;
}

.social-media:after{
    position: absolute;
    content: '';
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: 50%;
    border: 2px solid #fff;
}


.social-media i{
    font-size: 20px;
    margin-top: 15px;
    color: #28a9f6;
}


.affix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
}


.navbar-nav li{
    cursor: pointer;
}


.s_box {
    width: 100%;
    background-color: #FFF;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px -3px rgb(0 0 0 / 20%);
    transition: ease-in .3s;
    position: relative;
}


.s_box:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 100%;
    right: 0;
    left: 0;
    background: rgb(75 18 163);
    background: linear-gradient(
180deg
, rgb(76 18 164) 0%, rgb(152 93 242) 100%);
    transition: ease-in .3s;
    border-radius: 5px;
}


.s_box:hover h2 {
    -webkit-text-stroke: 1px #FFF;
    transition: ease-in .3s;
}

.s_box:hover h2:before {
    -webkit-text-stroke: 1px #FFF;
    transition: ease-in .3s;
}

.s_box:hover h3 {
    color: #FFF;
    transition: ease-in .3s;
}


.s_box:hover:before{
    bottom: 0;
    transition: ease-in .3s;
}

.s_box:hover:before h3 {
    color: #FFF;
    
}


.s_box h2 {
    position: relative;
    font-size: 60px;
    color: transparent;
    -webkit-text-stroke: 1px #333;
    margin: 0;
    display: inline-block;
    transition: ease-in .3s;
}


.s_box h2:before {
    content: "+";
    position: absolute;
    right: -10px;
    top: -20px;
    font-size: 30px;
    transition: ease-in .3s;
}

.s_box h3 {
    font-size: 16px;
    text-transform: uppercase;
    max-width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: ease-in .3s;
        position: relative;
    z-index: 300;
}


.tY-100 {
    transform: translateY(100px);
}

.tY-50 {
    transform: translateY(50px);
}


.boxes {
    position: relative;
}

.boxes:before {
    content: "";
    width: 500px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: radial-gradient(#505050 2px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}


.hizmetler {
    padding: 50px 0 100px 0!important;
    position: relative;
}


.hizmetler:before {
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    top: 30%;
    right: 0;
    background-image: radial-gradient(#505050 2px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}


.h_head {
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 50px;
}


.h_head h1 {
    margin: 0;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    display: block;
    color: #505050;
}


.h_head h1:before {
    content: attr(data-text);
    position: absolute;
    z-index: -1;
    text-transform: uppercase;
    font-size: 40px;
    top: 15px;
    -webkit-text-stroke: 1px #333;
    opacity: 0.1;
    left: 10px;
    right: 0;
    color: transparent;
    width: 600px;
}




.h_box {
    width: 100%;
    background-color: #FFF;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px -3px rgb(0 0 0 / 20%);
    transition: ease-in .3s;
    position: relative;
    overflow: hidden;
}

.h_box:hover a {
    transform: translateY(0);
    transition: ease-in .3s;
}


.h_box i {
    font-size: 50px;
    color: #FFF;
    line-height: 0;
}


.h_box h2 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFF;
    padding: 10px 0;
    max-width: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


.h_box p {
    color: rgba(255,255,255,0.8);
    line-height: 18px;
    padding: 0 15px;
    margin: 0;
}


.h_box a {
    background-color: #FFF;
    display: inline-flex;
    width: 120px;
    height: 30px;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
    border-radius: 5px;
    font-size: 12px;
    text-decoration: none;
    margin: 10px 0 0 0;
    transform: translateY(120px);
    transition: ease-in .3s;
}


.h_box a:hover {
    background-color: #FFF;
    display: inline-flex;
    width: 120px;
    height: 30px;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
    border-radius: 5px;
    font-size: 12px;
    text-decoration: none;
    transition: ease-in .3s;
}

.c1 {
    background: rgb(226,12,17);
    background: linear-gradient(180deg, rgba(226,12,17,1) 0%, rgba(249,77,44,1) 100%);
}

.c2 {
    background: rgb(75,16,163);
    background: linear-gradient(180deg, rgba(75,16,163,1) 0%, rgba(151,91,241,1) 100%);
}

.c3 {
    background: rgb(21,130,239);
    background: linear-gradient(180deg, rgba(21,130,239,1) 0%, rgba(135,243,254,1) 100%);
}



.referanslar {
    padding: 50px 0;
}


.r_box {
    width: 100%;
    border-radius: 5px;
    height: 150px;
    transition: ease-in .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 15px -3px rgb(0 0 0 / 10%);
    background-color: #FFF;
    margin-bottom: 10px;
    transform: translateY(0);
    transition: ease-in .3s;
}


.r_box:hover {
    transition: ease-in .3s;
    transform: translateY(-5px);
    box-shadow: 0px 0px 15px -3px rgb(0 0 0 / 15%);
}


.r_box img {
    width: auto;
    height: 80px;
}


.page_en {
    position: relative;
    width: 100%;
    height: 120px;
}


.page_en .page_bread {
    height: 120px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding: 30px;
    text-align: right;
}


.page_en .page_bread:before {
    content: "";
    width: 300px;
    height: 100px;
    position: absolute;
    top: 10px;
    right: 0;
    background-image: radial-gradient(#505050 2px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.06;
}



.page_en .page_bread h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #505050;
}

.page_en .page_bread h1 span {
    color: transparent;
    -webkit-text-stroke: 1px #505050;
    letter-spacing: 2px;
}


.page_en .page_bread ul {
    padding: 0;
    margin: 5px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
}


.page_en .page_bread ul li {
    margin-left: 15px;
    position: relative;
}


.page_en .page_bread ul li:before {
    content: "\f111";
    font-family: "FontAwesome";
    position: absolute;
    right: -8px;
    top: 12px;
    color: #505050;
    font-size: 4px;
    line-height: 0;
}


.page_en .page_bread ul li:last-child:before {
    display: none;
}

.page_en .page_bread ul li a {
    font-size: 12px;
    font-weight: 500;
    color: #505050;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}


.page_en .page_bread ul li a i {
    font-size: 10px;
    position: relative;
    top: -1px;
}


.page_en .page_bread ul .active a {
    color: #4b10a3;
}

.r2 [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.r2 .r_box {
    margin-bottom: 30px!important;
}

.r2 .r_box img {
    height: 70px;
}


#footer {
    margin-top: 3%;
}

.f_bavk {
    position: relative;
}


.f_bavk:before {
    content: "";
    height: 125px;
    position: absolute;
    top: -10px;
    left: 30%;
    right: 30%;
    background-image: radial-gradient(#505050 2px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}


.f_logo {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.f_logo img {
    width: auto;
    height: 50px!important;
}


.f_social {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.f_social a {
    font-size: 16px;
    color: #505050;
    background-color: transparent;
    line-height: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 3px;
}


.f_social a:hover {
        background: rgb(75 16 163);
    background: linear-gradient( 
90deg
 , rgb(75 16 163) 0%, rgb(153 92 242) 100%);
    color: #FFF;
}


.iletisim_form .form-group {
    margin-bottom: 5px;
}



.iletisim_form .form-group .form-control{
    height: 40px;
    background-color: #F4F4F4;
    outline: none;
    box-shadow: none;
    border: none;
    color: #505050;
    font-size: 13px;
}


.iletisim_form .form-group label {
    font-weight: 500;
    color: #505050;
    text-transform: uppercase;
    font-size: 12px;
    padding-left: 10px;
}


.iletisim_form textarea.form-control {
    height: auto!important;
}


.iletisim{
    padding: 50px 0 50px 0;
}



.iletisim_form {
    box-shadow: 0px 0px 15px -3px rgb(0 0 0 / 20%);
    padding: 15px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background-color: #FFF;
}


.iletisim_form:before {
    content: "";
    width: 500px;
    height: 450px;
    position: absolute;
    top: -50px;
    left: -150px;
    background-image: radial-gradient(#505050 2px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: -1;
}


.iletisim-button {
   background: rgb(75 16 163);
    background: linear-gradient( 
90deg
 , rgb(75 16 163) 0%, rgb(153 92 242) 100%);
    text-decoration: none;
    height: 35px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 5px;
    color: #FFF;
    transition: ease-in .3s;
    border: none;
    outline: none;
    letter-spacing: 2px;
    margin: 5px 0 0 0;
}


.iletisim-button:hover {
    width: 130px;
    transition: ease-in .3s;
}


.h_ic:before {
    display: none;
}


.blog {
    padding: 50px 0;
}


.blog .blog_box {
    background-color: #FFF;
    box-shadow: 0px 0px 15px -3px rgb(0 0 0 / 15%);
    padding: 30px;
    margin: 10px 5px;
}


.blog .blog_box h3 {
         font-size: 20px;
    color: #505050;
    font-weight: 700;
    max-width: 300px;
}


.blog .blog_box p {
        font-size: 13px;
    color: #505050;
    line-height: 20px;
    margin: 0;
}


.blog .blog_box a {
    display: inline-block;
    margin: 10px 0 0 0;
    background-color: #c59bff;
    padding: 3px 15px;
    text-decoration: none;
    color: #FFF;
    font-weight: 500;
    border-radius: 20px;
}

.blog .blog_box a:hover {
    display: inline-block;
    margin: 10px 0 0 0;
    background-color: #6834b6;
    padding: 3px 15px;
    text-decoration: none;
    color: #FFF;
    font-weight: 500;
    border-radius: 20px;
}


.show_blog {
    padding: 50px 0;
}


.show_blog_desc p {
    font-family: 'Rubik', sans-serif!important;
    line-height: 20px!important;
    font-size: 13px!important;
    color: #505050!important;;
}