
body,html{
    background:#1c3944;
    padding: 0;
    width: 100%;
    margin: 0;
  }
  body {
  margin: 0;
  min-height: 100vh;
  background: #1c3944; /* varsayılan */

}


h2{
    font-weight: 300;
}

#main p {
font-size:18px !important;
line-height: 1.4;
}

#scrollcont{
    width: 100%;
    height: 100%;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
::-webkit-scrollbar {
    width: 0px !important;
    background: transparent;
  }

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-weight: 300 !important;
  }

::-webkit-scrollbar {
    display: none;
  }
  
  ::-webkit-scrollbar-button {
    display: none;
  }
  
  body {
    -ms-overflow-style:none;
  }
  
  html {
    scroll-behavior: smooth;

  }
  
  body{
    background: #0d262f;
  }
  
  #contactForm{
    font-family: sans-serif;
  }

  #message{
    font-family: sans-serif;
  }

#mainCont{
overflow: hidden;  
height:100%;
width:100%;
background-color: white;
font-weight: 200;
font-family: sans-serif;
min-width: 300px;

}

.header{
    display: flex;
    align-items: center;
    flex-direction: row;
    background: #1c3944;
    position: fixed;
    top: 0;
    left: 0;
    right:0;    
    width: inherit;
    height: 80px;
    z-index: 20;
    min-width: 300px;
    width:100%;
}

.loginCont{
    font-size: 24px;
    color: white;
    position: absolute;
    right: 0px;
   padding:15px;
    cursor:pointer; 
}

.sliderCont{
  width:100%;
  height: 600px;
  background: gray;
}

.sliderTextCont{
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 200px;
}

.sliderText{
    font-size: 25px;
    padding: 20px;
    background: #1c39459e;
    width: 250px;
    margin: auto;
    color: #f3f6f7;
    border-radius: 5px;
}

.sliderImgCont {
    background-image: url(../images/slider4.png);
    background-repeat: no-repeat;
    background-size: cover;
    height:inherit;
    width:inherit;
    min-height: 600px; 
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
 }

 #sliderImageCont{
    display: none;
    width: 100%;
    height: 500px;
 }


.hrefA{
    color:white;
}
.hrefA:hover{
    color:rgb(178, 189, 18);
  }

#main{

    width: 720px;
    margin: auto;
    margin-top:30px;
    background-color: white;
}

.sector{
    width: inherit;
    height: 400px;
    margin:auto;
    display: flex;
    flex-direction: column;
}

.cont{
    display: flex;
    gap: 15px;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
}

.headerCont{
   width:100%;
   height:30px;
   text-align:center;
   font-size: 24px;
   padding:10px 0px;

}

.imgCont{
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parCont{
    height: 300px;
    width: 300px;
    overflow:scroll;
    font-family: sans-serif;
    text-align: justify;
}

.contImages{
    height:inherit;
    width:inherit;
    object-position: center;
    display: block;
    border: 1px solid #bdb6b6;
    border-radius: 5px;
}

.sliderImage{
    margin:0px auto;
    border:none;
}

.footer{
    background: 
    #1c3944;
    width: inherit;
    height: 100px;
}


#footerText{
      padding: 30px 0px;
      text-align: center;
      color: #e3dede;
      font-family: sans-serif;
}


#logoImgCont{
    width:170px;
    margin:0 auto;
}

#logo{
    width:170px;
}

#cont{
    text-align:center;
    margin:50px auto;
    color:rgb(214, 211, 211);
}

#contactWrap{
    width:100%;
    background-color: white;
    font-size: 18px;
    font-family: sans-serif;
}

.container {
    background-color: white;
    padding: 50px 20px 80px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    margin: auto;
}

h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}


label {
    margin-top: 10px;
    display: block;
    color:#646161
}


input, textarea {
    width: 95%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
    color:#2b2b2b !important;
    outline:none;
    transition: .5s;
}

input:focus {
    border-color:#2f2e2e ;
}

textarea:focus {
    border-color:#2f2e2e ;
}

button {
    position:relative;
    width: 100%;
    padding: 15px 10px;
    background-color: #1c3945c7;
    color: #f6f1f1;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid gray;
    overflow: hidden;
}

button:hover {
    background-color: #406a7cc7;
}

button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease-out;
    border-radius: 50%;
    z-index: 0;
  }

  button:active::before {
    transform: translate(-50%, -50%) scale(1);
    color:black;
  }

  button span {
    position: relative;
    z-index: 1;
  }
  
#statusMessage {
    margin-top: 15px;
    text-align: center;
    color: green;
}

#sliderImageCont{
    margin-top:70px
}



@media screen and (max-width: 480px) {
    #main{
        width: 100%;
    }

    .sector{
        width: 100%;
        height: auto;
        margin:auto;
    }

    .cont{
        width: 100%;
        align-items: center;
        flex-direction: column;
        border:none;
    }
    
    .parCont{
        height: auto;
        width: 90%;
        overflow:scroll;
        margin:auto;
        padding: 10px 0px;
    }
    
    .sliderCont{
        width:100%;
        height: 500px;
      }

      .sliderImgCont {
        min-height: 300px;
        height:inherit;
      }

      .sliderTextCont{
        text-align: center;
        position: absolute;
        width: 100%;
        top: 450px;
    }

    .sliderText{
        font-size: 20px;
        padding: 20px;
        width: 185px;
    }

    .sliderImgCont {
        background-image:none;
    }

    #sliderImageCont{
        display:block
    }

    .container{
        width:90%
    }

#logoImgCont{
    width:150px;
    margin:0 auto;
}

#logo{
    width:150px;
}


}



