#main {
    width: 100%;
    height: auto;
    margin-top: 8rem;
}

#main #home_entry {
    width: 100%;
    height: 75rem;
}

#main #home_entry .entry-img {
    width: 100%;
    height: 100%;
    position: relative;
}

#main #home_entry .entry-img .entry-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#main #home_form {
    width: 90%;
    height: auto;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: repeat(1, 65% 1fr);
    justify-items: end;
}

#main #home_form .sectors {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3rem;
}

#main #home_form .sectors .sector-info {
    width: 30rem;
    height: 25rem;
    border: var(--border);
    box-shadow: var(--b-shadow);
    transition: var(--time);
}

#main #home_form .sectors .sector-info .sector-routing {
    width: 100%;
    height: 100%;
    display: block;
}

#main #home_form .sectors .sector-info:hover {
    transform: translateY(-1rem);
}

#main #home_form .sectors .sector-info .sector-routing .sector-img {
    width: 29.8rem;
    height: 17rem;
}

#main #home_form .sectors .sector-info .sector-routing .sector-img img {
    width: 100%;
    height: 100%;
}

#main #home_form .sectors .sector-info:hover .sector-routing .sector-img img {
    filter: brightness(0.7);
}

#main #home_form .sectors .sector-info .sector-routing .sector-name {
    width: 100%;
    height: 3.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main #home_form .sectors .sector-info .sector-routing .sector-name h3 {
    font-size: 1.7rem;
    font-weight: 400;
    color: #000;
}

#main #home_form .sectors .sector-info .sector-routing .sector-view {
    width: 100%;
    height: 4rem;
    border-top: 0.1rem solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    transition: var(--time);
    color: #212240;
    font-size: 1.5rem;
}

#main #home_form .sectors .sector-info:hover .sector-routing .sector-view {
    background-color: #212240;
    color: white;
}

#main #home_form .requ-form {
    width: 100%;
    max-width: 50rem;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#main #home_form .requ-form #requForm {
    width: 100%;
    height: auto;
    padding: 1rem;
    border: 0.1rem solid rgba(33, 34, 64, 0.2);
    box-shadow: var(--b-shadow);
}

#main #home_form .requ-form #requForm .requ-form-head {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

#main #home_form .requ-form #requForm .requ-form-info {
    width: 100%;
    height: auto;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-1,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2,
#main #home_form .requ-form #requForm .requ-form-info .form-id-3,
#main #home_form .requ-form #requForm .requ-form-info .form-id-4 {
    display: grid;
    position: relative;
}
/* form-id-1, form-id-2 contents - first label */
#main #home_form .requ-form #requForm .requ-form-info .form-id-1 input,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 input {
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1.6rem;
    border: none;
    border-bottom: 0.2rem solid rgb(33, 34, 64);
    background-color: rgba(33, 34, 64, 0.075);
    outline: none;
    transition: .2s ease;
    margin-bottom: 1rem;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-1 label:first-of-type,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 label:first-of-type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.4rem;
    color: #999;
    transition: all .3s ease;
    pointer-events: none;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-1 input:focus + label:first-of-type,
#main #home_form .requ-form #requForm .requ-form-info .form-id-1 input:not(:placeholder-shown) + label:first-of-type,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 input:focus + label:first-of-type,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 input:not(:placeholder-shown) + label:first-of-type {
    top: -1.3rem;
    left: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(33, 34, 64);
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-1 input:focus,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 input:focus {
    border-bottom: 2px solid #4caf50;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-1 input:focus::after,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 input:focus::after {
    content: '';
    width: 100%;
    height: 0.2rem;
    background-color: #4caf50;
    left: 0;
    bottom: -0.2rem;
    transform: scaleX(0);
    transition: .3s ease;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-1 input:focus::after,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 input:focus::after {
    transform: scaleX(1);
}
/* last label */
#main #home_form .requ-form #requForm .requ-form-info .form-id-1 label:last-of-type,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 label:last-of-type {
    position: absolute;
    top: 7.25rem;
    left: 1rem;
    font-size: 1.4rem;
    color: #999;
    transition: all .3s ease;
    pointer-events: none;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-1 input:focus + label:last-of-type,
#main #home_form .requ-form #requForm .requ-form-info .form-id-1 input:not(:placeholder-shown) + label:last-of-type,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 input:focus + label:last-of-type,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 input:not(:placeholder-shown) + label:last-of-type {
    top: 5rem;
    left: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(33, 34, 64);
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-3 label {
    color: rgb(33, 34, 64);
    font-size: 1.2rem;
    font-weight: bold;
    text-indent: 0.5rem;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-3 select {
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1.6rem;
    color: rgb(33, 34, 64);
    outline: none;
    border: none;
    border-bottom: 0.2rem solid rgb(33, 34, 64);
    background-color: rgba(33, 34, 64, 0.075);
    cursor: pointer;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-4 #faaliyetToggle {
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    border-bottom: 0.2rem solid rgb(33, 34, 64);
    background-color: rgba(33, 34, 64, 0.075);
    margin-top: 1.2rem;
    cursor: pointer;
    position: relative;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-4 .faaliyet-container {
    display: none;
    width: 100%;
    height: 32.5rem;
    overflow: auto;
    padding: 1rem;
    border: 0.1rem solid rgb(33, 34, 64);
    background-color: #fff;
    margin-top: 0.2rem;
    position: absolute;
    z-index: 10;
    top: 100%;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-4 .faaliyet-container .checkbox-wrapper {
    width: 100%;
    height: 3rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-top: 0.1rem;
    text-indent: 0.5rem;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-4 .faaliyet-container .hizmet-container {
    display: none;
    margin-left: 2rem;
    border-top: 0.1rem solid rgb(33, 34, 64);
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-4 .faaliyet-container .complate-btn {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    border-radius: var(--b-radius);
    background-color: rgba(33, 34, 64, 0.8);
    color: #fff;
    margin-top: 2rem;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-4 .faaliyet-container .complate-btn:hover {
    background-color: rgba(33, 34, 64, 0.7);
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-1 label::after,
#main #home_form .requ-form #requForm .requ-form-info .form-id-2 label::after,
#main #home_form .requ-form #requForm .requ-form-info .form-id-3 label::after,
#main #home_form .requ-form #requForm .requ-form-info .form-id-4 h3::after {
    content: ' *';
    color: red;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-5 {
    width: 100%;
    height: auto;
    display: grid;
    row-gap: 0.5rem;
    margin-top: 2rem;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-5 label {
    display: flex;
    align-items: center;
    color: #555;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-5 label a {
    margin-left: 0.3rem;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-6 {
    width: 100%;
    height: auto;
    margin-top: 1rem;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-6 button {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-radius: var(--b-radius);
    background-color: rgba(33, 34, 64, 0.8);
    color: #fff;
    cursor: pointer;
}

#main #home_form .requ-form #requForm .requ-form-info .form-id-6 button:hover {
    background-color: rgba(33, 34, 64, 0.7);
}

#main #site_map {
    width: 90%;
    height: auto;
    margin: 0 auto 4rem;
}

#main #site_map .site-map-head {
    text-align: center;
    font-size: 3rem;
    padding: 2.5rem 0;
}

#main #site_map .map-steps {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1rem;
    justify-items: center;
}

#main #site_map .map-steps .step-1,
#main #site_map .map-steps .step-2,
#main #site_map .map-steps .step-3,
#main #site_map .map-steps .step-4 {
    max-width: 35rem;
    min-width: 30rem;
    width: 100%;
    height: 20rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transition: .2s ease;
}

#main #site_map .map-steps .step-1:hover,
#main #site_map .map-steps .step-2:hover,
#main #site_map .map-steps .step-3:hover,
#main #site_map .map-steps .step-4:hover {
    transform: scale(1.1) translateY(-1rem);
    box-shadow: var(--b-shadow);
    border: 0.1rem solid rgba(33, 34, 64, 0.5);
    background-color: rgba(33, 34, 64, 0.075);
}

#main #site_map .map-steps .step-1:hover .number-1,
#main #site_map .map-steps .step-2:hover .number-2,
#main #site_map .map-steps .step-3:hover .number-3,
#main #site_map .map-steps .step-4:hover .number-4 {
    background-color: rgb(33, 34, 64);
}

#main #site_map .map-steps .nm {
    width: 5rem;
    height: 5rem;
    background-color: rgba(33, 34, 64, 0.8);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    text-indent: -0.2rem;
}

#main #site_map .map-steps .content {
    width: 100%;
    height: auto;
    display: grid;
    row-gap: 1rem;
    text-align: center;
}

#main #site_map .map-steps .content h4 {
    font-size: 1.3rem;
}

#main #site_map .map-steps .content p {
    font-size: 1.1rem;
}

#logo_slider {
    width: 90%;
    height: auto;
    margin: 0 auto 4rem;
}

#logo_slider .slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#logo_slider .slider-container .slider {
    display: flex;
    transition: transform 1s ease-in-out;
}

#logo_slider .slider-container .slider .slide {
    min-width: 20%;
    height: 12.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
}

#logo_slider .slider-container .slider .slide img {
    width: 100%;
    height: 100%;
    max-width: 15rem;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 1600px) and (min-width: 1440px) {
    #main #home_form .sectors .sector-info {
        width: 25rem;
        height: 23rem;
    }
    
    #main #home_form .sectors .sector-info .sector-routing .sector-img {
        width: 24.8rem;
        height: 15rem;
    }
    
    #main #home_form .sectors .sector-info .sector-routing .sector-name h3 {
        font-size: 1.4rem;
    }
    
    #main #home_form .sectors .sector-info .sector-routing .sector-view {
        font-size: 1.4rem;
    }
}

/* Normal Masaüstü Ekranlar */
@media screen and (max-width: 1440px) and (min-width: 1200px) {
    #main {
        margin-top: 6rem;
    }
    
    #main #home_entry {
        height: 45rem;
    }
    
    #main #home_form {
        width: 95%;
        column-gap: 1rem;
    }

    #main #home_form .sectors .sector-info {
        width: 23rem;
        height: 18rem;
    }
    
    #main #home_form .sectors .sector-info .sector-routing .sector-img {
        width: 100%;
        height: 11.75rem;
    }
    
    #main #home_form .sectors .sector-info .sector-routing .sector-name {
        height: 3rem;
    }
    
    #main #home_form .sectors .sector-info .sector-routing .sector-name h3 {
        font-size: 1.3rem;
    }
    
    #main #home_form .sectors .sector-info .sector-routing .sector-view {
        height: 3rem;
        font-size: 1.2rem;
    }
    
    #main #site_map .map-steps .step-1,
    #main #site_map .map-steps .step-2,
    #main #site_map .map-steps .step-3,
    #main #site_map .map-steps .step-4 {
        max-width: 30rem;
        min-width: 25rem;
        width: auto;
    }
}

/* Küçük Masaüstü ve Büyük Tablet Ekranlar */
@media screen and (max-width: 1199px) and (min-width: 992px) {
    #main {
        margin-top: 6rem;
    }
    
    #main #home_entry {
        height: 40rem;
    }
    
    #main #home_form {
        width: 960px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column-reverse;
    }

    #main #home_form .sectors {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    #main #home_form .sectors .sector-info {
        max-width: 450px;
    }

    #main #home_form .requ-form {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 3rem;
        padding: 0;
    }
    
    #main #site_map .map-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Ekranlar */
@media screen and (max-width: 991px) and (min-width: 768px) {
    #main {
        margin-top: 6rem;
    }

    #main #home_entry {
        height: 35rem;
    }

    #main #home_form {
        width: 720px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column-reverse;
    }

    #main #home_form .sectors {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        margin-top: 3rem;
    }

    #main #home_form .sectors .sector-info {
        max-width: 340px;
    }

    #main #home_form .requ-form {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 0;
    }

    #main #site_map .map-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #main #site_map .map-steps .step-1,
    #main #site_map .map-steps .step-2,
    #main #site_map .map-steps .step-3,
    #main #site_map .map-steps .step-4 {
        width: 30rem;
    }
}

/* Büyük Mobil Ekranlar */
@media screen and (max-width: 767px) {
    #main {
        margin-top: 6rem;
    }

    #main #home_entry {
        height: 30rem;
    }

    #main #home_form {
        width: 540px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    #main #home_form .sectors {
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #main #home_form .sectors .sector-info {
        max-width: 100%;
    }

    #main #home_form .requ-form {
        width: 100%;
        padding: 0;
    }

    #main #home_form .requ-form #requForm {
        width: 100%;
    }

    #main #site_map .map-steps {
        grid-template-columns: 1fr;
    }

    #main #site_map .site-map-head {
        font-size: 2.5rem;
    }
}

/* Mobil Ekranlar */
@media screen and (max-width: 575px) {
    #main {
        margin-top: 5rem;
    }

    #main #home_entry {
        height: 25rem;
    }

    #main #home_form {
        width: 100%;
        padding: 0 15px;
        display: flex;
        flex-direction: column-reverse;
    }

    #main #home_form .sectors {
        display: flex;
        flex-direction: column;
        row-gap: 3rem;
        margin-top: 2rem;
    }

    #main #home_form .sectors .sector-info {
        max-width: 30rem;
        width: 100%;
    }

    #main #home_form .requ-form {
        width: 100%;
        padding: 0;
    }

    #main #home_form .requ-form #requForm {
        width: 100%;
    }

    #main #home_form .requ-form #requForm .requ-form-head {
        font-size: 1.8rem;
    }
    
    #main #home_form .requ-form #requForm .requ-form-info .form-id-4 .faaliyet-container .checkbox-wrapper {
        font-size: 1.2rem;
    }
    
    #main #site_map .map-steps .step-1,
    #main #site_map .map-steps .step-2,
    #main #site_map .map-steps .step-3,
    #main #site_map .map-steps .step-4 {
        width: 90%;
        min-width: 20rem;
    }

    #main #site_map .map-steps {
        grid-template-columns: 1fr;
    }

    #main #site_map .site-map-head {
        font-size: 2.2rem;
    }

    #logo_slider .slider-container .slider .slide {
        min-width: 50%;
    }
}

/* Çok Küçük Mobil Ekranlar */
@media screen and (max-width: 375px) {
    #main #home_entry {
        height: 20rem;
    }
    
    #main #home_form .requ-form {
        padding: 0;
    }

    #main #home_form .requ-form #requForm .requ-form-head {
        font-size: 1.6rem;
    }

    #main #site_map .site-map-head {
        font-size: 2rem;
    }
    
    #main #home_form .sectors .sector-info .sector-routing .sector-img {
        width: 100%;
        height: 17rem;
    }
    
    #main #home_form .requ-form #requForm .requ-form-info .form-id-5 {
        font-size: 0.9rem;
    }
}