@import url("fonts/fonts.css");
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Montserrat;
}

button {
    border: none;
}

html,
body {
    overflow-x: hidden;
    height: auto!important;
}

body {
    width: 100vw;
    background: #181828;
}

section {
    width: 100%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    display: -ms-flexbox;
}


/* menu start code */

.navbar {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 auto;
    z-index: 55;
    padding: 5px;
}

.menu-content {
    width: 100%;
    max-width: 60%;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.navbar.sticky {
    position: fixed;
    z-index: 555;
    max-width: 100%;
    padding: 10px 0;
    transition: all 1s;
    top: 0;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background: #181828;
}

.navbar.sticky+div {
    margin-top: 109px;
}

.navbar .logo {
    width: 80px;
    height: 64px;
    z-index: 2;
}

.navbar .logo a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar .menu-list {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.menu-list>li {
    list-style: none;
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 80px;
}

.kapat-menu{
    display: none;
}

.menu-list>li>a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.menu-list>li>a::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 0;
    height: 100%;
    border-bottom: 1px solid #fbb226;
    transform: scaleY(1.5);
    opacity: 0;
    transition: 1s;
}

.menu-list>li>a:hover::before {
    opacity: 1;
    width: 100%;
}

.menu-list li a:hover {
    color: #fbb226;
}

.menu-list .tel a {
    font-size: 20px;
}

.mobil-navbar {
    display: none;
}

.mobil-menu-container {
    display: none;
}

.navbar .menu-content {
    max-height: 80px;
}

.down-menu {
    position: absolute;
    width: 250px;
    height: fit-content;
    display: block;
    top: 70px;
    left: -20px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    opacity: 0;
    visibility: hidden;
    background: rgba(24, 24, 40, 0.719);
    padding: 20px 20px 20px 20px;
}

.down-menu>li {
    width: 100%;
    height: fit-content;
    margin-bottom: 20px;
}

.down-menu>li>a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.down-menu>li a::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 0;
    height: 100%;
    border-bottom: 1px solid #fbb226;
    transform: scaleY(1.5);
    opacity: 0;
    transition: 1s;
}

.down-open {
    border: solid solid #00a3ff
}

.down-menu li a:hover::after {
    opacity: 1;
    width: 100%;
}

.menu-list>li:hover .down-menu {
    opacity: 1;
    visibility: visible;
}


/* contack modal start code */

.contacktel {
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 56;
    margin-right: 0;
    margin-top: -20px;
}

.contacktel-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.form-box {
    width: 175px;
    height: 30px;
}

.fake-box {
    width: 175px;
    height: 30px;
}

#modal-open {
    width: 100%;
    height: 30px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background: #711f7e;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
    position: relative;
    z-index: 1;
    transition: all 0.8s;
}

#modal-open img {
    margin-right: 10px;
}

#modal-open:hover {
    background: #fbb226;
}

.modal {
    width: 650px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: fixed;
    top: -500%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3222;
    transition: .5s;
}

.formcontainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    background: rgba(113, 31, 126, 0.9);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.45);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.modal .formcontainer form {
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.form-control {
    width: 100%;
    height: 60px;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.form-control:last-child {
    margin-bottom: 0;
}

.form-control input {
    width: 100%;
    height: 60px;
    background: transparent;
    border: 2px solid #FFFFFF;
    box-sizing: border-box;
    transition: 300ms all;
}

.form-control input~label {
    position: absolute;
    left: 5%;
    top: 50%;
    pointer-events: none;
    transition: 300ms all;
    color: #FFFFFF;
    font-size: 18px;
}

.form-control input:focus~label,
.form-control textarea:focus~label,
.form-control input:valid~label {
    top: -10%;
    color: #ffffff;
    font-size: 17px;
}

.form-control input[type="submit"] {
    width: 60%;
    height: 60px;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    text-transform: uppercase;
    color: #711F7E;
    background: #FFFFFF;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.form-control input[type="submit"]:hover {
    background-color: #fbb226;
    color: #FFFFFF;
}

.form-text {
    width: 100%;
    height: fit-content;
    display: flex;
    margin: 15px 0;
    align-items: center;
}

.form-text .checkboxf {
    width: 1px;
    height: 1px;
    position: relative;
    opacity: 0;
}

.form-text input[type="checkbox"]+label {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 21px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    margin-left: 20px;
    width: 100%;
}

.form-text input[type="checkbox"]+label a {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 21px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}

.form-text input[type="checkbox"]+label:before {
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    background: transparent;
    display: block;
    cursor: pointer;
    position: absolute;
    padding: 3px;
    left: -20px;
    top: 3px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.form-text input[type="checkbox"]:checked+label::after {
    content: "";
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 100%;
    background: #d49113;
    position: absolute;
    left: -17px;
    top: 6px;
}

#modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

#modal-close:hover {
    transform: scale(1.2);
}

.modal form input {
    margin: 16px 0;
    padding: 25px;
    font-size: 22px;
    color: #FFFFFF;
}

.modal .formcontainer form {
    width: 80%;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

.modal .formcontainer form p {
    width: 80%;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    display: flex;
}

.vector-form {
    position: absolute;
    width: 59.26px;
    height: 65px;
    top: 20px;
    left: 20px;
}


/* contack modal end code */


/*  menu end code */


/* sosial icon stard code */

.sosial {
    position: fixed;
    width: 24.5px;
    height: 119.62px;
    left: 70px;
    top: 439px;
    z-index: 6;
    display: flex;
    flex-direction: column;
}

.sosial a {
    margin: 5px;
    width: 100%;
    transition: all 0.5s;
}

.sosial a:hover {
    transform: scale(2);
}

.sosial .vk {
    width: 24px;
    height: 14px;
    z-index: 3;
}

.sosial .inst {
    z-index: 3;
    margin-top: 22px;
}

.sosial .face {
    z-index: 3;
    margin-top: 22px;
}

.sosial .vk {
    animation-name: ani4;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
}

.sosial .inst {
    animation-name: ani4;
    animation-duration: 4.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
}

.sosial .face {
    animation-name: ani4;
    animation-duration: 5.3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
}

@keyframes ani4 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* sosial icon end code */


/* main slider vector start code */

.main-vector {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 56px;
    left: 0;
}

.main-vector .vector1 {
    width: 603.49px;
    height: 123px;
    margin-left: -5%;
    margin-top: 52px;
    z-index: 3;
}

.main-vector .vector2 {
    width: 214.62px;
    height: 214px;
    margin-right: 13%;
    margin-top: 80px;
    z-index: 3;
}


/* main slider vector end code */


/* galeri slider start code */

.mainslider {
    width: 120%;
    height: 800px;
    display: flex;
    margin: 100px auto 0 auto;
}

.mainslider .item {
    width: 100%;
    margin: 0 auto;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-in {
    width: 100%;
    height: 700px;
    background: url(../img/Laptop-home.jpg);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: right -60px;
}

.slider-box {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    background: url(/img/vg.svg);
    background-repeat: no-repeat;
    background-size: 92%;
    background-position-x: 140px;
    background-position-y: -70px;
}

.slider-text {
    width: 40%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 50px;
}

.slider-box h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 85px;
    line-height: 103.9%;
    /* or 88px */
    display: flex;
    align-items: center;
    color: #ffffff;
}

.form2-btn {
    width: 220px;
    height: 60px;
    border: 2px solid #fbb226;
    box-sizing: border-box;
    background: transparent;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 18px;
    text-transform: uppercase;
    color: #ffffff;
    transition: all 0.5s;
    z-index: 5;
    cursor: pointer;
}

.form2-btn:hover {
    background: #fbb226;
    border: 1px solid #ffffff;
}

.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
    margin-right: 15%;
}

.mainslider .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    border: 2px solid #e9dfdb !important;
    box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 100%;
    margin: 5px;
}

.mainslider .owl-dots .owl-dot.active,
.mainslider .owl-dots .owl-dot:hover {
    background: #ffffff !important;
    z-index: 3;
}


/* galeri slider end code */


/* page up start */

.page-up {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: fixed;
    right: 5%;
    top: 90vh;
    z-index: 22;
	opacity:0;
}
.page-up.activ{
	opacity:1;
}

.page-up a {
    width: 100%;
    height: 100%;
}

.page-up img {
    width: 100%;
    height: 100%;
}


/* page up end */


/* site menu start code */

.site-menucontainer {
    width: 100%;
    height: 670px;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    margin: 125px auto 0 auto;
    position: relative;
}

.site-menucontent {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.site-menucontainer a {
    display: block;
    width: 32%;
    height: 309px;
}

.site-menucontainer a .menu-box {
    width: 100%;
    height: 309px;
    background: #711f7e;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    box-sizing: border-box;
    flex-direction: column;
    padding-left: 30px;
}

.menu-box2 h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 23px;
    color: #ffffff;
    margin: 20px 0px;
}

.menu-box2 p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin: 20px 0px;
}

.site-menucontainer a .menu-box .icon2,
.site-menucontainer a .menu-box .pcicon2,
.site-menucontainer a .menu-box .nnn2,
.site-menucontainer a .menu-box .bask2,
.site-menucontainer a .menu-box .ico2,
.site-menucontainer a .menu-box .opt2 {
    display: none;
}

.site-menucontainer a .menu-box:hover {
    background: #fbb226;
}

.site-menucontainer a .menu-box:hover .icon2 {
    display: flex;
}

.site-menucontainer a .menu-box:hover .icon1 {
    display: none;
}

.site-menucontainer a .menu-box:hover .pcicon2 {
    display: flex;
}

.site-menucontainer a .menu-box:hover .pcicon1 {
    display: none;
}

.site-menucontainer a .menu-box:hover .nnn2 {
    display: flex;
}

.site-menucontainer a .menu-box:hover .nnn1 {
    display: none;
}

.site-menucontainer a .menu-box:hover .bask2 {
    display: flex;
}

.site-menucontainer a .menu-box:hover .bask1 {
    display: none;
}

.site-menucontainer a .menu-box:hover .ico2 {
    display: flex;
}

.site-menucontainer a .menu-box:hover .ico1 {
    display: none;
}

.site-menucontainer a .menu-box:hover .opt2 {
    display: flex;
}

.site-menucontainer a .menu-box:hover .opt1 {
    display: none;
}

ul.dop-list {
    display: none;
}


/* site menu end code */


/* portfolyo start code */


/* cardcontainer start code */

.cardcontainer {
    width: 100%;
    height: 471px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

.cardimg {
    width: 100%;
    height: 341px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardimg img {
    width: 100%;
    height: 100%;
    object-position: center top;
}

.cardtext {
    width: 100%;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #25253e;
}

.cardcontainer:hover {
    border: 2px solid #fbb226;
}

.cardtext:hover {
    background: #fbb226;
    border: 2px solid #fbb226;
}

.cardimg:hover+.cardtext {
    background: #fbb226;
}

.cardtext h2 {
    display: flex;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.cardtext p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    color: #ffffff;
}


/* cardcontainer start end */


/*  fortfolyo start code */

.fortfolyo {
    width: 100%;
    height: 618px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 360px auto 0 auto;
    position: relative;
}

.fortfolyo .baslik {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.fortfolyo .baslik h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 43px;
    color: #ffffff;
    margin-right: 50px;
}

.fortfolyo .baslik-text {
    width: 273px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 2px solid #711f7e;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.5s;
    margin-left: 35px;
}

.fortfolyo .baslik-text:hover {
    background: #fbb226;
}

.fortfolyo .baslik-text p,
.fortfolyo .baslik-text a {
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    text-transform: uppercase;
    color: #ffffff;
}

.fortfolyo-slider {
    width: 133%;
    height: 100%;
    display: flex;
}

.fortfolyo-slider .resim {
    width: 100%;
    height: 100%;
}

.fortfolyo-slider .resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fortfolyo .owl-dots {
    width: 80%;
    height: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fortfolyo-slider .owl-dots .owl-dot {
    width: 25px;
    height: 5px;
    background: #fbb226;
    box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fortfolyo-slider .owl-dots .owl-dot.active,
.fortfolyo-slider .owl-dots .owl-dot:hover {
    background: #e4e0e6 !important;
}

.fortfolyo .owl-dots .owl-dot.active {
    width: 48px;
    height: 6px;
    background: #fbb226;
}


/* portfolyo end code */


/* form3 start code */

.form3-container {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
    margin: 180px auto 0 auto;
    position: relative;
}

.form3-content {
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0 auto;
    background: #711f7e;
}

.form3-item {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.form3-item span {
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.form3-item #form3-open {
    width: 220px;
    height: 60px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    /* or 19px */
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    cursor: pointer;
}

#form3-open:hover {
    color: #ffffff;
    background: #fbb226;
}


/* form3 end code */


/* SERVICE START CODE */

.service-container {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 185px auto 0 auto;
    z-index: 2;
    position: relative;
}

.service-container .service-text {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 60px;
    z-index: 3;
}

.service-container .service-text h5 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 35px;
    line-height: 43px;
    color: #ffffff;
}

.service-container a {
    display: block;
    width: 32%;
    height: 117px;
    margin-bottom: 30px;
    z-index: 24;
}

.service-container a.servis-kapat{
    display: none;
}

.service-container .service-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #25253e;
    z-index: 22;
}

.service-container .service-box span {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.service-container .service-box i {
    font-size: 30px;
    color: #991616;
}

.service-container a .service-box:hover {
    background: #fbb226;
}


/* SERVICE END CODE */


/* TRAFIC START CODE */

.trafic-container {
    width: 100vw;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: url(../img/Rectangle-90.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 100px;
    margin-top: 225px;
}

.trafic-content {
    width: 100%;
    max-width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.trafic-item {
    width: 14%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
    padding: 10px;
}

.trafic-item img {
    width: 60%;
    object-fit: cover;
    margin-bottom: 15px;
}

.trafic-item span {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 50px;
    line-height: 61px;
    /* identical to box height */
    text-align: center;
}

.trafic-item p {
    width: 120px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    color: #ffffff;
}

.trafic-item .no-yellow {
    color: #fbb226;
}

.trafic-item .no-red {
    color: #d94f46;
}

.trafic-item .no-blue {
    color: #4b8ddb;
}


/* TRAFIC END CODE */


/* BLOG Start CODE */

.blog {
    width: 100%;
    height: 618px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 336px auto 0 auto;
    position: relative;
}

.blog .baslik {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.blog .baslik h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 43px;
    color: #ffffff;
    margin-right: 50px;
}

.blog .baslik-text {
    width: 273px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 2px solid #711f7e;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.5s;
    margin-left: 35px;
}

.blog .baslik-text:hover {
    background: #fbb226;
}

.blog .baslik-text p,
.blog .baslik-text a {
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    text-transform: uppercase;
    color: #ffffff;
}

.blog-slider {
    width: 133%;
    height: 100%;
    display: flex;
}

.blog-slider .resim {
    width: 100%;
    height: 100%;
}

.blog-slider .resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog .owl-dots {
    width: 80%;
    height: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-slider .owl-dots .owl-dot {
    width: 25px;
    height: 5px;
    background: #fbb226;
    box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-slider .owl-dots .owl-dot.active,
.blog-slider .owl-dots .owl-dot:hover {
    background: #e4e0e6 !important;
}

.blog .owl-dots .owl-dot.active {
    width: 48px;
    height: 6px;
    background: #fbb226;
}


/* BLOG end CODE */


/* PERSON START CODE  */


.person-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 331px;
    position: relative;
}


.person-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    margin-bottom: 45px;
}

.person-text p {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #fbb226;
}

.person-text span {
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 43px;
    color: #ffffff;
}
.personal-content{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.personal-list{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.person-btn{
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    background: #711f7e;
    padding: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #ffffff;
    cursor: pointer;
    transition: .5s;
    
  
    
}


.goster{
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fbb226;
    padding: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #ffffff;
    cursor: pointer;
    transition: .5s;

}



.person-btn:hover{
    background: #fbb226;
}



.card-container{
    width: 100%;
    height: fit-content;
    display: none;
    margin-top: 70px;
    flex-wrap: wrap;
    column-gap: 1.2%;
}

.person-box{
    width: 100%;
    height: fit-content;
    display: flex;
    margin-top: 70px;
    flex-wrap: wrap;
    column-gap: 1.2%;
}



.person-card {
    width: 19%;
    height: 307px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    padding: 15px;
    border: 2px solid #25253e;
    box-sizing: border-box;
    transition: all 0.6s ease-in-out;
    z-index: 3;
    background: #181828;
    margin-bottom: 15px;
}


.person-card:hover{
    border: 2px solid #fbb226;

}



.personal-img{
    width:120px;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
}



 .person-card img {
    width:100%;
    height:100%;
    border-radius: 100%;
    border:2px solid #fff;
    object-fit: cover;
   
}



.person-card span {
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 27px;
    color: #ffffff;
}

.person-card p {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #ffffff;
}

.person-card i {
    font-size: 15px;
    color: #711f7e;
    padding: 5px 10px 0px 0px;
}

.person-card .from {
    font-size: 12px;
    color: #711f7e;
}





/* PERSON END CODE  */


/* PERSON SLIDER START */

#go-person1,
#go-person2,
#go-person3,
#go-person4,
#person-text {
    display: none;
}

.person-slider .owl-nav {
    display: none;
}


/* PERSON SLIDER END */


/* contack home start code  */

.contacthome-container {
    width: 100vw;
    height: 600px;
    display: flex;
    flex-direction: column;
    background: url(../img/back.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
    margin-top: 228px;
    align-items: center;
    justify-content: center;
  }
  
  .contact-content {
    width: 100%;
    max-width: 50%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    
  }
  
  .contact-text {
    width: 48%;
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .contact-baslik {
    display: flex;
    flex-direction: column;
  }
  
  .contact-baslik p {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #fbb226;
  }
  
  .contact-baslik h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 43px;
    color: #ffffff;
  }
  
  .tel-mail {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .tel-mail a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 15px;
    transition: 0.5s;
  }
  
  .tel-mail a:hover {
    color: #fbb226;
    transform: scale(1.2);
  }
  .contack-home-box2 {
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: space-between;
  }
  
  .contack-wp-tg {
    width: 48%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .telegram-wp-item {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .wp-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
  }
  
  .wp-tg-img {
    display: flex;
    width: 80px;
    align-items: center;
    justify-content: space-between;
  }
  .wp-tg-img img {
    width: 32px;
    height: 32px;
  }
  
  .telegram-wp-p {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 10px;
  }
  
  .contact-text2 {
    width: 48%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .text2-text1 {
    display: flex;
    flex-direction: column;
  }
  
  .text2-text1 p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
  }
  
  .text2-link {
    display: flex;
  }
  
  .text2-link a {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 27px;
    margin-right: 20px;
  }
  
  .text2-text2 {
    height: 32px;
    display: flex;
    align-items: flex-start;
  }
  
  .text2-text2 a {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    color: #00a3ff;
    margin-top: 10px;
  }
  
  .line-a {
    background: #00a3ff;
    width: 2px;
    height: 20px;
    display: block;
    margin: 15px 10px 0px 10px;
    border: 1px solid #00a3ff;
  }
  
  .text2-text2 a:hover,
  .text2-link a:hover {
    color: #fbb226;
    transform: scale(1.1);
  }
  
  .contack-sosyal {
    width: 50%;
    height: 100px;
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
  }
  
  .wk-box {
    width: 60px;
    height: 60px;
    border: 2px solid #711f7e;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: 0.5s all ease;
    margin-right: 0px;
    transition: 0.5s all ease;
    animation-name: ani15;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
  }
  
  .wk-box a img {
    width: 30px;
    height: 30px;
  }
  
  .wk-box:hover {
    transform: scale(1.4);
  }
  
  .odnoclass-box {
    width: 60px;
    height: 60px;
    border: 2px solid #711f7e;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: 0.5s all ease;
    margin-right: 0px;
    transition: 0.5s all ease;
    animation-name: ani16;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
  }
  
  .odnoclass-box a img {
    width: 30px;
    height: 30px;
  }
  
  .odnoclass-box:hover {
    transform: scale(1.4);
  }
  
  .telegram-box {
    width: 60px;
    height: 60px;
    border: 2px solid #711f7e;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: 0.5s all ease;
    animation-name: ani17;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
  }
  
  .telegram-box a img {
    width: 30px;
    height: 30px;
  }
  
  .telegram-box:hover {
    transform: scale(1.4);
  }
  
  @keyframes ani15 {
    from {
      border: 2px solid red;
    }
    to {
      border: 2px solid yellow;
    }
  }
  
  @keyframes ani16 {
    from {
      border: 2px solid yellow;
    }
    to {
      border: 2px solid red;
    }
  }
  
  @keyframes ani17 {
    from {
      border: 2px solid green;
    }
    to {
      border: 2px solid #711f7e;
    }
  }
  
  /* contack home end code  */


/* tag menu start */

.tagcontainer {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 65px auto 0px auto;
}

.tagcontent {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.tagcontent a {
    width: 10.5%;
    height: 23px;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 10px;
    color: #ffffff;
}

.tagcontent .yellowlink {
    color: #ffffff;
    border: 1px solid #fbb226;
    box-sizing: border-box;
    animation-name: ani11;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
}

.tagcontent .redlink {
    color: #ffffff;
    border: 1px solid #d94f46;
    box-sizing: border-box;
    animation-name: ani12;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
}

.tagcontent .bluelink {
    color: #ffffff;
    border: 1px solid #4b8ddb;
    box-sizing: border-box;
    animation-name: ani10;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
}

@keyframes ani10 {
    from {
        border: 1px solid #d94f46;
    }
    to {
        border: 1px solid #4b8ddb;
    }
}

@keyframes ani11 {
    from {
        border: 1px solid #fbb226;
    }
    to {
        border: 1px solid #4b8ddb;
    }
}

@keyframes ani12 {
    from {
        border: 1px solid #d94f46;
    }
    to {
        border: 1px solid #fbb226;
    }
}


/* tag menu end */


/* line start code */

.line {
    width: 100vw;
    height: 2px;
    background: #353559;
    transform: matrix(1, 0, 0, -1, 0, 0);
    margin-top: 60px;
}


/* line end code */


/* footer menu start code */

.footermenu-container {
    width: 100%;
    height: 16px;
    display: flex;
    margin: 48px auto 0 auto;
}

.footermenu-content {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
}

.footermenu-list {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footermenu-list li a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
    color: #ffffff;
}

.footermenu-list li a:hover {
    color: #4b8ddb;
}

.footermenu-list span {
    width: 2px;
    height: 14px;
    background: gray;
}

.footermenu-list #menu-a::before {
    display: none;
}


/* footer menu end code */


/* rekvizet start code */

.rekvizet {
    width: 100%;
    height: 27px;
    display: flex;
    margin: 30px auto;
}

.rekvizetcontent {
    width: 100%;
    max-width: 60%;
    align-items: center;
    justify-content: flex-start;
}

.rekvizetcontent p {
    color: #ffffff;
    font-size: 12px;
}


/* rekvizet endcode */


/* site menu vector start */

.vector3 {
    position: absolute;
    width: 196px;
    height: 196px;
    left: -15%;
    top: 10px;
    z-index: -1;
}

.vector4 {
    position: absolute;
    width: 3600px;
    left: -390px;
    top: 80px;
    z-index: -1;
    display: none;
}

.vector5 {
    position: absolute;
    width: 214.62px;
    height: 214px;
    left: 1090px;
    top: 285px;
}


/* site menu vector end  */


/* fortfolyo vector start code */

.vector6 {
    position: absolute;
    width: 603.49px;
    height: 123px;
    left: -495px;
    top: -180px;
}

.vector7 {
    position: absolute;
    width: 515px;
    height: 465px;
    left: 680px;
    top: -335px;
    animation-name: ani1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
    z-index: -1;
}

@keyframes ani1 {
    from {
        opacity: 0.5;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

.vector8 {
    position: absolute;
    width: 376px;
    height: 376px;
    left: -200px;
    top: 350px;
    z-index: -1;
}


/* fortfolyo vector end code */


/* form3 vector start code */

.vector9 {
    position: absolute;
    width: 196px;
    height: 196px;
    /* left: 1190px; */
    right: -240px;
    top: -85px;
    z-index: -11;
}

.vector10 {
    position: absolute;
    width: 3600px;
    height: 2px;
    left: -420px;
    top: 240px;
    z-index: -1;
    transform: rotate(-162.04deg);
    background: #353559;
    display: none;
}


/* form3 vector end code */


/* service vector start code */

.vector11 {
    position: absolute;
    width: 214.62px;
    height: 214px;
    left: -185px;
    top: 60px;
    z-index: -2;
}

.vector12 {
    position: absolute;
    width: 295px;
    height: 295px;
    left: 990px;
    top: 380px;
    z-index: -2;
}

.vector13 {
    position: absolute;
    width: 179.32px;
    height: 179.32px;
    left: 1150px;
    top: 520px;
    z-index: 1;
}


/* service vector end code */


/* blog vector start code */

.vector14 {
    position: absolute;
    width: 603.49px;
    height: 123px;
    left: -490px;
    top: -210px;
}

.vector15 {
    position: absolute;
    width: 3600px;
    left: -430px;
    top: 40px;
    z-index: -1;
    transform: rotate(-180.04deg);
    display: none;
}

.vector16 {
    position: absolute;
    width: 597px;
    height: 473px;
    left: 590px;
    top: -340px;
    animation-name: ani2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
    z-index: -1;
}

@keyframes ani2 {
    from {
        opacity: 0.2;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1.1);
    }
}


/* blog vector end code */


/* personal vector start code */

.vector17 {
    position: absolute;
    width: 214.62px;
    height: 214px;
    left: -150px;
    top: -358px;
    z-index: -1;
}

.vector18 {
    position: absolute;
    width: 413px;
    height: 433px;
    left: 690px;
    top: -315px;
    z-index: -2;
    animation-name: ani3;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-style: preserve-3d;
}

@keyframes ani3 {
    from {
        transform: scale(1);
        opacity: 0.2;
    }
    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

.vector19 {
    position: absolute;
    width: 196px;
    height: 196px;
    left: 1188px;
    top: 650px;
}


/* personal vector end code  */


/* VICTOR END CODE */

@media screen and (min-width: 2000px) {
    section {
        width: 100%;
        max-width: 65%;
    }
    .menu-content {
        width: 100%;
        max-width: 65%;
    }
    .menu-list li a {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 16px;
        color: #ffffff;
        transition: all 0.3s ease;
        position: relative;
    }
    .form-box {
        width: 175px;
        height: 30px;
    }
    .fake-box {
        width: 180px;
        height: 30px;
    }
    .mainslider {
        width: 120%;
        height: 1000px;
        display: flex;
    }
    .mainslider .item {
        width: 100%;
        margin: 0 auto;
        height: 850px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .slider-in {
        width: 100%;
        height: 850px;
        background: url(../img/Laptop-home.jpg);
        background-repeat: no-repeat;
        background-size: 90%;
        background-position: right -60px;
    }
    .slider-box {
        width: 100%;
        height: 850px;
        display: flex;
        align-items: center;
        background: url(/img/vg.svg);
        background-repeat: no-repeat;
        background-size: 92%;
        background-position-x: 180px;
        background-position-y: -70px;
    }
    .slider-text {
        width: 40%;
        height: 70%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: -50px;
    }
    .slider-box h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 100px;
        line-height: 103.9%;
        /* or 88px */
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form2-btn {
        width: 240px;
        height: 60px;
        border: 2px solid #fbb226;
        box-sizing: border-box;
        background: transparent;
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 18px;
        text-transform: uppercase;
        color: #ffffff;
        transition: all 0.5s;
        z-index: 5;
        margin-top: 100px;
    }
    .mainslider .owl-dots .owl-dot {
        width: 20px;
        height: 20px;
        margin: 8px;
    }
    .site-menucontainer {
        width: 100%;
        height: 800px;
        display: flex;
        box-sizing: border-box;
        margin: 100px auto 0 auto;
        position: relative;
    }
    .site-menucontainer a {
        display: block;
        width: 32%;
        height: 400px;
        margin-bottom: 30px;
    }
    .site-menucontainer a .menu-box {
        width: 100%;
        height: 100%;
        background: #711f7e;
        display: flex;
        align-items: flex-start;
        justify-content: space-around;
        box-sizing: border-box;
        flex-direction: column;
        padding-left: 30px;
    }
    .menu-box2 h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 23px;
        color: #ffffff;
        margin: 30px 0px;
    }
    .menu-box2 p {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 17px;
        line-height: 20px;
        letter-spacing: 0.05em;
        color: #ffffff;
        margin: 30px 0px;
    }
    .site-menucontainer a .menu-box .icon1,
    .site-menucontainer a .menu-box .pcicon1,
    .site-menucontainer a .menu-box .nnn1,
    .site-menucontainer a .menu-box .bask1,
    .site-menucontainer a .menu-box .ico1,
    .site-menucontainer a .menu-box .opt1,
    .site-menucontainer a .menu-box .icon2,
    .site-menucontainer a .menu-box .pcicon2,
    .site-menucontainer a .menu-box .nnn2,
    .site-menucontainer a .menu-box .bask2,
    .site-menucontainer a .menu-box .ico2,
    .site-menucontainer a .menu-box .opt2 {
        width: 80px;
        height: 80px;
    }
    .cardcontainer {
        width: 100%;
        height: 550px;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        align-items: center;
        justify-content: space-between;
    }
    .cardimg {
        width: 100%;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cardtext {
        width: 100%;
        height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
        background: #25253e;
    }
    .cardtext h2 {
        display: flex;
        width: 100%;
        font-size: 24px;
        color: #ffffff;
        margin-bottom: 20px;
        align-items: center;
        justify-content: center;
    }
    .cardtext p {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 18px;
        color: #ffffff;
    }
    .fortfolyo {
        width: 100%;
        height: 624px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        margin-top: 410px;
        position: relative;
    }
    .fortfolyo .baslik {
        width: 100%;
        margin: 0px auto 50px auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .fortfolyo .baslik h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 45px;
        line-height: 43px;
        color: #ffffff;
        margin-right: 50px;
    }
    .fortfolyo .baslik-text {
        width: 290px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 2px solid #711f7e;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.5s;
        margin-left: 35px;
    }
    .fortfolyo .baslik-text p,
    .fortfolyo .baslik-text a {
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 21px;
        text-transform: uppercase;
        color: #ffffff;
    }
    .fortfolyo-slider {
        width: 127%;
        display: flex;
        position: relative;
        margin: 0 auto;
    }
    .form3-container {
        width: 100%;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        z-index: 3;
        margin: 300px auto 0 auto;
    }
    .form3-item span {
        font-style: normal;
        font-weight: 600;
        font-size: 30px;
        line-height: 37px;
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form3-item #form3-open {
        width: 240px;
        height: 60px;
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 19px;
        /* or 19px */
        display: flex;
        align-items: center;
        text-align: center;
        text-transform: uppercase;
        justify-content: center;
        background: transparent;
        color: #ffffff;
        border: 2px solid #ffffff;
        box-sizing: border-box;
        cursor: pointer;
    }
    .service-container {
        width: 100%;
        display: flex;
        box-sizing: border-box;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 230px auto 0 auto;
        z-index: 2;
        position: relative;
    }
    .service-container .service-text h5 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 45px;
        line-height: 43px;
        color: #ffffff;
    }
    .service-container a {
        display: block;
        width: 32%;
        height: 117px;
        margin-bottom: 30px;
        z-index: 24;
    }
    .service-container .service-box span {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 25px;
        line-height: 28px;
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .service-box img {
        width: 60px;
        height: 60px;
    }
    .trafic-container {
        width: 100vw;
        height: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        background: url(../img/Rectangle-90.jpg);
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center center;
        padding: 100px;
        margin-top: 250px;
    }
    .trafic-content {
        width: 100%;
        max-width: 65%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    .trafic-item span {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 65px;
        line-height: 61px;
        /* identical to box height */
        text-align: center;
    }
    .trafic-item p {
        width: 120px;
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 22px;
        line-height: 21px;
        text-align: center;
        color: #ffffff;
    }
    .blog {
        width: 100%;
        height: 618px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 390px auto 0 auto;
        position: relative;
    }
    .blog .baslik {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 50px;
    }
    .blog .baslik-text {
        width: 300px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 2px solid #711f7e;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.5s;
        margin-left: 35px;
    }
    .blog .baslik-text p,
    .blog .baslik-text a {
        font-style: normal;
        font-weight: 500;
        font-size: 22px;
        line-height: 21px;
        text-transform: uppercase;
        color: #ffffff;
    }
    .blog-slider {
        width: 127%;
        height: 100%;
        display: flex;
    }
    .person-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin: 400px auto 0 auto;
        position: relative;
    }
    .person-text p {
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 22px;
        color: #fbb226;
        margin-bottom: 5px;
    }
    .person-text span {
        font-style: normal;
        font-weight: 600;
        font-size: 45px;
        line-height: 43px;
        color: #ffffff;
    }
    .person-card {
        width: 19%;
        height: 330px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;
        padding: 15px;
        border: 2px solid #25253e;
        box-sizing: border-box;
        margin-bottom: 15px;
        transition: all 0.6s ease-in-out;
        z-index: 3;
        background: #181828;
    }
    .person-card span {
        font-style: normal;
        font-weight: normal;
        font-size: 28px;
        line-height: 27px;
        color: #ffffff;
    }
    .person-card p {
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 19px;
        color: #ffffff;
    }
    .person-card i {
        font-size: 18px;
        color: #711f7e;
        padding: 5px 10px 0px 0px;
    }
    .person-card .from {
        font-size: 16px;
        color: #711f7e;
    }
   
  .contacthome-container {
    width: 100vw;
    height: 700px;
    display: flex;
    flex-direction: column;
    background: url(../img/back.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
    margin-top: 228px;
  }
  .contact-content {
    width: 100%;
    max-width: 65%;
    height: 80%;
    display: flex;
 
    justify-content: space-between;
   
  }
  .contact-text {
    width: 48%;
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .contact-baslik {
    display: flex;
    flex-direction: column;
    margin-bottom: 20%;
  }
  .contact-baslik p {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: #fbb226;
  }
  .contact-baslik h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 45px;
    line-height: 43px;
    color: #ffffff;
  }
  .tel-mail {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tel-mail a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 15px;
    transition: 0.5s;
  }
  .tel-mail a:hover {
    color: #fbb226;
    transform: scale(1.2);
  }
  .contact-text2 {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .text2-text1 {
    display: flex;
    flex-direction: column;
  }
  .text2-text1 p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 22px;
    color: #ffffff;
  }
  .text2-link {
    display: flex;
  }
  .text2-link a {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 27px;
    margin-right: 20px;
  }
  .text2-text2 {
    height: 32px;
    display: flex;
    align-items: flex-start;
  }
  .text2-text2 a {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    display: flex;
    color: #00a3ff;
    margin-top: 10px;
  }
  .line-a {
    background: #00a3ff;
    width: 2px;
    height: 24px;
    display: block;
    margin: 15px 10px 0px 10px;
    border: 1px solid #00a3ff;
  }
    .tagcontainer {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin: 75px auto 0px auto;
    }
    .tagcontent {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .tagcontent a {
        width: 15%;
        height: 40px;
        color: #ffffff;
        align-items: center;
        justify-content: center;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 16px;
        display: flex;
        align-items: center;
        text-align: center;
        margin-top: 20px;
        color: #ffffff;
    }
    .footermenu-container {
        width: 100%;
        height: 20px;
        display: flex;
        margin: 48px auto 0 auto;
        align-items: flex-start;
    }
    .footermenu-content {
        width: 60%;
        height: 100%;
        display: flex;
        align-items: flex-start;
        margin: 0;
    }
    .footermenu-list {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footermenu-list li a {
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 16px;
        color: #ffffff;
    }
    .footermenu-list li a:hover {
        color: #4b8ddb;
    }
    .footermenu-list span {
        width: 2px;
        height: 16px;
        background: gray;
    }
    .rekvizet {
        width: 100%;
        height: 27px;
        display: flex;
        margin: 30px auto;
    }
    .rekvizetcontent {
        width: 100%;
        max-width: 80%;
        align-items: center;
        justify-content: flex-start;
    }
    .rekvizetcontent p {
        color: #ffffff;
        font-size: 15px;
    }
    .vector3 {
        position: absolute;
        width: 196px;
        height: 196px;
        left: -12%;
        top: -40px;
        z-index: -1;
    }
    .vector5 {
        position: absolute;
        width: 214.62px;
        height: 214px;
        left: 97%;
        top: 275px;
    }
    .vector15 {
        position: absolute;
        width: 3600px;
        left: -430px;
        top: 40px;
        z-index: -1;
        transform: rotate(-180.04deg);
        display: none;
    }
    .vector7 {
        position: absolute;
        width: 515px;
        height: 465px;
        left: 60%;
        top: -335px;
        animation-name: ani1;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transform-style: preserve-3d;
        z-index: -1;
    }
    @keyframes ani1 {
        from {
            opacity: 0.5;
            transform: scale(1);
        }
        to {
            opacity: 1;
            transform: scale(1.1);
        }
    }
    .vector12 {
        position: absolute;
        width: 295px;
        height: 295px;
        left: 89%;
        top: 375px;
        z-index: -2;
    }
    .vector13 {
        position: absolute;
        width: 179.32px;
        height: 179.32px;
        left: 100%;
        top: 530px;
        z-index: 1;
    }
    .vector19 {
        position: absolute;
        width: 196px;
        height: 196px;
        left: 102%;
        top: 700px;
    }
    @media screen and (min-width: 2230px) {
        .cardcontainer {
            width: 100%;
        }
    }
}

@media screen and (max-width: 1860px) {
    .cardcontainer {
        width: 100%;
    }
}

@media screen and (max-width: 1720px) {
    section {
        width: 100%;
        max-width: 65%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    .menu-content {
        width: 100%;
        max-width: 65%;
        margin: 0 auto;
        display: flex;
        position: fixed;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    /* main slider vector start code */
    .main-vector {
        width: 100vw;
        display: flex;
        justify-content: space-between;
    }
    .main-vector .vector1 {
        width: 500px;
        height: 123px;
        margin-left: -17%;
        margin-top: 10px;
        z-index: 3;
    }
    .main-vector .vector2 {
        width: 175px;
        height: 175px;
        margin-right: 8%;
        margin-top: 60px;
        z-index: 3;
    }
    /* main slider vector end code */
    /* galeri slider start code */
    .mainslider {
        width: 106%;
        height: 600px;
        display: flex;
    }
    .mainslider .item {
        width: 100%;
        margin: 0 auto;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .slider-in {
        width: 100%;
        height: 600px;
        background: url(../img/Laptop-home.jpg);
        background-repeat: no-repeat;
        background-size: 70%;
        background-position: right -50px;
    }
    .slider-box {
        width: 100%;
        height: 500px;
        display: flex;
        align-items: center;
        background: url(/img/vg.svg);
        background-repeat: no-repeat;
        background-size: 76%;
        background-position-x: 100%;
        background-position-y: -50px;
    }
    .slider-text {
        width: 40%;
        height: 70%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-top: -50px;
    }
    .slider-box h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 85px;
        line-height: 103.9%;
        /* or 88px */
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form2-btn {
        width: 220px;
        height: 60px;
        border: 2px solid #fbb226;
        box-sizing: border-box;
        background: transparent;
        font-style: normal;
        font-weight: 500;
        font-size: 17px;
        line-height: 18px;
        text-transform: uppercase;
        color: #ffffff;
        transition: all 0.5s;
        z-index: 5;
        margin-top: 40px;
    }
    .form2-btn:hover {
        background: #fbb226;
        border: 1px solid #ffffff;
    }
    .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -100px;
        margin-right: 15%;
    }
    .mainslider .owl-dots .owl-dot {
        width: 15px;
        height: 15px;
        border: 2px solid #e9dfdb !important;
        box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        border-radius: 100%;
        margin: 5px;
    }
    .mainslider .owl-dots .owl-dot.active,
    .mainslider .owl-dots .owl-dot:hover {
        background: #ffffff !important;
        z-index: 3;
    }
    /* galeri slider end code */
    .cardcontainer {
        width: 100%;
        height: 471px;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        align-items: center;
        justify-content: space-between;
    }
    .site-menucontainer {
        margin-top: 30px;
    }
    .fortfolyo-slider {
        width: 127%;
    }
    .blog-slider {
        width: 127%;
    }
    .trafic-content {
        width: 100%;
        max-width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 auto;
    }

    /* .contacthome-container{
        padding:40px;
    } */
    .contact-content {
        width: 100%;
        max-width: 65%;
        height: 80%;
        display: flex;
        margin: 0 auto;
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 0;
    }
    .tagcontent a {
        width: 10.5%;
        height: 23px;
    }
    /* vector start code */
    /* site menu vector start */
    .vector3 {
        position: absolute;
        width: 170px;
        height: 170px;
        left: -11%;
        top: 10px;
        z-index: -1;
    }
    .vector4 {
        position: absolute;
        width: 3600px;
        left: -390px;
        top: 80px;
        z-index: -1;
        display: none;
    }
    .vector5 {
        position: absolute;
        width: 214.62px;
        height: 214px;
        left: 89%;
        top: 285px;
    }
    /* site menu vector end  */
    /* fortfolyo vector start code */
    .vector6 {
        position: absolute;
        width: 603.49px;
        height: 123px;
        left: -20%;
        top: -180px;
    }
    .vector7 {
        position: absolute;
        width: 495px;
        height: 440px;
        left: 50%;
        top: -335px;
        animation-name: ani1;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transform-style: preserve-3d;
        z-index: -1;
    }
    @keyframes ani1 {
        from {
            opacity: 0.5;
            transform: scale(1);
        }
        to {
            opacity: 1;
            transform: scale(1.1);
        }
    }
    .vector8 {
        position: absolute;
        width: 350px;
        height: 350px;
        left: -10%;
        top: 350px;
        z-index: -1;
    }
    /* fortfolyo vector end code */
    /* form3 vector start code */
    .vector9 {
        position: absolute;
        width: 160px;
        height: 160px;
        /* left: 1190px; */
        right: -10%;
        top: -110px;
        z-index: -11;
    }
    .vector10 {
        position: absolute;
        width: 3600px;
        height: 2px;
        left: -420px;
        top: 240px;
        z-index: -1;
        transform: rotate(-162.04deg);
        background: #353559;
        display: none;
    }
    /* form3 vector end code */
    /* service vector start code */
    .vector11 {
        position: absolute;
        width: 190px;
        height: 190px;
        left: -8%;
        top: 80px;
        z-index: -2;
    }
    .vector12 {
        position: absolute;
        width: 295px;
        height: 295px;
        left: 990px;
        top: 380px;
        z-index: -2;
    }
    .vector13 {
        position: absolute;
        width: 179.32px;
        height: 179.32px;
        left: 1150px;
        top: 520px;
        z-index: 1;
    }
    /* service vector end code */
    /* blog vector start code */
    .vector14 {
        position: absolute;
        width: 603.49px;
        height: 123px;
        left: -20%;
        top: -180px;
    }
    .vector15 {
        position: absolute;
        width: 3600px;
        left: -430px;
        top: 40px;
        z-index: -1;
        transform: rotate(-180.04deg);
        display: none;
    }
    .vector16 {
        position: absolute;
        width: 555px;
        height: 445px;
        left: 50%;
        top: -340px;
        animation-name: ani2;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transform-style: preserve-3d;
        z-index: -1;
    }
    @keyframes ani2 {
        from {
            opacity: 0.2;
            transform: scale(1);
        }
        to {
            opacity: 1;
            transform: scale(1.1);
        }
    }
    /* blog vector end code */
    /* personal vector start code */
    .vector17 {
        position: absolute;
        width: 190px;
        height: 190px;
        left: -5%;
        top: -358px;
        z-index: -1;
    }
    .vector18 {
        position: absolute;
        width: 380px;
        height: 400px;
        left: 50%;
        top: -315px;
        z-index: -2;
        animation-name: ani3;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transform-style: preserve-3d;
    }
    @keyframes ani3 {
        from {
            transform: scale(1);
            opacity: 0.2;
        }
        to {
            transform: scale(1.1);
            opacity: 1;
        }
    }
    .vector19 {
        position: absolute;
        width: 145px;
        height: 145px;
        left: 98%;
        top: 780px;
    }
}

@media screen and (max-width: 1650px) {
    .cardcontainer {
        width: 100%;
    }
    /* service vector start code */
    .vector11 {
        position: absolute;
        width: 190px;
        height: 190px;
        left: -8%;
        top: 80px;
        z-index: -2;
    }
    .vector12 {
        position: absolute;
        width: 260px;
        height: 260px;
        left: 850px;
        top: 380px;
        z-index: -2;
    }
    .vector13 {
        position: absolute;
        width: 165px;
        height: 165.32px;
        left: 960px;
        top: 520px;
        z-index: 1;
    }
    /* service vector end code */
}

@media screen and (max-width: 1500px) {
    section {
        width: 100%;
        max-width: 75%;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    /* menu start code */
    .menu-content {
        width: 100%;
        max-width: 75%;
        height: 100%;
        display: flex;
        position: fixed;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .navbar .menu-list {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
    }
    .navbar .logo {
        width: 68.66px;
        height: 54.89px;
    }
    .menu-list li a {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
        text-align: center;
        color: #ffffff;
        transition: all 0.3s ease;
        position: relative;
    }
    .menu-list .tel a {
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 19px;
        line-height: 23px;
        display: flex;
        align-items: center;
        text-align: right;
        color: #ffffff;
    }
    /* contack modal start code */
    .form-box {
        width: 164px;
        height: 30px;
    }
    .fake-box {
        width: 164px;
        height: 30px;
    }
    #modal-open {
        width: 100%;
        height: 30px;
        color: #ffffff;
        text-align: center;
        cursor: pointer;
        background: #711f7e;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        font-style: normal;
        font-weight: normal;
        font-size: 15px;
        line-height: 18px;
        position: relative;
    }
    #modal-open img {
        margin-right: 10px;
    }
    /* contack modal end code */
    /* menu end code */
    /* main slider vector start code */
    .main-vector {
        width: 100vw;
        display: flex;
        justify-content: space-between;
    }
    .main-vector .vector1 {
        width: 470.34px;
        height: 95.86px;
        margin-left: -10%;
        margin-top: 23px;
        z-index: 3;
    }
    .main-vector .vector2 {
        width: 167.26px;
        height: 166.78px;
        margin-right: 12%;
        margin-top: 59px;
        z-index: 3;
    }
    /* main slider vector end code */
    /* galeri slider start code */
    .mainslider {
        width: 115%;
        height: 600px;
    }
    .mainslider .item {
        width: 100%;
        margin: 0 auto;
        height: 700px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .slider-in {
        width: 100%;
        height: 700px;
        background: url(/img/Laptop-home.jpg);
        background-repeat: no-repeat;
        background-size: 70%;
        background-position-y: -10px;
        background-position-x: 50%;
    }
    .slider-box {
        width: 100%;
        height: 600px;
        display: flex;
        align-items: flex-start;
        background: url(/img/vg.svg);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position-x: 70%;
        background-position-y: -30px;
    }
    .slider-text {
        width: 40%;
        height: 70%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-top: 30px;
    }
    .slider-text h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 55px;
        line-height: 103.9%;
        /* or 78px */
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form2-btn {
        width: 200px;
        height: 55px;
        border: 2px solid #fbb226;
        box-sizing: border-box;
        margin-top: 0px;
        background: transparent;
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 16px;
        text-transform: uppercase;
        color: #ffffff;
        transition: all 0.5s;
    }
    .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -150px;
        margin-right: 15%;
    }
    .mainslider .owl-dots .owl-dot {
        width: 15px;
        height: 15px;
        border: 2px solid #e9dfdb !important;
        box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        border-radius: 100%;
        margin: 5px;
    }
    .mainslider .owl-dots .owl-dot.active,
    .mainslider .owl-dots .owl-dot:hover {
        background: #ffffff !important;
        z-index: 3;
    }
    /* galeri slider end code */
    /* page up start */
    .page-up {
        width: 50px;
        height: 50px;
        display: block;
        position: fixed;
        left: 90%;
        right: 10%;
        top: 90vh;
        z-index: 2;
    }
    .page-up a {
        width: 50px;
        height: 100%;
    }
    .page-up img {
        width: 100%;
        height: 100%;
    }
    /* page up end */
    .site-menucontainer {
        height: inherit;
    }
    .site-menucontent {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    .site-menucontainer a {
        display: block;
        width: 32%;
        height: 273px;
        margin-bottom: 20px;
    }
    .site-menucontainer a .menu-box {
        width: 100%;
        height: 100%;
    }
    .menu-box img {
        margin-top: 41px;
    }
    .menu-box2 h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 24px;
        color: #ffffff;
        margin: 20px 0px;
    }
    .menu-box2 p {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        /* or 143% */
        letter-spacing: 0.02em;
        color: #ffffff;
        margin: 20px 0px;
    }
    /* site menu end code */
    /* cardcontainer start code */
    .cardcontainer {
        width: 100%;
        height: 364px;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        align-items: center;
        justify-content: space-between;
    }
    .cardimg {
        width: 100%;
        height: 264px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cardtext {
        width: 100%;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
        background: #25253e;
    }
    .cardtext h2 {
        display: flex;
        width: 100%;
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        color: #ffffff;
    }
    .cardtext p {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 15px;
        line-height: 18px;
        text-align: center;
        color: #ffffff;
    }
    /* cardcontainer  end */
    /*  fortfolyo start code */
    .fortfolyo {
        width: 100%;
        height: 433px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        position: relative;
        margin-top: 190px;
        z-index: 3;
    }
    .fortfolyo .baslik {
        width: 100%;
        margin: 0px auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 7px;
    }
    .baslik h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 31px;
        line-height: 38px;
        color: #ffffff;
        margin-right: 50px;
    }
    .baslik-text {
        width: 192px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 2px solid #711f7e;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.5s;
        margin-left: 35px;
    }
    .baslik-text p,
    .baslik-text a {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 18px;
        text-transform: uppercase;
        color: #ffffff;
    }
    .fortfolyo-slider {
        width: 117%;
        display: flex;
        position: relative;
        margin: 30px auto 0 auto;
    }
    .fortfolyo-slider .resim {
        width: 100%;
        margin: 0 auto;
    }
    .fortfolyo-slider .owl-dots .owl-dot {
        width: 14px;
        height: 6px;
    }
    .fortfolyo-slider .owl-dots .owl-dot.active {
        width: 37px;
        height: 4px;
    }
    /* portfolyo end code */
    /* form3 start code */
    .form3-container {
        margin: 210px auto 0 auto;
        z-index: 2;
    }
    .form3-content {
        width: 100%;
    }
    .form3-item {
        width: 100%;
        height: 130px;
        padding: 0;
    }
    .form3-item span {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 26px;
        line-height: 32px;
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form3-item #form3-open {
        width: 206px;
        height: 55px;
        border: 2px solid #ffffff;
        box-sizing: border-box;
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 16px;
        display: flex;
        align-items: center;
        text-align: center;
        text-transform: uppercase;
        color: #ffffff;
        z-index: 2;
    }
    /* form3 end code */
    /* SERVICE START CODE */
    .service-container {
        max-width: 100%;
        margin: 147px auto 0px auto;
    }
    .service-container .service-text {
        margin-bottom: 38px;
    }
    .service-container .service-text h5 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 31px;
        line-height: 38px;
        color: #ffffff;
    }
    .service-container a {
        display: block;
        width: 32%;
        height: 104px;
        margin-bottom: 2%;
    }
    .service-container .service-box span {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 22px;
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .service-box img {
        width: 39px;
        height: 38px;
        object-fit: contain;
    }
    /* SERVICE END CODE */
    /* TRAFIC START CODE */
    .trafic-container {
        width: 100vw;
        height: 500px;
        padding: 100px;
        margin-bottom: 0px;
        background-position: right;
    }
    .trafic-content {
        width: 90%;
        height: 100%;
        max-width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    .trafic-item span {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 35px;
        line-height: 55px;
        text-align: center;
        margin-bottom: 15px;
    }
    .trafic-item p {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 21px;
        text-align: center;
        color: #ffffff;
    }
    /*  trafic end code */
    /* BLOG START CODE */
    .blog {
        width: 100%;
        height: 433px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        position: relative;
        margin-top: 230px;
        z-index: 3;
    }
    .blog .baslik {
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .blog .baslik h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 31px;
        line-height: 38px;
        color: #ffffff;
        margin-right: 50px;
    }
    .blog .baslik-text {
        width: 247px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 2px solid #711f7e;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.5s;
        margin-left: 35px;
    }
    .blog .baslik-text p,
    .blog .baslik-text a {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 18px;
        text-transform: uppercase;
        color: #ffffff;
    }
    .blog-slider {
        width: 117%;
        display: flex;
        position: relative;
        margin: 30px auto 0 auto;
    }
    .blog-slider .resim {
        width: 100%;
        margin: 0 auto;
    }
    .blog-slider .owl-dots .owl-dot {
        width: 14px;
        height: 6px;
    }
    .blog-slider .owl-dots .owl-dot.active {
        width: 37px;
        height: 4px;
    }
    /* BLOG END CODE */
    /* PERSON START CODE  */
    .person-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin-top: 259px;
        margin-bottom: 0px;
        position: relative;
    }
    .person-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 0px;
        margin-bottom: 30px;
    }
    .person-text p {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 18px;
        color: #fbb226;
    }
    .person-text span {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 31px;
        line-height: 38px;
        color: #ffffff;
    }


    

.personal-list{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.person-btn{
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #711f7e;
    padding: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #ffffff;
    cursor: pointer;
    transition: .5s;
    
  
    
}


.goster{
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fbb226;
    padding: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #ffffff;
    cursor: pointer;
    transition: .5s;

}


    .person-box{
        width: 100%;
        height: fit-content;
        display: flex;
        margin-top: 70px;
        flex-wrap: wrap;
        column-gap: 1.2%;
    }
    
    
    
    .person-card {
        width: 19%;
        height: 307px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;
        padding: 15px;
        border: 2px solid #25253e;
        box-sizing: border-box;
        transition: all 0.6s ease-in-out;
        z-index: 3;
        background: #181828;
        margin-bottom: 15px;
    }
    .person-card span {
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 17px;
        line-height: 23px;
        color: #ffffff;
    }
    .person-card p {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
        color: #ffffff;
    }
    .person-card img {
        width: 95px;
        height: 95px;
    }
    .person-card i {
        font-size: 12px;
        color: #711f7e;
        padding: 5px 10px 0px 0px;
    }
    .person-card .from {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
        color: #711f7e;
    }
    /* PERSON END CODE */
    /* CONtACK HOME STaRT CODE */
  .contacthome-container {
    width: 100vw;
    height: 500px;
    display: flex;
    flex-direction: column;
    background: url(../img/back.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: center;
    background-position-y: center;
    position: relative;
    background-size: cover;
    margin-top: 154px;
  }
  .contact-content {
    width: 100%;
    max-width: 75%;
  }
  .contact-baslik p {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #fbb226;
  }
  .contact-baslik h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 31px;
    line-height: 38px;
    color: #ffffff;
  }
  .tel-mail {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tel-mail a {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #ffffff;
  }

  
.telegram-wp-p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 10px;
  }
  .text2-text1 p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
    color: #ffffff;
  }
  .text2-link a {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 27px;
    margin-right: 20px;
  }
  .text2-text2 a {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #00a3ff;
    margin-top: 10px;
  }
  .line-a {
    background: #00a3ff;
    width: 2px;
    height: 15px;
    display: block;
    margin: 15px 10px 0px 10px;
    border: 1px solid #00a3ff;
  }
  /* CONtACK HOME END CODE */
    /* tag menu start */
    .tagcontainer {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin: 65px auto 0px auto;
    }
    .tagcontent {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .tagcontent a {
        width: 16%;
        height: 28.44px;
        color: #ffffff;
        align-items: center;
        justify-content: center;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 10px;
        line-height: 12px;
        display: flex;
        align-items: center;
        text-align: center;
        margin-top: 10px;
    }
    /* tag menu end */
    /* line start code */
    .line {
        width: 100vw;
        height: 2px;
        background: #353559;
        transform: matrix(1, 0, 0, -1, 0, 0);
        margin-top: 60px;
    }
    /* line end code */
    /* footer menu start code */
    .footermenu-container {
        width: 100%;
        height: 16px;
        display: flex;
        margin: 48px auto 0 auto;
    }
    .footermenu-content {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        display: flex;
    }
    .footermenu-list {
        width: 74%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footermenu-list li a {
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 13px;
        line-height: 16px;
        color: #ffffff;
    }
    .footermenu-list li a:hover {
        color: #4b8ddb;
    }
    .footermenu-list span {
        width: 2px;
        height: 14px;
        background: gray;
    }
    /* footer menu end code */
    /* rekvizet start code */
    .rekvizet {
        width: 100%;
        height: 27px;
        display: flex;
        margin: 30px auto;
    }
    .rekvizetcontent {
        width: 100%;
        align-items: center;
        justify-content: flex-start;
    }
    .rekvizetcontent p {
        color: #ffffff;
        font-size: 12px;
    }
    /* rekvizet endcode */
    /* VICTOR START CODE */
    /* site menu vector start */
    .vector3 {
        position: absolute;
        width: 152.76px;
        height: 152.76px;
        left: -5%;
        top: -70px;
        z-index: -1;
    }
    .vector4 {
        position: absolute;
        width: 1591.2px;
        left: -190px;
        top: 110px;
        z-index: -1;
        display: none;
    }
    .vector5 {
        position: absolute;
        width: 167.26px;
        height: 166.78px;
        left: 91%;
        top: 216px;
    }
    /* site menu vector end  */
    /* fortfolyo vector start code */
    .vector6 {
        position: absolute;
        width: 470.34px;
        height: 95.86px;
        left: -20%;
        top: -180px;
    }
    .vector7 {
        position: absolute;
        width: 323.15px;
        height: 300px;
        left: 67%;
        top: -200px;
        animation-name: ani1;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transform-style: preserve-3d;
        z-index: -12;
    }
    @keyframes ani1 {
        from {
            opacity: 0.5;
            transform: scale(1);
        }
        to {
            opacity: 1;
            transform: scale(1.1);
        }
    }
    .vector8 {
        position: absolute;
        width: 293.04px;
        height: 293.04px;
        left: -10%;
        top: 280px;
        z-index: -1;
    }
    /* fortfolyo vector end code */
    /* form3 vector start code */
    .vector9 {
        position: absolute;
        width: 152.76px;
        height: 152.76px;
        /* left: 1190px; */
        right: -12.5%;
        top: -85px;
        z-index: -11;
    }
    .vector10 {
        position: absolute;
        width: 1591.2px;
        height: 2px;
        left: -240px;
        top: 150px;
        z-index: -1;
        transform: rotate(-162.04deg);
        background: #353559;
        display: none;
    }
    /* form3 vector end code */
    /* service vector start code */
    .vector11 {
        position: absolute;
        width: 167.26px;
        height: 166.78px;
        left: -7%;
        top: 65px;
        z-index: -2;
    }
    .vector12 {
        position: absolute;
        width: 229.91px;
        height: 229.91px;
        left: 84%;
        top: 240px;
        z-index: 2;
    }
    .vector13 {
        position: absolute;
        width: 139.76px;
        height: 139.76px;
        left: 97%;
        top: 358px;
        z-index: 1;
    }
    /* service vector end code */
    /* blog vector start code */
    .vector14 {
        position: absolute;
        width: 470.34px;
        height: 95.86px;
        left: -30%;
        top: -169px;
    }
    .vector15 {
        position: absolute;
        width: 1591.2px;
        left: -20%;
        top: -23px;
        z-index: -1;
        transform: rotate(-180.04deg);
        display: none;
    }
    .vector16 {
        position: absolute;
        width: 358.1px;
        height: 300px;
        left: 66%;
        top: -220px;
        animation-name: ani2;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transform-style: preserve-3d;
        z-index: -1;
    }
    @keyframes ani2 {
        from {
            opacity: 0.2;
            transform: scale(1);
        }
        to {
            opacity: 1;
            transform: scale(1.1);
        }
    }
    /* blog vector end code */
    /* personal vector start code */
    .vector17 {
        position: absolute;
        width: 167.26px;
        height: 166.78px;
        left: -6%;
        top: -230px;
        z-index: -1;
    }
    .vector18 {
        position: absolute;
        width: 286.14px;
        height: 300px;
        left: 66%;
        top: -200px;
        z-index: -2;
        animation-name: ani3;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transform-style: preserve-3d;
    }
    @keyframes ani3 {
        from {
            transform: scale(1);
            opacity: 0.2;
        }
        to {
            transform: scale(1.1);
            opacity: 1;
        }
    }
    .vector19 {
        position: absolute;
        width: 152.76px;
        height: 152.76px;
        left: 98%;
        top: 745px;
    }
    /* personal vector end code  */
    /* VICTOR END CODE */
}

@media screen and (max-width: 1350px) {
    section {
        max-width: 80%;
    }
    .menu-content {
        width: 100%;
        max-width: 80%;
        height: 100%;
        display: flex;
        position: fixed;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    /* sosial icon stard code */
    .sosial {
        position: fixed;
        width: 24.5px;
        height: 119.62px;
        left: 50px;
        top: 439px;
        z-index: 6;
        display: flex;
        flex-direction: column;
    }
    /* sosial end code */
    /* main slider vector start code */
    .main-vector {
        width: 100vw;
        display: flex;
        justify-content: space-between;
        top: 12%;
    }
    .main-vector .vector1 {
        width: 400.34px;
        height: 60px;
        margin-left: -11%;
        margin-top: 20px;
        z-index: 3;
    }
    .main-vector .vector2 {
        width: 140px;
        height: 140px;
        margin-right: 12%;
        margin-top: 40px;
        z-index: 3;
    }
    /* main slider vector end code */
    /* main slider start code */
    .mainslider {
        width: 108%;
    }
    .mainslider {
        margin-top: 80px;
    }
    .mainslider .item {
        width: 100%;
        margin: 0 auto;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .slider-in {
        width: 100%;
        height: 500px;
        background: url(../img/Laptop-home.jpg);
        background-repeat: no-repeat;
        background-size: 60%;
        background-position-y: -10px;
        background-position-x: 62%;
    }
    .slider-box {
        width: 100%;
        height: 400px;
        display: flex;
        align-items: flex-start;
        background: url(../img/vg.svg);
        background-repeat: no-repeat;
        background-size: 150% 120%;
        background-position-x: 50%;
        background-position-y: -50px;
    }
    .slider-text {
        width: 40%;
        height: 70%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-top: 50px;
    }
    .slider-text h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 55px;
        line-height: 103.9%;
        /* or 78px */
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form2-btn {
        width: 160px;
        height: 45px;
        border: 2px solid #fbb226;
        box-sizing: border-box;
        margin-top: 70px;
        background: transparent;
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        text-transform: uppercase;
        color: #ffffff;
        transition: all 0.5s;
    }
    .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -70px;
        margin-right: 15%;
    }
    .page-up {
        width: 50px;
        height: 50px;
        display: block;
        position: fixed;
        left: 93%;
        top: 90vh;
        z-index: 2;
    }
    .site-menucontainer {
        margin-top: 10px;
    }
    /* fortfolyo start code */
    .fortfolyo {
        margin-top: 200px;
    }
    .fortfolyo .baslik-text {
        width: 220px;
        margin-left: 0px;
    }
    .vector6 {
        position: absolute;
        width: 470.49px;
        height: 95px;
        left: -30%;
        top: -170px;
    }
    .vector7 {
        position: absolute;
        width: 323.15px;
        height: 300px;
        left: 60%;
        top: -200px;
        animation-name: ani1;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transform-style: preserve-3d;
        z-index: -1;
    }
    @keyframes ani1 {
        from {
            opacity: 0.5;
            transform: scale(1);
        }
        to {
            opacity: 1;
            transform: scale(1.1);
        }
    }
    .cardcontainer {
        width: 100%;
    }
    .fortfolyo-slider {
        width: 112%;
    }
    .blog-slider {
        width: 112%;
    }
    /* fort folyo end code */
    /* personel container vector start */
    .vector19 {
        position: absolute;
        width: 152.76px;
        height: 152.76px;
        left: 90%;
        top: 745px;
        z-index: -1;
    }
    /*  personal vector end */
    /* form 3 vector start */
    .vector9 {
        position: absolute;
        width: 130px;
        height: 130px;
        /* left: 1190px; */
        right: -8%;
        top: -85px;
        z-index: -11;
    }
    /* form 3 vector end code */
    /* service vector start code */
    .vector12 {
        position: absolute;
        width: 229.91px;
        height: 229.91px;
        left: 80%;
        top: 240px;
        z-index: -1;
    }
    .vector13 {
        position: absolute;
        width: 139.76px;
        height: 139.76px;
        left: 94%;
        top: 358px;
        z-index: -1;
    }
    /* service vector end code */
    .trafic-container {
        margin-top: 144px;
    }
    /* Контекстная реклама  PAGE START CODE*/
    /* Контекстная реклама  PAGE END CODE*/
}

@media screen and (max-width:1275px) {
    section {
        max-width: 80%;
    }
    .menu-content {
        width: 100%;
        max-width: 80%;
        height: 100%;
        display: flex;
        position: fixed;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .sosial {
        left: 1%;
    }
    .fortfolyo-slider {
        width: 112%;
    }
    .blog-slider {
        width: 112%;
    }
    .cardcontainer {
        width: 100%;
    }
   

.person-card {
    width: 19%;
    height: 307px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    padding: 15px;
    border: 2px solid #25253e;
    box-sizing: border-box;
    transition: all 0.6s ease-in-out;
    z-index: 3;
    background: #181828;
    margin-bottom: 15px;
}
    .vector5 {
        position: absolute;
        width: 167.26px;
        height: 166.78px;
        left: 89%;
        top: 216px;
    }
    .vector8 {
        position: absolute;
        width: 220px;
        height: 220px;
        left: -5%;
        top: 330px;
        z-index: -1;
    }
    .vector9 {
        position: absolute;
        width: 125px;
        height: 125px;
        /* left: 1190px; */
        right: -3%;
        top: -115px;
        z-index: -11;
    }
    /* service vector start code */
    .vector11 {
        position: absolute;
        width: 167.26px;
        height: 166.78px;
        left: -7%;
        top: 55px;
        z-index: -2;
    }
    .vector12 {
        position: absolute;
        width: 229.91px;
        height: 229.91px;
        left: 84%;
        top: 240px;
        z-index: 2;
    }
    .vector13 {
        position: absolute;
        width: 139.76px;
        height: 139.76px;
        left: 93%;
        top: 358px;
        z-index: 1;
    }
    /* service vector end code */
    @media screen and (max-width: 1175px) {
        .contact-content {
            width: 100%;
            max-width: 80%;
            height: 80%;
            display: flex;
          
          }
        .box-text {
            display: flex;
            flex-direction: column;
            margin: 10px;
            margin-left: 0;
        }
        .cardcontainer {
            width: 100%;
        }
    }
}


/* mobil and tablet start */

@media screen and (max-width: 1050px) {
    section {
        max-width: 85%;
    }
    .navbar {
        display: none;
    }
    .contacktel {
        display: none;
    }
    .main-vector {
        display: none;
    }
    .navbar.sticky {
        display: none;
    }
    .sosial {
        left: 2%;
    }
    .vector3,
    .vector4,
    .vector5,
    .vector6,
    .vector7,
    .vector8,
    .vector9,
    .vector10,
    .vector11,
    .vector12,
    .vector13,
    .vector14,
    .vector15,
    .vector16,
    .vector17,
    .vector18,
    .vector19,
    .vector20 {
        display: none;
    }
    .mobil-navbar {
        width: 100vw;
        height: 50px;
        background: #711f7e;
        display: flex;
        position: fixed;
        top: 0;
        z-index: 10;
    }
    .mobil-navbar .mobil-menu-content {
        width: 100%;
        max-width: 85%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }
    .logo2 {
        width: 85%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo2 a {
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 18px;
        display: flex;
        align-items: center;
        text-align: right;
        color: #FFFFFF;
    }
    .logo2 a img {
        width: 60px;
        height: 35px;
    }
    .mobil-menu {
        display: flex;
        align-items: center;
        width: 15%;
        height: 100%;
        justify-content: flex-end;
        margin-right: 10px;
    }
    #open-menu {
        color: #FFFFFF;
        font-size: 35px;
        cursor: pointer;
        z-index: 444;
    }
    .mobil-menu-container {
        width: 380px;
        height: fit-content;
        display: flex;
        box-shadow: -10px 0px 4px rgba(0, 0, 0, 0.25);
        z-index: 55;
        justify-content: flex-end;
        position: fixed;
        top: 0;
        right: 200%;
        transition: .5s;
    }
    .mobil-content {
        width: 380px;
        height: fit-content;
        position: relative;
        background: #711F7E;
        z-index: 111;
        padding: 30px 30px 155px 30px;
    }
    .mobil {
        width: 90%;
        display: flex;
        flex-direction: column;
        margin-top: 30%;
    }
    .mobil-content .mobil>li {
        list-style-type: disc;
        color: #FFFFFF;
        margin-left: 15%;
        margin-bottom: 40px;
    }
    .mobil-content .mobil>li>a {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 17px;
        text-transform: uppercase;
        color: #FFFFFF;
        z-index: 12;
    }
    .menu-a::before {
        display: none;
    }
    #close-menu {
        color: #FFFFFF;
        font-size: 35px;
        position: absolute;
        right: 15px;
        top: 10px;
        cursor: pointer;
    }
    .text-vector1 {
        position: absolute;
        top: 2%;
        left: 10%;
    }
    .text-vector2 {
        position: absolute;
        top: 40%;
        left: 50%;
        animation-name: ani21;
        animation-duration: 10s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transform-style: preserve-3d;
    }
    @keyframes ani21 {
        from {
            top: 0;
            transform: rotate(-180deg);
            -webkit-transform: rotate(-180deg);
            -moz-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
            -o-transform: rotate(-180deg);
        }
        to {
            top: 90%;
        }
    }
    .text-vector3 {
        width: 240px;
        height: 130px;
        position: absolute;
        top: 79%;
        left: 25%;
    }
    .text-vector4 {
        width: 69px;
        height: 69px;
        position: absolute;
        top: 85%;
        left: 71%;
    }
    .mobil .down-li {
        position: relative;
        width: fit-content;
    }
    /* .mobil .down-li::after {
        content: "\f0d7";
        position: absolute;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #FFF;
        display: inline-block;
        transition: 300ms all;
        right: -15px;
    } */
    .down-mobil {
        width: 100%;
        height: fit-content;
        display: none;
    }
    .down-mobil li {
        margin-top: 20px;
    }
    .down-mobil a {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        text-transform: uppercase;
        color: #F8CAFF;
    }
    .fortfolyo-slider {
        width: 109%;
    }
    .fortfolyo-slider .owl-dots {
        width: 100%;
        height: 20px;
        margin-top: 20px;
        margin-bottom: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .fortfolyo-slider .owl-dots .owl-dot {
        width: 25px;
        height: 5px;
        background: #fbb226;
        box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        margin: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fortfolyo-slider .owl-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fortfolyo-slider button {
        width: 20%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    .blog-slider {
        width: 109%;
    }
    .blog-slider .owl-dots {
        width: 100%;
        height: 20px;
        margin-top: 20px;
        margin-bottom: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .blog-slider .owl-dots .owl-dot {
        width: 25px;
        height: 5px;
        background: #fbb226;
        box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        margin: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-slider .owl-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-slider button {
        width: 20%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    .cardcontainer {
        width: 100%;
    }
    /* galeri slider start code */
    .mainslider {
        width: 100%;
        height: 500px;
        margin: 50px auto 50px auto;
    }
    .mainslider .item {
        width: 100%;
        margin: 0 auto;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .slider-in {
        width: 100%;
        height: 500px;
        background: url(/img/Laptop-home.jpg);
        background-repeat: no-repeat;
        background-size: 70%;
        background-position-y: -10px;
        background-position-x: 50%;
    }
    .slider-box {
        width: 100%;
        height: 500px;
        display: flex;
        align-items: flex-start;
        background: url(/img/vg.svg);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position-x: 70%;
        background-position-y: -30px;
    }
    .slider-text {
        width: 40%;
        height: 70%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-top: 30px;
    }
    .slider-text h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 45px;
        line-height: 103.9%;
        /* or 78px */
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form2-btn {
        width: 200px;
        height: 55px;
        border: 2px solid #fbb226;
        box-sizing: border-box;
        margin-top: 0px;
        background: transparent;
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 16px;
        text-transform: uppercase;
        color: #ffffff;
        transition: all 0.5s;
    }
    .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -70px;
        margin-right: 15%;
    }
    .mainslider .owl-dots .owl-dot {
        width: 15px;
        height: 15px;
        border: 2px solid #e9dfdb !important;
        box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        border-radius: 100%;
        margin: 5px;
    }
    .mainslider .owl-dots .owl-dot.active,
    .mainslider .owl-dots .owl-dot:hover {
        background: #ffffff !important;
        z-index: 3;
    }
    /* galeri slider end code */
    /* page up start */
    .page-up {
        width: 30px;
        height: 30px;
        left: 94%;
        position: fixed;
        left: 93%;
        top: 90vh;
        z-index: 20;
    }
    .page-up a {
        width: 50px;
        height: 100%;
    }
    .page-up img {
        width: 100%;
        height: 100%;
    }
    /* page up end */
    /* site menu start code */
    .site-menucontainer {
        height: inherit;
        margin-top: 100px;
    }
    .site-menucontent {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    .site-menucontainer a {
        display: block;
        width: 48%;
        height: 273px;
        margin-bottom: 35px;
    }
    .menu-box2 h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 25px;
        line-height: 24px;
        color: #ffffff;
        margin: 20px 0px;
    }
    .menu-box2 p {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 20px;
        /* or 143% */
        letter-spacing: 0.02em;
        color: #ffffff;
        margin: 20px 0px;
    }
    /* site menu end code */
    /* TRAFIC START CODE */
    .trafic-container {
        width: 100vw;
        height: 700px;
        padding: 100px;
        margin-bottom: 0px;
        background-position: center;
    }
    .trafic-content {
        width: 90%;
        height: 100%;
        max-width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    .trafic-item {
        width: 30%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 10px;
        padding: 10px;
    }
    .trafic-item span {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 45px;
        line-height: 55px;
        text-align: center;
        margin-bottom: 15px;
    }
    .trafic-item p {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 21px;
        text-align: center;
        color: #ffffff;
    }
    .trafic-item img {
        width: 40%;
        object-fit: cover;
        margin-bottom: 15px;
    }
    /*  trafic end code */
    /* PERSON START CODE  */
    .person-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin: 150px auto 0 auto;
        position: relative;
    }
    .person-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0 auto;
        margin-bottom: 45px;
    }
    .person-text p {
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 22px;
        color: #fbb226;
    }
    .person-text span {
        font-style: normal;
        font-weight: 600;
        font-size: 35px;
        line-height: 43px;
        color: #ffffff;
    }


    .personal-list{
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    
    }
    
    .person-btn{
        width: 19%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #711f7e;
        padding: 7px;
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.02em;
        color: #ffffff;
        cursor: pointer;
        transition: .5s;
        
      
        
    }
    
    
    .goster{
        width: 19%;
        height: 100%;
        display: flex;
        align-items: center;
        background: #fbb226;
        padding: 7px;
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.02em;
        color: #ffffff;
        cursor: pointer;
        transition: .5s;
    
    }
    
    

    .person-cardcontainer {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .person-box{
        width: 100%;
        height: fit-content;
        display: flex;
        margin-top: 40px;
        flex-wrap: wrap;
        column-gap: 1.2%;
    }
    .person-card {
        width: 24%;
        height: 307px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;
        padding: 15px;
        border: 2px solid #25253e;
        box-sizing: border-box;
        margin-bottom: 20px;
        transition: all 0.6s ease-in-out;
        z-index: 3;
        background: #181828;
    }
    .personal-img{
        width:125px;
        height:125px;
        display:flex;
        align-items:center;
        justify-content:center;
    }
    .person-card span {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 27px;
        color: #ffffff;
    }
    .person-card p {
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        color: #ffffff;
    }
    .person-card i {
        font-size: 15px;
        color: #711f7e;
        padding: 5px 10px 0px 0px;
    }
    .person-card .from {
        font-size: 12px;
        color: #711f7e;
    }
    /* PERSON END CODE  */
   
    /* PERSON END CODE */
  
  /* CONtACK HOME STaRT CODE */
  .contacthome-container {
    width: 100vw;
    height: 500px;
    display: flex;
    flex-direction: column;
    background: url(../img/back.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: center;
    background-position-y: center;
    position: relative;
    background-size: cover;
    margin-top: 154px;
  }
  .contact-content {
    width: 100%;
    max-width: 80%;
  }
  .contact-baslik p {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #fbb226;
  }
  .contact-baslik h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 38px;
    color: #ffffff;
  }
  .tel-mail {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tel-mail a {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #ffffff;
  }
  .text2-text1 p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
  }
  .text2-link a {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 27px;
    margin-right: 20px;
  }
  .text2-text2 a {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #00a3ff;
    margin-top: 10px;
  }
  .line-a {
    background: #00a3ff;
    width: 2px;
    height: 13px;
    display: block;
    margin: 15px 10px 0px 10px;
    border: 1px solid #00a3ff;
  }
  /* CONtACK HOME END CODE */
    .footermenu-list {
        width: 95%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media screen and (max-width: 868px) {
    #open-menu {
        color: #FFFFFF;
        font-size: 25px;
        cursor: pointer;
        z-index: 444;
    }
    .mobil-menu-container {
        width: 320px;
        height: fit-content;
        display: flex;
        box-shadow: -10px 0px 4px rgba(0, 0, 0, 0.25);
        z-index: 55;
        justify-content: flex-end;
        position: fixed;
        top: 0;
        right: 200%;
        transition: .5s;
        overflow-y: scroll;
    }
    .mobil-content {
        width: 320px;
        height: fit-content;
        position: relative;
        background: #711F7E;
        z-index: 111;
        padding: 30px 30px 90px 30px;
    }
    .mobil {
        width: 90%;
        display: flex;
        flex-direction: column;
        margin-top: 30%;
    }
    .mobil-content>li {
        list-style-type: disc;
        color: #FFFFFF;
        margin-left: 15%;
        margin-bottom: 15%;
    }
    .mobil-content>li>a {
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 17px;
        text-transform: uppercase;
        color: #FFFFFF;
        z-index: 12;
    }
    #close-menu {
        color: #FFFFFF;
        font-size: 25px;
        position: absolute;
        right: 15px;
        top: 10px;
        cursor: pointer;
    }
    .text-vector1 {
        position: absolute;
        top: 1.5%;
        left: 10%;
    }
    .text-vector2 {
        position: absolute;
    }
    .text-vector3 {
        width: 195px;
        height: 110px;
        position: absolute;
    }
    .text-vector4 {
        width: 69px;
        height: 69px;
    }
    .modal {
        width: 90%;
        height: 550px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        position: fixed;
        top: -500%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3222;
        transition: .5s;
    }
    /* galeri slider start code */
    .mainslider {
        width: 100%;
        height: 400px;
        margin: 100px auto 50px auto;
    }
    .mainslider .item {
        width: 100%;
        margin: 0 auto;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .slider-in {
        width: 100%;
        height: 400px;
        background: url(../img/Laptop-home.jpg);
        background-repeat: no-repeat;
        background-size: 70%;
        background-position-y: -10px;
        background-position-x: 50%;
    }
    .slider-box {
        width: 100%;
        height: 400px;
        display: flex;
        align-items: flex-start;
        background: url(../img/vg.svg);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position-x: 80%;
        background-position-y: -20px;
    }
    .slider-text {
        width: 50%;
        height: 70%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-top: 30px;
    }
    .slider-text h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 35px;
        line-height: 103.9%;
        /* or 78px */
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form2-btn {
        width: 200px;
        height: 55px;
        border: 2px solid #fbb226;
        box-sizing: border-box;
        margin-top: 0px;
        background: transparent;
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 16px;
        text-transform: uppercase;
        color: #ffffff;
        transition: all 0.5s;
    }
    .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -70px;
        margin-right: 15%;
    }
    .mainslider .owl-dots .owl-dot {
        width: 15px;
        height: 15px;
        border: 2px solid #e9dfdb !important;
        box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        border-radius: 100%;
        margin: 5px;
    }
    .mainslider .owl-dots .owl-dot.active,
    .mainslider .owl-dots .owl-dot:hover {
        background: #ffffff !important;
        z-index: 3;
    }
    /* galeri slider end code */
    /* page up start */
    .page-up {
        width: 50px;
        height: 50px;
        display: none;
        position: fixed;
        left: 88%;
        top: 90vh;
        z-index: 20;
    }
    .page-up a {
        width: 50px;
        height: 100%;
    }
    .page-up img {
        width: 100%;
        height: 100%;
    }
    /* page up end */
    /* site menu start code */
    .site-menucontainer {
        height: inherit;
        margin-top: 0px;
    }
    .site-menucontent {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    .site-menucontainer a {
        display: block;
        width: 48%;
        height: 273px;
        margin-bottom: 25px;
    }
    .menu-box2 h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        line-height: 24px;
        color: #ffffff;
        margin: 20px 0px;
    }
    .menu-box2 p {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        /* or 143% */
        letter-spacing: 0.02em;
        color: #ffffff;
        margin: 20px 0px;
    }
    /* site menu end code */
    /* cardcontainer start code */
    .cardcontainer {
        width: 100%;
        height: 340px;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        align-items: center;
        justify-content: space-between;
    }
    .cardimg {
        width: 100%;
        height: 235px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cardimg img {
        width: 100%;
        height: 100%;
        object-position: center top;
    }
    .cardtext {
        width: 100%;
        height: 105px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
        background: #25253e;
    }
    .cardcontainer:hover {
        border: 2px solid #fbb226;
    }
    .cardtext:hover {
        background: #fbb226;
        border: 2px solid #fbb226;
    }
    .cardimg:hover+.cardtext {
        background: #fbb226;
    }
    .cardtext h2 {
        display: flex;
        width: 100%;
        font-size: 16px;
        color: #ffffff;
        margin-bottom: 20px;
        align-items: center;
        justify-content: center;
    }
    .cardtext p {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 13px;
        color: #ffffff;
    }
    /* cardcontainer start end */
    /*  fortfolyo start code */
    .fortfolyo {
        width: 100%;
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        margin-top: 100px;
        position: relative;
    }
    .fortfolyo .baslik {
        width: 100%;
        margin: 0px auto 10px auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    .fortfolyo .baslik h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 43px;
        color: #ffffff;
        margin-right: 50px;
    }
    .fortfolyo .baslik-text {
        width: 273px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 2px solid #711f7e;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.5s;
        margin-left: 35px;
    }
    .baslik-text:hover {
        background: #fbb226;
    }
    .fortfolyo .baslik-text p,
    .fortfolyo .baslik-text a {
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 21px;
        text-transform: uppercase;
        color: #ffffff;
    }
    .fortfolyo-slider {
        width: 100%;
        display: flex;
        position: relative;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    .fortfolyo-slider .resim {
        width: 100%;
        height: 100%;
    }
    .fortfolyo-slider .resim img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .fortfolyo-slider .owl-dots {
        width: 100%;
        height: 20px;
        margin-top: 20px;
        margin-bottom: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .fortfolyo-slider .owl-dots .owl-dot {
        width: 25px;
        height: 5px;
        background: #fbb226;
        box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        margin: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fortfolyo-slider .owl-dots .owl-dot.active,
    .fortfolyo-slider .owl-dots .owl-dot:hover {
        background: #e4e0e6 !important;
    }
    .fortfolyo-slider .owl-dots .owl-dot.active {
        width: 38px;
        height: 6px;
        background: #fbb226;
    }
    .fortfolyo-slider .owl-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fortfolyo-slider button {
        width: 20%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    /* portfolyo end code */
    /* form3 start code */
    .form3-container {
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        z-index: 3;
        margin: 100px auto 0 auto;
        position: relative;
    }
    .form3-content {
        width: 100%;
        height: 100%;
        display: flex;
        margin: 0 auto;
        background: #711f7e;
    }
    .form3-item {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .form3-item span {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 28px;
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form3-item #form3-open {
        width: 180px;
        height: 50px;
        font-family: Montserrat;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        /* or 19px */
        display: flex;
        align-items: center;
        text-align: center;
        text-transform: uppercase;
        justify-content: center;
        background: transparent;
        color: #ffffff;
        border: 2px solid #ffffff;
        box-sizing: border-box;
        cursor: pointer;
    }
    #form3-open:hover {
        color: #ffffff;
        background: #fbb226;
    }
    /* form3 end code */
    /* SERVICE START CODE */
    .service-container {
        width: 100%;
        display: flex;
        box-sizing: border-box;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 100px auto 0 auto;
        z-index: 2;
        position: relative;
    }
    .service-container .service-text {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        margin: 0 auto;
        margin-bottom: 30px;
        z-index: 3;
    }
    .service-container .service-text h5 {
        font-style: normal;
        font-weight: bold;
        font-size: 25px;
        line-height: 36px;
        color: #ffffff;
    }
    .service-container a {
        display: block;
        width: 48%;
        height: 117px;
        margin-bottom: 30px;
        z-index: 24;
    }
    .service-container .son-box {
        display: block;
        width: 100%;
        height: 117px;
        margin-bottom: 30px;
        z-index: 24;
    }
    .service-container .service-box {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        background: #25253e;
        z-index: 22;
    }
    .service-container .service-box span {
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 24px;
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .service-container .service-box i {
        font-size: 30px;
        color: #991616;
    }
    .service-container a .service-box:hover {
        background: #fbb226;
    }
    /* SERVICE END CODE */
    /* TRAFIC START CODE */
    .trafic-container {
        width: 100vw;
        height: 600px;
        padding: 50px;
        margin-bottom: 0px;
        background-position: right;
    }
    .trafic-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    .trafic-item {
        width: 30%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 10px;
    }
    .trafic-item span {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 35px;
        line-height: 55px;
        text-align: center;
        margin-bottom: 15px;
    }
    .trafic-item p {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 21px;
        text-align: center;
        color: #ffffff;
    }
    .trafic-item img {
        width: 60%;
        object-fit: cover;
        margin-bottom: 15px;
    }
    /*  trafic end code */
    /*  .blog start code */
    .blog {
        width: 100%;
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        margin-top: 100px;
        position: relative;
    }
    .blog .baslik {
        width: 100%;
        margin: 0px auto 10px auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 40px;
    }
    .blog .baslik h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 43px;
        color: #ffffff;
        margin-right: 50px;
    }
    .blog .baslik-text {
        width: 273px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 2px solid #711f7e;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.5s;
        margin-left: 35px;
    }
    .baslik-text:hover {
        background: #fbb226;
    }
    .blog .baslik-text p,
    .blog .baslik-text a {
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 21px;
        text-transform: uppercase;
        color: #ffffff;
    }
    .blog-slider {
        width: 100%;
        display: flex;
        position: relative;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    .blog-slider .resim {
        width: 100%;
        height: 100%;
    }
    .blog-slider .resim img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .blog-slider .owl-dots {
        width: 100%;
        height: 20px;
        margin-top: 20px;
        margin-bottom: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .blog-slider .owl-dots .owl-dot {
        width: 25px;
        height: 5px;
        background: #fbb226;
        box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        margin: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-slider .owl-dots .owl-dot.active,
    .blog-slider .owl-dots .owl-dot:hover {
        background: #e4e0e6 !important;
    }
    .blog-slider .owl-dots .owl-dot.active {
        width: 38px;
        height: 6px;
        background: #fbb226;
    }
    .blog-slider .owl-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-slider button {
        width: 20%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    /*  .blog end code */
    /* PERSON START CODE  */
   









    /* PERSON END CODE  */
  /* CONtACK HOME STaRT CODE */
  .contacthome-container {
    width: 100vw;
    height: 500px;
    display: flex;
    flex-direction: column;
    background: url(../img/back.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: center;
    background-position-y: center;
    position: relative;
    background-size: cover;
    margin-top: 60px;
  }
  .contact-content {
    width: 100%;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
    justify-content:space-between;
  }
 
.contact-text{

    height:35%;
}
.contack-home-box2{
    height:35%;
    margin-top:30px;
    
}

.wp-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
  }

  .telegram-wp-p {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #ffffff;
  }
  .contact-baslik p {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #fbb226;
  }
  .contact-baslik h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 38px;
    color: #ffffff;
  }
  .tel-mail {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tel-mail a {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #ffffff;
  }
  .contact-text2 {
    width: 85%;
    display: flex;
    flex-direction: column;
    height:100%
  }
  .text2-text1 p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
  }
  .text2-link a {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 27px;
    margin-right: 20px;
  }
  .text2-text2 a {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #00a3ff;
    margin-top: 10px;
  }
  .line-a {
    background: #00a3ff;
    width: 2px;
    height: 13px;
    display: block;
    margin: 15px 10px 0px 10px;
    border: 1px solid #00a3ff;
  }
  .contack-sosyal {
    display: flex;
    height:20%;
  }
  /* CONtACK HOME END CODE */
    .tagcontent a {
        width: 32%;
        margin-bottom: 10px;
    }
    .footermenu-list {
        width: 95%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footermenu-list li a {
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 10px;
        line-height: 16px;
        color: #ffffff;
    }
}

@media screen and (max-width:720px) {
    section {
        max-width: 90%;
    }
    .down-mobil a {
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 17px;
        text-transform: uppercase;
        color: #F8CAFF;
    }
    .sosial {
        display: none;
    }
    .page-up a {
        display: none;
    }
    .form3-container {
        display: none;
    }
    .footermenu-container {
        display: none;
    }
    .form-control input[type="submit"] {
        width: 80%;
        height: 40px;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 21px;
        text-transform: uppercase;
        color: #711F7E;
        background: #FFFFFF;
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 6px;
    }
    .form-text .checkbox-labelf {
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        line-height: 21px;
        text-transform: uppercase;
        color: #FFFFFF;
    }
    .modal .formcontainer form p {
        width: 100%;
    }
    /* galeri slider start code */
    .mainslider {
        width: 100%;
        height: 400px;
        margin: 100px auto 50px auto;
    }
    .mainslider .item {
        width: 100%;
        height: 400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .slider-in {
        width: 100%;
        height: 400px;
        background: url(../img/Laptop-home.jpg);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position-y: -10px;
        background-position-x: 50%;
    }
    .slider-box {
        width: 100%;
        height: 400px;
        display: flex;
        align-items: flex-start;
        background: url(../img/vg.svg);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position-x: 80px;
        background-position-y: -20px;
    }
    .slider-text {
        width: 50%;
        height: 70%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-top: 5px;
    }
    .slider-text h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 28px;
        line-height: 103.9%;
        /* or 78px */
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form2-btn {
        width: 180px;
        height: 40px;
        border: 1px solid #fbb226;
        box-sizing: border-box;
        margin-top: 0px;
        background: transparent;
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        line-height: 16px;
        text-transform: uppercase;
        color: #ffffff;
        transition: all 0.5s;
    }
    .owl-dots {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -100px;
        margin-right: 0%;
    }
    .mainslider .owl-dots .owl-dot {
        width: 15px;
        height: 15px;
        border: 2px solid #e9dfdb !important;
        box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        border-radius: 100%;
        margin: 5px;
    }
    .mainslider .owl-dots .owl-dot.active,
    .mainslider .owl-dots .owl-dot:hover {
        background: #ffffff !important;
        z-index: 3;
    }
    /* galeri slider end code */
    /* site menu start code */
    .site-menucontainer {
        height: fit-content;
        margin-top: 0px;
    }
    .site-menucontainer a {
        display: block;
        width: 48%;
        height: 273px;
        margin-bottom: 25px;
    }
    .menu-box2 h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        color: #ffffff;
        margin: 20px 0px;
    }
    .menu-box2 p {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        line-height: 20px;
        /* or 143% */
        letter-spacing: 0.02em;
        color: #ffffff;
        margin: 20px 0px;
    }
    /* site menu end code */
    /*  fortfolyo start code */
    .fortfolyo {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        margin-top: 100px;
        position: relative;
    }
    .fortfolyo .baslik {
        width: 100%;
        margin: 0px auto 10px auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .fortfolyo .baslik h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 43px;
        color: #ffffff;
        margin-right: 0px;
    }
    .fortfolyo .baslik-text {
        width: 220px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 2px solid #711f7e;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.5s;
        margin-left: 0px;
    }
    .baslik-text:hover {
        background: #fbb226;
    }
    .fortfolyo .baslik-text p,
    .fortfolyo .baslik-text a {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        text-transform: uppercase;
        color: #ffffff;
    }
    .fortfolyo-slider {
        width: 100%;
        display: flex;
        position: relative;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    .fortfolyo-slider .owl-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fortfolyo-slider button {
        width: 20%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    .fortfolyo-slider .owl-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fortfolyo-slider button {
        width: 30%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px;
    }
    /* portfolyo end code */
    /* SERVICE START CODE */
    .service-container .service-text {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        margin: 0 auto;
        margin-bottom: 30px;
        z-index: 3;
    }
    .service-container .service-text h5 {
        font-style: normal;
        font-weight: bold;
        font-size: 25px;
        line-height: 36px;
        color: #ffffff;
    }
    .service-container a {
        display: block;
        width: 48%;
        height: 90px;
        margin-bottom: 20px;
        z-index: 24;
    }
    .service-container .son-box {
        display: block;
        width: 100%;
        height: 90px;
        margin-bottom: 0px;
        z-index: 24;
    }
    .service-container .service-box {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #25253e;
        z-index: 22;
        padding-right: 15px;
    }
    .service-container .service-box span {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        display: flex;
        align-items: center;
        color: #ffffff;
        width: 55%;
    }
    .service-container .service-box img {
        width: 20%;
    }
    .service-container .service-box img:last-child {
        width: 30px;
    }
    /* SERVICE END CODE */
    /* TRAFIC START CODE */
    .trafic-container {
        width: 100vw;
        height: 450px;
        padding: 0px;
        margin-bottom: 0px;
        background-position: right;
    }
    .trafic-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    .trafic-item {
        width: 33%;
        height: 135px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0px;
    }
    .trafic-item span {
        font-style: normal;
        font-weight: 600;
        font-size: 32px;
        line-height: 30px;
        text-align: center;
    }
    .trafic-item p {
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        line-height: 16px;
        text-align: center;
        color: #FFFFFF;
        width: 70%;
    }
    .trafic-item img {
        width: 40%;
        object-fit: cover;
        margin-bottom: 15px;
    }
    /*  trafic end code */
    /*  .blog start code */
    .blog {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        margin-top: 100px;
    }
    .blog .baslik {
        width: 100%;
        margin: 0px auto 10px auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .blog .baslik h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 43px;
        color: #ffffff;
        margin-right: 0px;
    }
    .blog .baslik-text {
        width: 240px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 2px solid #711f7e;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.5s;
        margin-left: 0px;
    }
    .baslik-text:hover {
        background: #fbb226;
    }
    .blog .baslik-text p,
    .blog .baslik-text a {
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 21px;
        text-transform: uppercase;
        color: #ffffff;
    }
    .blog-slider {
        width: 100%;
        display: flex;
        position: relative;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    .blog-slider .owl-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-slider button {
        width: 20%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    .blog-slider button {
        width: 30%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px;
    }
    /*  .blog end code */
    /* PERSON START CODE  */
    .person-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin-top:100px;
        margin-bottom: 0px;
        position: relative;
    }

    
    .personal-list{
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    
    }
    
    .person-btn{
        width: 19%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #711f7e;
        padding: 7px;
        font-style: normal;
        font-weight: 400;
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 0.02em;
        color: #ffffff;
        cursor: pointer;
        transition: .5s;
        
      
        
    }
    
    
    .goster{
        width: 19%;
        height: 100%;
        display: flex;
        align-items: center;
        background: #fbb226;
        padding: 7px;
        font-style: normal;
        font-weight: 400;
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 0.02em;
        color: #ffffff;
        cursor: pointer;
        transition: .5s;
    
    }
    
    
    .person-box{
        width: 100%;
        height: fit-content;
        display: flex;
        margin-top: 40px;
        flex-wrap: wrap;
        column-gap: 3.5%;
    }
    .person-card {
        width: 31%;
        height: 280px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;
        padding: 15px;
        border: 2px solid #25253e;
        box-sizing: border-box;
        margin-bottom: 20px;
        transition: all 0.6s ease-in-out;
        z-index: 3;
        background: #181828;
    }
    .personal-img{
        width:125px;
        height:125px;
        display:flex;
        align-items:center;
        justify-content:center;
    }
    .person-card span {
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 27px;
        color: #ffffff;
    }
    .person-card p {
        font-style: normal;
        font-weight: 500;
        font-size: 11px;
        line-height: 16px;
        color: #ffffff;
    }
    .person-card i {
        font-size: 15px;
        color: #711f7e;
        padding: 5px 10px 0px 0px;
    }
    .person-card .from {
        font-size: 12px;
        color: #711f7e;
    }
   
    /* PERSON END CODE  */
  /* CONtACK HOME STaRT CODE */
  .contacthome-container {
    width: 100vw;
    height: 500px;
    display: flex;
    flex-direction: column;
    background: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: center;
    background-position-y: center;
    position: relative;
    background-size: cover;
    margin-top: 60px;
  }
  .contact-content {
    width: 100%;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
  }
  .contact-text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    
  }
  .contact-baslik {
    margin-bottom: 0;
  }
  .contact-baslik p {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #fbb226;
  }
  .contact-baslik h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 38px;
    color: #ffffff;
  }
  .tel-mail {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tel-mail a {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #ffffff;
  }
  .contact-text2 {
    width: 80%;
    display: flex;
    flex-direction: column;
  }
  .text2-text1 p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
  }
  .text2-link a {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 27px;
    margin-right: 20px;
  }
  .text2-text2 a {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #00a3ff;
    margin-top: 10px;
  }
  .line-a {
    background: #00a3ff;
    width: 2px;
    height: 13px;
    display: block;
    margin: 15px 10px 0px 10px;
    border: 1px solid #00a3ff;
  }
  /* CONtACK HOME END CODE */
    /* .tagcontainer {
                        display: none;
                    } */
    .tagcontainer {
        display: none;
    }
    .rekvizetcontent {
        max-width: 100%;
    }
}


/* global page mobil start */

@media screen and (max-width:575px) {
    .sosial {
        display: none;
    }
    .page-up a {
        display: none;
    }
    .form3-container {
        display: none;
    }
    .footermenu-container {
        display: none;
    }
    .mobil-content {
        width: 320px;
    }
    .mobil-content {
        width: 320px;
        height: 100vh;
        position: relative;
        background: #711F7E;
        z-index: 111;
        padding: 30px 30px 90px 30px;
    }
    .modal {
        width: 90%;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        position: fixed;
        top: -500%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3222;
        transition: .5s;
    }
    .modal .formcontainer {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: center;
        justify-content: flex-end;
        background: rgba(113, 31, 126, 0.9);
        box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.45);
        border-radius: 20px
    }
    .modal .formcontainer form {
        width: 100%;
        height: 80%;
        display: flex;
        flex-direction: column;
        margin-top: 0px;
        align-items: center;
    }
    .modal .formcontainer form .form-control {
        width: 85%;
        height: 40px;
        position: relative;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
    }
    .form-control:last-child {
        margin-bottom: 0;
    }
    .modal .formcontainer form .form-control input {
        width: 100%;
        height: 40px;
        background: transparent;
        border: 1px solid #FFFFFF;
        box-sizing: border-box;
        transition: 300ms all;
    }
    .modal .formcontainer form .form-control input~label {
        position: absolute;
        left: 5%;
        top: 80%;
        pointer-events: none;
        transition: 300ms all;
        color: #FFFFFF;
        font-size: 15px;
    }
    .modal .formcontainer form .form-control input:focus~label,
    .modal .formcontainer form .form-control textarea:focus~label,
    .modal .formcontainer form .form-control input:valid~label {
        top: -10%;
        color: #ffffff;
        font-size: 14px;
    }
    .form-text {
        width: 85%;
        height: fit-content;
        display: flex;
        margin: 5px 0;
        align-items: flex-start;
    }
    .form-text input[type="checkbox"]+label {
        font-style: normal;
        font-weight: 400;
        font-size: 8px;
        line-height: 21px;
        text-transform: uppercase;
        color: #fff;
        position: relative;
    }
    .form-text input[type="checkbox"]+label a {
        font-style: normal;
        font-weight: 300;
        font-size: 8px;
        line-height: 21px;
        text-transform: uppercase;
        color: #FFFFFF;
    }
    .modal .formcontainer form p {
        font-size: 13px;
        width: 85%;
    }
    .modal .formcontainer form .form-control input[type="submit"] {
        width: 80%;
        height: 40px;
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        text-transform: uppercase;
        color: #711F7E;
        background: #FFFFFF;
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 6px;
    }
    .vector-form {
        position: absolute;
        width: 35px;
        height: 35px;
        top: 20px;
        left: 20px;
    }
    #modal-close {
        width: 35px;
        height: 35px;
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
    }
    /* galeri slider start code */
    .mainslider {
        width: 100%;
        height: fit-content;
        margin: 80px auto 0px auto;
    }
    .mainslider .item {
        width: 100%;
        height: fit-content;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .slider-in {
        width: 100%;
        height: 300px;
        background: url(../img/Laptop-home.jpg);
        background-repeat: no-repeat;
        background-size: 110%;
        background-position-y: 50%;
        background-position-x: 50%;
    }
    .slider-box {
        width: 100%;
        height: 300px;
        display: flex;
        align-items: flex-start;
        background: url(../img/vg.svg);
        background-repeat: no-repeat;
        background-size: 90%;
        background-position-x: 50px;
        background-position-y: 55%;
        flex-direction: column;
    }
    .slider-text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 0;
    }
    .slider-text h2 {
        width: 100%;
        font-style: normal;
        font-weight: 500;
        font-size: 28px;
        line-height: 25px;
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    .form2-btn {
        width: 180px;
        height: 35px;
        border: 1px solid #fbb226;
        box-sizing: border-box;
        background: transparent;
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        line-height: 16px;
        text-transform: uppercase;
        color: #ffffff;
        transition: all 0.5s;
        margin: 0 auto;
    }
    .owl-dots {
        width: 100%;
        display: none;
        align-items: center;
        justify-content: center;
        margin-top: -100px;
        margin-right: 0%;
    }
    .mainslider .owl-dots .owl-dot {
        width: 15px;
        height: 15px;
        border: 2px solid #e9dfdb !important;
        box-shadow: 0px 4px 15px rgba(240, 230, 230, 0.2);
        transition: all 0.3s ease;
        z-index: 3;
        border-radius: 100%;
        margin: 5px;
    }
    .mainslider .owl-dots .owl-dot.active,
    .mainslider .owl-dots .owl-dot:hover {
        background: #ffffff !important;
        z-index: 3;
    }
    /* galeri slider end code */
    /* site menu start code */
    .site-menucontainer {
        height: fit-content;
        margin-top: 80px;
    }
    .site-menucontainer a {
        display: block;
        width: 48%;
        height: 160px;
        margin-bottom: 15px;
    }
    .site-menucontainer a .menu-box {
        align-items: center;
        padding: 0;
    }
    .site-menucontainer a .menu-box img {
        width: 35px;
        height: 35px;
    }
    .menu-box2 h2 {
        width: 144px;
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 18px;
        text-align: center;
        color: #FFFFFF;
    }
    .menu-box2 p {
        display: none;
    }
    /* site menu end code */
    /*  fortfolyo start code */
    .fortfolyo {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        margin-top: 50px;
        position: relative;
    }
    .fortfolyo .baslik {
        width: 100%;
        margin: 0px auto 10px auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .fortfolyo .baslik h2 {
        font-family: Montserrat;
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        color: #FFFFFF;
    }
    .fortfolyo .baslik-text {
        width: 190px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 2px solid #711f7e;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.5s;
        margin-left: 0px;
    }
    .baslik-text:hover {
        background: #fbb226;
    }
    .fortfolyo .baslik-text p,
    .fortfolyo .baslik-text a {
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        line-height: 16px;
        display: flex;
        align-items: center;
        text-transform: uppercase;
        color: #FFFFFF;
    }
    .fortfolyo-slider {
        width: 100%;
        display: flex;
        position: relative;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    .fortfolyo-slider .owl-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fortfolyo-slider button {
        width: 20%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    /* portfolyo end code */
    /* SERVICE START CODE */
    .service-container {
        margin-top: 50px;
    }
    .service-container .service-text {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        margin: 0 auto;
        margin-bottom: 30px;
        z-index: 3;
    }
    .service-container .service-text h5 {
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        /* identical to box height */
        color: #FFFFFF;
    }
    .service-container a {
        display: block;
        width: 100%;
        height: 70px;
        margin-bottom: 20px;
        z-index: 24;
    }
    .service-container .son-box {
        display: block;
        width: 100%;
        height: 70px;
        margin-bottom: 0px;
        z-index: 24;
    }
    .service-container .service-box span {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 18px;
        display: flex;
        align-items: center;
        color: #FFFFFF;
    }
    .service-container .service-box img:last-child {
        width: 35px;
        height: 20px;
        object-fit: contain;
    }
    /* SERVICE END CODE */
    /* TRAFIC START CODE */
    .trafic-container {
        width: 100vw;
        height: 420px;
        padding: 0px;
        margin-bottom: 0px;
        background-position: right;
        margin-top: 80px;
    }
    .trafic-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        flex-wrap: wrap;
        padding: 20px;
    }
    .trafic-item {
        width: 33%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 0px;
    }
    .trafic-item span {
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 39px;
        text-align: center;
    }
    .trafic-item p {
        font-style: normal;
        font-weight: 400;
        font-size: 11px;
        line-height: 16px;
        text-align: center;
        color: #FFFFFF;
    }
    .trafic-item img {
        width: 40%;
        object-fit: cover;
        margin-bottom: 15px;
    }
    /*  trafic end code */
    /*  .blog start code */
    .blog {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        margin-top: 50px;
    }
    .blog .baslik {
        width: 100%;
        margin: 0px auto 10px auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .blog .baslik h2 {
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        color: #FFFFFF;
    }
    .blog .baslik-text {
        width: 240px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 2px solid #711f7e;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.5s;
        margin-left: 0px;
    }
    .baslik-text:hover {
        background: #fbb226;
    }
    .blog .baslik-text p,
    .blog .baslik-text a {
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        line-height: 16px;
        display: flex;
        align-items: center;
        text-transform: uppercase;
        color: #FFFFFF;
    }
    .blog-slider {
        width: 100%;
        display: flex;
        position: relative;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    .blog-slider .owl-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-slider button {
        width: 20%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    /*  .blog end code */
    /* PERSON START CODE  */
    .person-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin-top: 50px;
        margin-bottom: 0px;
        position: relative;
    }


    .person-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .person-text p {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: #fbb226;
    }
    
    .person-text span {
        font-style: normal;
        font-weight: 600;
        font-size: 25px;
        line-height: 43px;
        color: #ffffff;
    }
    
    .personal-list{
        width: 100%;
        height:fit-content;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;

        column-gap: 3.5%;

      
    
    }
    
    .person-btn{
        width: 31%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #711f7e;
        padding: 7px;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 0.02em;
        color: #ffffff;
        cursor: pointer;
        transition: .5s;
        margin-bottom: 20px;
        
      
        
    }
    
    
    .goster{
        width: 31%;
        height: 40px;
        display: flex;
        align-items: center;
        background: #fbb226;
        padding: 7px;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 0.02em;
        color: #ffffff;
        cursor: pointer;
        transition: .5s;
    
    }


    
.personal-img{
    width:100%;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.person-card img {
    width:85px;
    height:85px;
    border-radius: 100%;
    border:2px solid #fff;
    object-fit: cover;
   
}
    /* PERSON END CODE  */
  /* CONtACK HOME STaRT CODE */
  .contacthome-container {
    width: 100vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    background: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: center;
    background-position-y: center;
    position: relative;
    background-size: cover;
    margin-top: 60px;
  }
  .contact-content {
    width: 100%;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
  }
  .contact-text {
    width: 100%;
  
    display: flex;
    flex-direction: column;
   
  }
  .contact-baslik {
    margin-bottom: 0;
  }
  .contact-baslik p {
    display: none;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #fbb226;
  }
  .contact-baslik h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
  }

.contack-home-box2{

    flex-direction: column;
   
}

.contack-wp-tg{
    width: 100%;
}





  .tel-mail {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tel-mail a {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #ffffff;
  }
  .tel-mail .mail {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #00a3ff;
  }
  .contact-text2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
  }
  .text2-text1 p {
    width: 80%;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #ffffff;
  }
  .text2-link a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #ffffff;
  }
  .text2-text2 a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #00a3ff;
  }
  .line-a {
    background: #00a3ff;
    width: 2px;
    height: 10px;
    display: block;
    margin: 15px 10px 0px 10px;
    border: 1px solid #00a3ff;
  }
  .contack-sosyal {
    width: 70%;
  }
  /* CONtACK HOME END CODE */
     .tagcontainer {
                        display: none;
                    } 

                    
    .tagcontainer .bluelink,
    .tagcontainer .redlink {
        display: none;
    }
    .tagcontainer a {
        margin-bottom: 0px;
    }
    .rekvizetcontent {
        max-width: 100%;
    }
}

#tarif {
    display: none;
}


.modal2 {
    width: 650px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3222;
    transition: .5s;
}

.modal2-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    background: rgba(113, 31, 126, 0.9);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.45);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: relative;
}

.modal2-vector {
    width: 60px;
    height: 65px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.modal2-close {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5;
    -moz-transition: all 0.5;
    -ms-transition: all 0.5;
    -o-transition: all 0.5;
}

.modal2-close:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.modal2-text {
    width: 70%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal2-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.modal2-contack {
    width: 70%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15%;
}

.modal2-box {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal2-box img {
    width: 59px;
    height: 79px;
    object-fit: cover;
}

.modal2-box button {
    width: 100%;
    height: 50px;
    background: #FFF;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    color: #711F7E;
    margin-top: 20px;
}

.modal2-box button a {
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    color: #711F7E;
}

.modal2-box button:hover {
    background: #FBB226;
}

@media screen and (max-width: 868px) {
    .modal2 {
        width: 75%;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3222;
        transition: .5s;
    }
    .modal2-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: center;
        justify-content: center;
        background: rgba(113, 31, 126, 0.9);
        box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.45);
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        position: relative;
        padding-top: 30px;
    }
    .modal2-vector {
        width: 60px;
        height: 65px;
        position: absolute;
        top: 20px;
        left: 20px;
    }
    .modal2-close {
        width: 48px;
        height: 48px;
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
        transition: all 0.5s;
        -webkit-transition: all 0.5;
        -moz-transition: all 0.5;
        -ms-transition: all 0.5;
        -o-transition: all 0.5;
    }
    .modal2-close:hover {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }
    .modal2-text {
        width: 80%;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 720px) {
    .modal2 {
        width: 75%;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3222;
        transition: .5s;
    }
    .modal2-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: center;
        justify-content: center;
        background: rgba(113, 31, 126, 0.9);
        box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.45);
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        position: relative;
        padding-top: 30px;
    }
    .modal2-vector {
        width: 40px;
        height: 45px;
        position: absolute;
        top: 20px;
        left: 20px;
    }
    .modal2-close {
        width: 35px;
        height: 35px;
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
        transition: all 0.5s;
        -webkit-transition: all 0.5;
        -moz-transition: all 0.5;
        -ms-transition: all 0.5;
        -o-transition: all 0.5;
    }
    .modal2-close:hover {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }
    .modal2-text {
        width: 80%;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal2-text p {
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 18px;
        text-align: center;
        color: #FFFFFF;
    }
    .modal2-contack {
        width: 75%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 15%;
    }
    .modal2-box {
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .modal2-box img {
        width: 45px;
        height: 59px;
        object-fit: cover;
    }
    .modal2-box button {
        width: 100%;
        height: 40px;
        background: #FFF;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        cursor: pointer;
        font-style: normal;
        font-weight: 500;
        font-size: 11px;
        line-height: 18px;
        text-align: center;
        text-transform: uppercase;
        color: #711F7E;
        margin-top: 20px;
    }
    .modal2-box button a {
        font-style: normal;
        font-weight: 500;
        font-size: 11px;
        line-height: 21px;
        text-align: center;
        text-transform: uppercase;
        color: #711F7E;
    }
}

@media screen and (max-width: 520px) {
    .modal2 {
        width: 75%;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3222;
        transition: .5s;
    }
    .modal2-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: center;
        justify-content: center;
        background: rgba(113, 31, 126, 0.9);
        box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.45);
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        position: relative;
        padding-top: 30px;
    }
    .modal2-vector {
        width: 40px;
        height: 45px;
        position: absolute;
        top: 20px;
        left: 20px;
    }
    .modal2-close {
        width: 35px;
        height: 35px;
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
        transition: all 0.5s;
        -webkit-transition: all 0.5;
        -moz-transition: all 0.5;
        -ms-transition: all 0.5;
        -o-transition: all 0.5;
    }
    .modal2-close:hover {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }
    .modal2-text {
        width: 95%;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal2-text p {
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        text-align: center;
        color: #FFFFFF;
    }
    .modal2-contack {
        width: 90%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 10%;
    }
    .modal2-box {
        width: 45%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .modal2-box img {
        width: 40px;
        height: 55px;
        object-fit: cover;
    }
    .modal2-box button {
        width: 100%;
        height: 40px;
        background: #FFF;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        cursor: pointer;
        font-style: normal;
        font-weight: 500;
        font-size: 11px;
        line-height: 18px;
        text-align: center;
        text-transform: uppercase;
        color: #711F7E;
        margin-top: 20px;
    }
    .modal2-box button a {
        font-style: normal;
        font-weight: 500;
        font-size: 11px;
        line-height: 21px;
        text-align: center;
        text-transform: uppercase;
        color: #711F7E;
    }
}

div.modal.activ {
    top: 50%!important;
}

#brending-fix .brending-img img {
    max-width: 100%;
}

.li-style {
    min-width: 7px;
}

.recipe-list2boxhead h2 {
    letter-spacing: 0px;
}



@media screen and (max-width:490px) {

   /* PERSON START CODE  */
   .person-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 0px;
    position: relative;
}

.person-box{
    width: 100%;
    height: fit-content;
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    column-gap: 4%;
}
.person-card {
    width: 48%;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    padding: 15px;
    border: 2px solid #25253e;
    box-sizing: border-box;
    margin-bottom: 20px;
    transition: all 0.6s ease-in-out;
    z-index: 3;
    background: #181828;
}
.personal-img{
    width:135px;
    height:135px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.person-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    margin-bottom: 20px;
}
.person-text p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #fbb226;
}

.person-text span {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 43px;
    color: #ffffff;
}

.personal-list{
    width: 100%;
    height:fit-content;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;

    column-gap: 3.5%;

  

}

.person-btn{
    width: 31%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #711f7e;
    padding: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #ffffff;
    cursor: pointer;
    transition: .5s;
    margin-bottom: 20px;
    
  
    
}


.goster{
    width: 31%;
    height: 40px;
    display: flex;
    align-items: center;
    background: #fbb226;
    padding: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #ffffff;
    cursor: pointer;
    transition: .5s;

}



.personal-img{
width:100%;
height:100px;
display:flex;
align-items:center;
justify-content:center;
}
.person-card img {
width:85px;
height:85px;
border-radius: 100%;
border:2px solid #fff;
object-fit: cover;

}
/* PERSON END CODE  */
   
   
   
   }
   