@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* variables */
:root
{
    --text-color: rgb(26, 25, 25);
    --secondary-color: rgb(241, 136, 1);
    --field-text-color: rgb(19, 19, 19);
    --field-place-color: rgb(101, 101, 101);
    --field-color: rgb(230, 230, 230);
    
}
body
{
    font-family: "Jost";
    width: 100%;
    position: relative;
    height: auto;
}

main
{
    padding: 50px 70px;
    background-image: url(../images/bg.jpg);
    background-size: cover;
    min-height: 100vh;

}
.inner
{
    position: relative;
    height: 100%;
    min-height: 500px;
}

header, footer
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    flex-wrap: wrap;
}
footer
{

}
/* Varsayılan stil (masaüstü için) */
.logo {
    display: flex;
    align-items: center;
    height: auto;
    position: relative;
    z-index: 10;
    width: 50%;
}

.logo-icon {
    width: auto;
    display: flex;
    align-items: center;
}

.logo-icon img {
    width: auto;
    max-width: 100%;
    height: 70px; /* Görselin taşmaması için yüksekliği sabitleyin */
    max-height: 70px; /* Görselin taşmaması için maksimum yüksekliği belirleyin */
}

.logo-text {
    font-size: 37px;
    color: var(--field-text-color);
    font-weight: bold;
    margin-left: 3px;
}

/* Mobil cihazlar için medya sorgusu */
@media screen and (max-width: 768px) {
    .logo {
        width: 100%; /* Mobilde logonun tam genişlikte olmasını sağlayın */
        justify-content: center; /* Logoyu ortala */
    }

    .logo-icon img {
        height: 50px; /* Mobilde logonun daha küçük görünmesi için yükseklik ayarı */
        max-height: 50px; /* Mobilde taşmayı önlemek için maksimum yükseklik */
    }

    .logo-text {
        font-size: 24px; /* Mobilde daha küçük metin boyutu */
    }
}
.bar-end h3
{
    font-size: 18px;
    color: var(--text-color);
    font-weight: bold;   
}
.bar-end h3 i
{
    margin-right: 12px;
}
.bar-end h3 span
{
    font-weight: 400;
}

.links
{
    list-style: none;
    padding: 0;
}
.links a
{
    text-decoration: none;
    margin-right: 40px;
}
.links li
{
    display: inline-block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 17px;
    font-weight: 500;
   
}

  
.progress-counter
{
    width: 300px;
    height: 13px;
    background-color: rgb(250,250,250);
    position: relative;
    border-radius: 50px;
}
.progress-pin
{
    position: absolute;
    top: -33px;
    z-index: 20;
    left: -15px;
    margin-left: 0%;
    transition: 0.4s;
    font-size: 10px;
    font-family: "Oswald";
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    height: 25px;
    width: 25px;
}
.progress-pin::after
{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 50% 0;
    background-color: rgb(246, 135, 44);
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;

}
.counter-inner
{
    width: 0;
    background-color: var(--primary-color);
    height: inherit;
    border-radius: inherit;
    transition: 0.4s;
}

.steps
{
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    padding: 60px;
    display: grid;
    align-content: center;
    position: relative;
}
.wrapper
{
    width: 80%;
    margin: 0 auto;
    display: grid;
    height: 100%;
    align-content: center;
    margin-top: 70px;
    margin-bottom: 70px;
}
article .main-heading
{
  font-size: 35px;
  color: var(--text-color);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom:10px;
}
article .main-text
{
    font-size: 18px;
    font-family: "Roboto";
    color: var(--field-place-color);
    line-height: 1.3;
    width: 100%;
}
.form-inner
{
    position: relative;
}
.right-map
{
    position: absolute;
    top: 30px;
    right: 30px;
}
.steps-inner
{
    margin-top: 50px;
}
.radio-field
{
    width: 100%;
    height: 255px;
    text-align: center;
    position: relative;
    display: grid;
    place-content: center;
    margin-bottom: 20px;
	border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    border: solid 2px transparent;
    transition: 0.4s ease;
	padding: 0px 20px;
}

.radio-field input
{
    -webkit-appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
	border-radius: 20px;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    border: solid 2px transparent;
    transition: 0.4s ease;

}
.radio-field input:checked
{  
    border-color: var(--secondary-color);
    box-shadow: none;
}
.radio-field img, .radio-field label
{
    position: relative;
    z-index: 100;
    display: block;
    pointer-events: none;
}
.radio-field img
{
    width: 90%;
    margin: 7px 5px 5px 5px;
}
.radio-field label
{
    font-size: 22px;
    color: var(--text-color);
    line-height: 1.2;
    font-weight: bold;
}
#step1 .next-prev
{
    justify-content: center;
}
.next-prev
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-top: 50px;
}
.next-prev button
{
    background-color: var(--secondary-color);
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    padding: 0 20px;
    height: 53px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    transition: 0.4s ease;
    text-transform: uppercase;
    border: solid 2px transparent;
}

.next-prev a
{
    background-color: var(--secondary-color);
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    padding: 15px 40px;
    height: 56px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    transition: 0.4s ease;
    text-transform: uppercase;
    border: solid 2px transparent;
	text-decoration: none;
}

.next-prev a:hover
{
    background-color:#5492C4;
}
.next-prev .prev
{
    background-color: rgb(234, 234, 234);
    color: rgb(42, 42, 42);
}
.next-prev button i
{
    margin-left: 10px;
    margin-right: 10px;
    transition: 0.4s ease;
}
.next-prev a i
{
    margin-left: 10px;
    margin-right: 10px;
    transition: 0.4s ease;
}
.next-prev .next:hover i, .next-prev .apply:hover i
{
    transform: translateX(10px);
}
.next-prev .prev:hover i
{
    transform: translateX(-10px);
}

/* step2 */

.input-field, .select-field
{
    width: 100%;
    height: auto;
    position: relative;
}
.input-field label, .radio-box label
{
    font-size: 16px;
    color: var(--field-text-color);
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.input-field label i, .radio-box label i
{
    margin-left: 10px;
}

.select-field select
{
    -webkit-appearance: none;
    position: relative;
    cursor: pointer;
}
.select-field select+span::after
{
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: rgb(96,99,108);
    border-left: solid 2px var(--field-color);
    position: absolute;
    right: 20px;
    top: 46%;
    pointer-events: none;
    width: 30px;
    text-align: right;
}
.input-field input, .select-field select, .input-field textarea
{
    border: solid 2px var(--field-color);
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 60px;
    font-size: 16px;
    color: var(--field-place-color);
    padding: 0 20px;
    transition: 0.4s ease;
    margin-bottom: 30px;
}
.input-field .textarea
{
    min-height: 150px;
    padding-top: 20px;
}
  .input-field input:focus, .select-field select:focus, .input-field textarea:focus
  {
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    border-color: var(--secondary-color);
    outline: none;
  }
.field-c
{
    display: flex;
    border: solid 2px var(--field-color);
    border-radius: 5px;
    height: 60px;
    transition: 0.4s ease;
    margin-bottom: 30px;

}
.field-c .second
{
    -webkit-appearance: none;
    border-radius: 5px;
    background-color: rgb(236, 240, 249);
    min-width: 59px;
    height: 100%;
    border: 0;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: rgb(101, 101, 101);
    font-weight: 500;
    position: relative;
    outline: solid 2px rgb(236, 240, 249);
}
.field-c .text
{
    font-size: 20px;
    color: var(--field-place-color);
    line-height: 60px;
}
.field-c input
{
    border: 0;
    margin-bottom: 0;
    height: 56px;
}
.focused .second
{
    outline-color: var(--secondary-color);
}
.field-c .second:focus
{
    outline-color: var(--secondary-color);
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
}
.field-c:focus-within
{
    border-color: var(--secondary-color);
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    border-color: var(--secondary-color);
    outline: none;
}
.radio-single
{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.radio-single input
{
    -webkit-appearance: none;
    border-radius: 50%;
    background-color: var(--field-color);
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;
}
.radio-single input:checked::before
{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 20%;
    background-color: var(--secondary-color);
    width: 12px;
    height: 12px;
    border-radius: 50%;

}
.radio-single span
{
    font-size: 16px;
    color: var(--field-place-color);
    margin-left: 8px;
}
.info-text
{
    border: solid 2px #f7d8b2;
    border-radius: 5px;
    background-color: #fcecd9;
    width: 100%;
    height: auto;
	 font-family: "Roboto";
    padding: 20px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    display: flex; 
    margin-top: 20px;
}
.info-text i
{
    font-size: 20px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-right: 20px;
}
#customForm
{
    height: auto;
    position: relative;
}
#customForm #remove
{
    position: absolute;
    width: 31px;
    background-color: rgb(255, 255, 255);
    height: 31px;
    border-radius: 50%;
    border: solid 2px var(--text-color);
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 0;
    right: -30px;
    bottom: 45px;
      
}
#accordion
{
    margin-top: 20px;
    margin-bottom: 20px;
}
.add-button button
{
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    background-color: transparent;
}
.add-button button::before
{
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    display: inline-block;
}
.collapsed::before
{
    content: "\2b" !important;
}
.accordion-inner
{
    margin-top: 20px;
}
.accordion-inner button
{
    border: solid 2px rgb(215, 230, 252);
    border-radius: 5px;
    background-color: rgb(243, 247, 255);
    color: rgb(10, 63, 153);
    font-weight: 500;
    padding: 10px 20px;
    min-height: 50px;
}
.accordion-inner button::before
{
    display: none;
}




























.thankyou-page .logo
{
    justify-content: center;
    margin-top: 60px;
}
.thankyou-page .logo-icon
{
    width: 55px;
    margin-right: 10px;
}
.thankyou-page .logo .logo-icon img
{
    width: 100%;
}
.thankyou-page .logo-text
{
    font-size: 65px;
}
.thankyou-page .main-inner
{
    background-image: url(../images/thankyou-bg.png) !important;
    background-color: var(--text-color-hover);

}
.thankyou-page article
{
    text-align: center;
    margin-top: 80px;
}
.thankyou-page article h1
{
        font-size: 75px;
        font-weight: bold;
        text-transform: uppercase; 
}
.thankyou-page article h1 span
{
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-color);
}
.thankyou-page article span
{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
}
.thankyou-page article p
{
    font-size: 18px;
    font-family: "Myriad Pro";
    color: var(--secondary--text-color);
    margin: 0 auto;
    margin-top: 45px;
    width: 39%;
}
.social-media
{
    text-align: center;
    margin: 40px auto;
    background-color: var(--text-color-hover);
    width: 30%;
    padding: 6px 10px;
}
.social-media a
{
    border: solid 1px rgb(244, 244, 244);
    border-radius: 5px;
    background-color: transparent;
    color: var(--secondary--text-color);
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}
.social-media a i
{
    margin-right: 10px;
    font-size: 20px;
}
.back-home
{
    width: 188px;
    height: 63px;
    margin: 0 auto;
}
.back-home a
{
    background-color: var(--primary-color);
    border-radius: 50px;
    color: var(--text-color-hover);
    width: 100%;
    display: block;
    line-height: 63px;
    text-align: center;
    text-decoration: none;
    height: 100%;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: 0;

}







#sub img
{
    width: 60px;
}

.highlight
{
    border-top: solid 3px var(--primary-color) !important;
    border-bottom: solid 3px var(--primary-color) !important;

}













#error
{
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}


.invalid
{
  border: solid 2px #ff4444 !important;
  position: relative;
}

.boxlinkico{font-size:80px;padding-bottom:10px;padding-top:10px;cursor:pointer}
.boxlinkico2{font-size:20px;padding-bottom:10px;padding-top:10px;cursor:pointer;color:rgb(241, 136, 1)}
.boxlinktxt{font-size:16px;color:rgb(101, 101, 101);margin-top:5px;line-height:1.2}
.tit{color:rgb(241, 136, 1);font-weight:500}
#map {height: 500px;width: 100%;border-radius:5px;border:2px solid #f7d8b2;padding:2px}


.cihaz-check {
cursor: pointer;
position: relative;
margin-bottom: 10px;
display: inline-block;
padding: 5px 20px;
box-sizing: border-box;
text-align: center;
vertical-align: top;

}
.cihaz-check.selected {
border:3px solid rgb(241, 136, 1);
font-weight:500;
}

.tableform {height:40px !important;padding:5px;text-align:center;margin-bottom:0px !important}
.tablerow {padding:0px 5px}


.badge {
    --bs-badge-padding-x: 0.65em;
    --bs-badge-padding-y: 0.35em;
    --bs-badge-font-size: 0.75em;
    --bs-badge-font-weight: 700;
    --bs-badge-color: #fff;
    --bs-badge-border-radius: 0.375rem;
    display: inline-block;
    padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
    font-size:14px;
    font-weight: 400;
    line-height: 1;
    color: var(--bs-badge-color);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--bs-badge-border-radius);
}