@charset "UTF-8";
/* CSS Document */
body, html {
  padding: 0;
  margin: 0;
  background: #F7F8FA;
  font-family: 'Lato', sans-serif;
  /*font-family: sans-serif;*/
  color: #676767;
}
.wrapper {
  position: relative;
  max-width: 1080px;
  margin: 0px auto;
}
/*.wrapper-2 {
         margin: 50px auto;
      }*/
.wizard {
  max-width: 620px;
  margin: 0 auto;
}
.wizard__header {
  position: relative;
  color: #FFF;
  padding: 50px;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-align: center;
  height: 200px;
  background: url("../img/yolcu.jpg");
  background-color: #4D637B;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wizard__header-content {
  position: absolute;
  width: 100%;
  padding: 0 50px;
  text-align: center;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -60%);
}
.wizard__header-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(77, 99, 123, 0.6);
  background: rgba(0, 0, 0, 0.39);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.wizard__header-guvenli {
  position: relative;
  color: #FFF;
  padding: 50px;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-align: center;
  height: 200px;
  background: url("../img/guvenli-alan-2.jpg");
  background-color: #4D637B;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wizard__title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0;
}
.wizard__subheading {
  text-transform: uppercase;
  margin: 0;
  font-size: .8rem;
  font-weight: 100;
  letter-spacing: 2px;
}
.wizard__subheading span {
  font-weight: 600;
}
.wizard__steps {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 10;
}
.wizard__footer {
  padding: 0 50px 50px;
  border-radius: 5px;
}
.wizard__content {
  background: #FFF;
  box-shadow: 0px 0px 10px #c5c5c5;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.wizard__congrats-message {
  color: #676767;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.wizard__congrats-message {
  color: #676767;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 35%;
  transform: translate(-25%, -50%);
  opacity: 0;
}
.wizard.completed .wizard__content {
  animation: gettingOut 1s cubic-bezier(1, -0.71, 1, 1.16) forwards;
}
.wizard.completed .wizard__congrats-message {
  animation: fadeIn 1s cubic-bezier(1, -0.71, 1, 1.16) forwards;
}
.line {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: -1;
  height: 6px;
  transition: all 0.5s ease;
}
.line.-start {
  left: 0%;
  background: #50ad32;
  width: 50%;
}
.line.-end {
  left: 50%;
  background: #5094de;
  width: 50%;
}
.line.-background {
  background: #c3c3c3;
  width: 100%;
}
.line.-progress {
  background: #50ad32;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
}
.line.-in-progress {
  transform: scaleX(1);
}
.panels {
  position: relative;
  overflow: hidden;
}
.panel {
  position: absolute;
  top: 0;
  left: 0;
  transition: .5s all;
  padding: 50px;
}
.panel__header {
  margin-bottom: 30px;
}
.panel__title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0;
  margin-bottom: 5px;
}
.panel__subheading {
  font-size: .9rem;
  line-height: 1.2rem;
  margin: 0;
}
.panel.movingOutBackward {
  transform: translateX(-620px);
}
.panel.movingOutFoward {
  transform: translateX(620px);
}
.panel.movingIn {
  transform: translateX(0);
}
.steps {
  position: relative;
  display: flex;
  flex: 0 1 auto;
  color: #fff;
}
.step {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
}
.step__content {
  position: relative;
  z-index: 2;
}
.step__number {
  font-size: 1.3rem;
  color: #676767;
  background: #FFF;
  font-weight: 800;
  width: 50px;
  height: 50px;
  line-height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid #c3c3c3;
  transition: opacity .5s;
  opacity: 1;
  z-index: 5;
}
.step.-completed .step__number {
  opacity: 0;
}
.step.-completed .checkmark {
  z-index: 0;
  animation: fill .4s ease-in-out forwards, scale .3s ease-in-out .6s both;
}
.step.-completed .checkmark__check {
  animation: stroke .5s linear .4s forwards;
}
.step.-completed .line {
  transform: scaleX(1);
}
.step:last-child .line {
  width: 50%;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #75b2f5;
  z-index: -1;
}
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 8;
  stroke-miterlimit: 10;
  stroke: #50ad32;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  stroke: #FFF;
  stroke-width: 5;
}
.button {
  cursor: pointer;
  font-size: 1rem;
  line-height: 1rem;
  background: #50ad32;
  color: #FFF;
  padding: 10px 15px;
  border: none;
  outline: none;
  display: inline-block;
  transition: all .3s;
  font-weight: bold;
}
.button:hover {
  background: #7baee6;
  background: #e7fbe1;
  color: #50ad32;
}
.button.previous {
  margin-right: 5px;
}
.button.disabled {
  background: #c3c3c3;
  cursor: default;
}
@keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  50% {
    transform: translateX(-50%) scale3d(1.5, 1.5, 1.5);
  }
  100% {
    transform: scale3d(0);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #79c760;
  }
}
@keyframes gettingOut {
  0% {
    transform: translateY(0%);
  }
  30% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(-200%);
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
/*----------------------------------------------------------*/
button:focus {
  outline: 3px dotted -webkit-focus-ring-color;
  /* outline: 1px auto -webkit-focus-ring-color; */
  outline: 3px dotted #bdecae;
}
.uyari {
  color: #db0d15;
  background: #ffeaeb;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.uyari-yesil {
  color: #50ad33;
  background: #eef9ea;
  padding: 10px;
  border-radius: 5px;
}
.seyahat-izin-btn {
  background: #50ad33;
  color: #fff;
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 15px;
  width: 100%;
  display: block;
}
.seyahat-izin-btn:hover {
  color: #ffffff;
  text-decoration: none;
  background: #208201;
}
/*.panel__content {
      text-transform: capitalize;
   }*/
.ortala {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-logo {
  position: absolute;
  z-index: 1;
  height: 80px;
  height: 68px;
  width: auto;
  /*left: 10px;*/
  right: 10px;
  top: -5px;
}
.hes-logo {
  position: absolute;
  z-index: 1;
  height: 50px;
  width: auto;
  /*right: 10px;*/
  left: 10px;
  top: 20px;
}
h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.nasil-alinir a {
  position: absolute;
  top: -34px;
  background: #FF5722;
  padding: 5px 20px;
  border-radius: 5px;
  color: #fff;
  right: 0;
  padding-bottom: 20px;
}
.nasil-alinir a:hover {
  color: #fff;
  text-decoration: none;
  background: #3F51B5;
}
.nasil-alinir a i {
  margin-left: 15px;
}
.nasil {
  /*padding: 15px;
    height: 200px;*/
  color: #fff;
}
/*.nasil:hover {
           background: #ededed;
        }*/
/*.nasil a {
   color: #fff;
   font-size: 18px;
   padding: 20px;
   display: block;
   background: #4caf50;
   border-radius: 5px;
   box-shadow: 0 1px 2px #00000033;
}*/
.nasil a {
  color: #ffffff;
  font-size: 14px;
  padding: 20px;
  display: block;
  background: #157cff;
  border-radius: 5px;
  box-shadow: 0 1px 2px #00000033;
  background-image: linear-gradient(to top, #0072ff 50%, #009fff 100%);
}
.btn-grad {
  background-image: linear-gradient(to right, #00c6ff 0%, #0072ff 51%, #00c6ff 100%)
}
.btn-grad:hover {
  background-position: right center;
}
.nasil a:hover {
  text-decoration: none;
  /*background: #28902d;*/
  text-decoration: none;
  /*background: #0049a7;*/
  color: #d4e7ff;
  background-image: linear-gradient(to top, #0072ff 100%, #00c6ff 50%);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}
.nasil a span:first-child {
  display: block;
  font-size: 70px;
}
.nasil-2 a {
  color: #fff;
  font-size: 14px;
  padding: 20px;
  display: block;
  /*background: #4caf50;*/
  border-radius: 5px;
  box-shadow: 0 1px 2px #00000033;
  background-image: linear-gradient(to top, #4caf50 50%, #69d46d 100%);
}
.nasil-2 a:hover {
  text-decoration: none;
  background: #e9ffea;
  color: #fff;
  background-image: linear-gradient(to top, #4caf50 100%, #69d46d 50%);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}
.nasil-2 a span:first-child {
  display: block;
  font-size: 70px;
}
.nasil-3 a {
  color: #F44336;
  font-size: 14px;
  padding: 20px;
  display: block;
  background: #ffdddb;
  border-radius: 5px;
  box-shadow: 0 1px 2px #00000033;
}
.nasil-3 a:hover {
  text-decoration: none;
  background: #F44336;
  color: #ffdddb;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}
.nasil-3 a span:first-child {
  display: block;
  font-size: 70px;
}
.geri-btn {
  padding: 10px 0;
  border-bottom: 1px dotted #607d8b52;
  margin-bottom: 15px;
  text-align: left;
   /*margin-left: -15px;
   margin-right: -15px;*/
}
.geri-btn a {
  color: #607D8B;
  font-size: 18px;
  padding: 10px;
  border-radius: 5px;
}
.geri-btn a:hover {
  color: #FF5722;
  text-decoration: none;
  background: #ededed;
}
.pl-4a {
  padding-left: 4rem;
}
.btn-yardim-hes {
  margin-bottom: 15px;
  background: #8BC34A;
  color: #fff;
  width: 100%;
  padding: 20px;
  font-size: 20px;
  text-align: left;
  display: block;
  border-radius: 3px;
  text-decoration: none;
}
.btn-yardim-hes:hover, .btn-yardim-hes:focus, .btn-yardim-hes:active {
  background: #e3f5cf;
  color: #4CAF50;
  text-decoration: none;
}
.btn-yardim-guvenli {
  margin-bottom: 15px;
  background: #2196F3;
  color: #fff;
  width: 100%;
  padding: 20px;
  font-size: 20px;
  text-align: left;
  display: block;
  border-radius: 3px;
  text-decoration: none;
}
.btn-yardim-guvenli:hover, .btn-yardim-guvenli:focus, .btn-yardim-guvenli:active {
  background: #d9eeff;
  color: #2196F3;
  text-decoration: none;
}
.btn-yardim-hes > i, .btn-yardim-guvenli > i {
  font-size: 34px;
  vertical-align: bottom;
  margin-right: 15px;
}
.panel-yardim {
  padding: 50px;
}
.geri-mobil {
  display: none;
}
.yardim-back {
  background: url("../img/yardim-back-a.jpg");
  /* Full height */
  /*height: 100%;
height: 600px;*/
  height: 90vh;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  position: relative;
}
.yardim-back-yesil {
  /*background: #4CAF50;*/
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  /*background: -moz-linear-gradient(#4caf5000, #8BC34A);
    background: -webkit-linear-gradient(#8BC34A,#4caf5000);
    background: -o-linear-gradient(#4caf5000,#8BC34A);
    background: -ms-linear-gradient(#4caf5000,#8BC34A);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4caf5000', endColorstr='#8BC34A',GradientType=0 );
    background: linear-gradient(#8BC34A,#4caf5000);*/
  background-image: -moz-linear-gradient(90deg, rgba(82, 169, 0, 0.70196) 0%, rgba(82, 169, 0, 0.35) 12%, rgba(82, 169, 0, 0) 27%, rgba(82, 169, 0, 0.5) 50%, rgba(82, 169, 0, 0.99) 82%, rgb(82, 169, 0) 82%, rgb(82, 169, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(82, 169, 0, 0.70196) 0%, rgba(82, 169, 0, 0.35) 12%, rgba(82, 169, 0, 0) 27%, rgba(82, 169, 0, 0.5) 50%, rgba(82, 169, 0, 0.99) 82%, rgb(82, 169, 0) 82%, rgb(82, 169, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(82, 169, 0, 0.70196) 0%, rgba(82, 169, 0, 0.35) 12%, rgba(82, 169, 0, 0) 27%, rgba(82, 169, 0, 0.5) 50%, rgba(82, 169, 0, 0.99) 82%, rgb(82, 169, 0) 82%, rgb(82, 169, 0) 100%);
}
.wizard__content_2 {
  background: #FFF;
  box-shadow: 0px 0px 10px #0000004a;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.hes-logo-yardim img {
  height: 50px;
  position: relative;
  margin-bottom: 30px;
}
.card-yardim-hes {
  position: relative;
  /*color: #FFF;
   padding: 50px;
   border-radius: 5px;
   border-bottom-left-radius: 0;
   border-bottom-right-radius: 0;*/
  text-align: center;
  height: 130px;
  background: url("../img/yolcu-a.jpg");
  background-color: #4D637B;
  background-position: center;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px 5px 0px 0px;
}
.card-yardim-guvenli {
  position: relative;
  /*color: #FFF;
   padding: 50px;
   border-radius: 5px;
   border-bottom-left-radius: 0;
   border-bottom-right-radius: 0;*/
  text-align: center;
  height: 130px;
  background: url("../img/guvenli-alan-3.jpg");
  background-color: #4D637B;
  background-position: center;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px 5px 0px 0px;
}
.card {
  box-shadow: 0px 0px 10px #0000004a;
  border-radius: 5px;
  border: none;
}
.card-body {
  text-align: start;
  text-align-last: center;
}
.card-title, .card-text {
  color: #2e5f00;
}
.card-title {
  font-weight: bold;
}
.card-text {
  font-size: 14px;
  line-height: normal;
}
.btn-yardim {
  background: #52a800;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  width: 80%;
  text-align: left;
  padding: 10px 15px;
  border-radius: 3px;
}
.btn-yardim:hover, .btn-yardim:focus, .btn-yardim:active {
  background: #def1c7;
  color: #51a900;
}
.btn-yardim i {
  float: right;
  /*display: list-item;*/
  /*margin-top: 4px;*/
  font-size: 19px;
}
.btn-pos {
  position: absolute;
  bottom: 20px;
}
.card-width {
  /*width: 60%;*/
  margin: auto;
  /* height: 100%;*/
}
/*---------------------------------------------------------------------------------------------*/
.yardim-back {
  transition-property: top, bottom, width;
  transition-duration: .2s, .2s, .35s;
  transition-timing-function: linear, linear, ease;
  -webkit-overflow-scrolling: touch;
}
.yardim-back {
  /*position: absolute;*/
  /*width: 620px;*/
  /*top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 5;
    color: #fff;
    font-weight: 200;
    background-size: cover;
    background-position: center center;*/
  padding: 30px 60px;
  overflow: auto;
  box-shadow: 0px 0px 10px #0000004a;
  border-radius: 5px;
}
.yardim-back:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.yardim-back::after {
  position: absolute;
}
.yardim-wrapper {
  position: relative;
  max-height: calc(100vh - 75px);
  min-height: 100%;
  z-index: 4;
}
.hes-logo-yardim {
  /*padding: 20px 30px 15px;*/
  padding: 0;
}
.wrapper-2 {
  margin: auto;
  padding: 15px;
}
.card-body-yardim {
  height: 210px;
  padding: 1.25rem 1.25rem 0;
}
.card-body-yardim-btn {
  padding: 0 1.25rem 1.25rem;
}
.card-dokuman {
   height: auto;
   padding-bottom: 2rem;
   height: 10rem;
}
.card-dokuman a {
   color: #52a800;
   border-bottom: 1px solid #ededed;
   padding-bottom: .5rem;
   display: block;
}
.logolar {
  margin-bottom: 30px;
}
.inner {
  font-size: 12px;
}
.inner p a {
  color: #db0d15;
}
.nasil-uyari {
  background: #fff2f2;
  padding: 10px;
  color: #E91E63;
  border-radius: 5px;
}
.e-devlet-logo {
  height: 66px;
  margin-bottom: 14px;
}
.dropdown-dil {
    position: absolute;
    z-index: 1;
    right: 100px;
    top: 8px;
}
.dropdown-dil a {
   background: transparent;
    border: none;
}
.logolar-mobil {
   display: none;
}
.sss-card {
   display: none;
}

.accordion .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
   box-shadow: none;
   border-radius: 0;
}
.accordion h2 {
    margin: 0;
}
.accordion>.card>.card-header {
    border-radius: 0;
    margin-bottom: -1px;
    padding: .75rem .5rem;
}

.accordion-sss {
    margin-left: -20px;
    margin-right: -20px;
}
.accordion button {
    color: #3b69d0;
    font-size: 20px;
    white-space: nowrap;
}
.card-header:hover{
  background: #efefef;
}




.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}

.modal-body-sss {
    overflow-y: auto;
}

.orange {
    color: #FF5722 !important;
}
.card-title-special {
    color: #2e5f00;
   font-weight: bold;
       font-size: 1.25rem;
   margin-bottom: .75rem;
}

@media (min-width:768px) and (max-width:1199px) {
.iframeboyut {
width: 768px;
height: 1024px;
}
.accordion button {
  color: #3b69d0;
  font-size: 20px;
  white-space: initial;

}

}
@media (min-width:1024px) and (max-width:1366px) {
  .iframeboyut {
  width:1024px;
  height: 1366px;
  }
  .accordion button {
    color: #3b69d0;
    font-size: 20px;
    white-space: initial;
}

  }

  @media (min-width:375px) and (max-width:812px) {
    .iframeboyut {
    width:375px;
    height: 812px;
    }

    .accordion button {
      color: #3b69d0;
      font-size: 20px;
      white-space: initial;
  }



    }



























/*----------------------------------------------------------------------------------------------*/
@media (min-width:768px) and (max-width:1199px) {
  .card-body-yardim {
    height: 260px;
    padding: 1.25rem 1.25rem 0;
  }
  /*.btn-pos {
    position: inherit;
    bottom: 20px;
}*/
  /*   .btn-yardim {
    width: 100%;
}*/
  .btn-pos {
    position: absolute;
    bottom: 20px;
  }
   .yardim-back {
      padding: 15px;
   }
   .card-dokuman {
      height: auto;
      padding-bottom: 2rem;
   }
   .card-dokuman a {
      font-size: 12px;
   }
   .logo-1 {
      display: none;
   }
   .sb-logo {
      height: 56px;
   }
   .logolar {
    margin-bottom: 0px;
}
   /*Sosyal Medya--------------------------------------------------------*/

 .sosyal-medya {
    position: relative;
    z-index: 2;
}
     .sosyal-medya ul {
     list-style: none;
    display: block;
    text-align: right;
    margin-top: -15px;
    background: #4489126b;
    margin-left: -15px;
    margin-right: -15px;
    padding-right: 1rem;
}
      .sosyal-medya ul li {
             display: inline-block;
    color: #fff;
    padding: 3px 5px;
    line-height: 1;
      }
      
      .sosyal-medya ul li a {
         color: #fff;
         font-size: 1.2rem;
      }
      /*.sosyal-medya ul li:hover {
         background: #3F51B5;
      }*/
      .sosyal-medya ul li:first-child {
    font-size: .7rem;
    vertical-align: text-top;
}
      .sosyal-medya ul li:first-child:hover {
         background: transparent;
      }
      .twitter {
         background: #2196F3;
      }
      .twitter:hover {
    background: #33bfff;
}
      .insta {
         background: #f09433; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
      }
      .insta:hover {
         background: #fd5949; 
      }

/*Sosyal Medya End--------------------------------------------------------*/
}
/*---------------------------------------------------------------------------------------------*/
@media (max-width:767.98px) {
  .yardim-back {
    height: 100vh;
     border-radius: 0;
  }
  .wrapper-2 {
    padding: 0px;
  }
  .card-width {
    width: 100%;
    margin: auto;
    height: auto;
  }
  .card-yardim-hes {
    height: 110px;
  }
  .card-yardim-guvenli {
    height: 110px;
  }
  .geri-web {
    display: none;
  }
  .geri-mobil {
    display: block;
  }
  .no-gutters div .card-img {
    height: 300px;
    width: auto;
    display: block;
    margin: auto;
  }
  .panel {
    padding: 50px 15px;
  }
  .nasil-alinir {
    text-align: right;
  }
  .nasil-alinir a {
    top: -50px;
    padding: 12px 20px;
    border-radius: 5px;
    width: 100%;
    padding-bottom: 27px;
    border-radius: 0;
  }
  .wizard__footer {
    padding: 0 20px 50px;
  }
  .wizard__congrats-message {
    top: 30%;
    left: auto;
    transform: translate(0%, -50%);
  }
  .nasil, .nasil-2, .nasil-3 {
    width: 90%;
    text-align: center;
    display: inline-block;
    margin-bottom: 15px;
  }
  .pl-4a {
    padding-left: 20px;
  }
  .bs-stepper .step-trigger {
    font-size: 12px;
  }
  .bs-stepper .step-trigger {
    padding: 0px;
  }
  .btn-green {
    margin-top: 1rem;
  }
  .bs-stepper-content {
    margin-top: 1rem;
  }
  .card-body {
    text-align: center;
  }
  .wrapper {
    margin: 50px 0 0;
  }
  .wrapper-2 {
    margin: 0;
  }
  .yardim-2-header, .wizard__header-overlay {
    border-radius: 0;
  }
  .yardim-2-panels {
    overflow: visible;
  }
  .panel-yardim {
    padding: 50px 15px;
  }
  .hes-logo-yardim {
    display: none;
  }
  .card-body {
    text-align: start;
  }
  .yardim-back {
    padding: 50px 15px 0;
  }
  .btn-yardim {
    width: 80%;
  }
  .yardim-wrapper {
    padding-top: 80px 15px 5px;
  }
  .yardim-back {
    width: auto;
  }
  .logolar {
    display: none;
  }
  .card-body-yardim {
    height: auto;
    padding: 1.25rem 1.25rem 1.25rem;
  }
  .btn-pos {
    position: inherit;
    bottom: 20px;
  }
  .mastfoot {
    display: none;
  }
   .logolar-mobil {
      margin-top: -40px;
       display: block;
   }
   .sb-logo-mobil {
      height: 60px;
     margin-top: 3px;
   }
   .dropdown-dil {
      position: inherit;
      display: inline-block;
   }
   .mt-15 {
      margin-bottom: 15px;
   }
   .sb-mobil {
    background: #479200;
    padding: 3px 5px;
    margin: -15px -15px 15px;
}
   .hes-logo-yardim-mobil {
      margin-bottom: 15px;
   }
   .hes-logo-yardim-mobil img {
      height: 40px;
   }
   .sss-btn-head {
      padding: 0.5rem;
   }
   .sss-btn {
    background: #52aa01 !important;
    padding: 0.7rem;
    border: none !important;
    color: #fff !important;
      outline: none;
}
   .sss-btn:hover {
      outline: none;
      border: none;
   }
   .sss-card {
      display: block;
   }
   .dokuman-menu-link {
      display: none;
   }
   
    /*Sosyal Medya--------------------------------------------------------*/

 .sosyal-medya {
        position: relative;
    z-index: 2;
    margin-top: -45px;
    height: 75px;
}
     .sosyal-medya ul {
     list-style: none;
    display: block;
    text-align: right;
    margin-top: 0px;
    background: #4489126b;
    margin-left: 0px;
    margin-right: 0px;
    padding-right: 0rem;
}
      .sosyal-medya ul li {
             display: inline-block;
    color: #fff;
    padding: 5px 7px;
    line-height: 1;
      }
      
      .sosyal-medya ul li a {
         color: #fff;
         font-size: 1.6rem;
      }
      /*.sosyal-medya ul li:hover {
         background: #3F51B5;
      }*/
      .sosyal-medya ul li:first-child {
    font-size: .7rem;
    vertical-align: super;
}
      .sosyal-medya ul li:first-child:hover {
         background: transparent;
      }
      .twitter {
         background: #2196F3;
         margin-right: .2rem;
      }
      .twitter:hover {
    background: #33bfff;
}
      .insta {
         background: #f09433; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
      }
      .insta:hover {
         background: #fd5949; 
      }

/*Sosyal Medya End--------------------------------------------------------*/
   
}

@media (max-width:991px) {
   .dokuman-menu-link {
      display: none;
   }
   .card-title-special {
       font-size: 1.05rem;
}
}
@media (min-width:1200px) {
   .logo-2 {
      display: none;
   }
   /*Sosyal Medya--------------------------------------------------------*/

 .sosyal-medya {
    position: relative;
    z-index: 2;
}
     .sosyal-medya ul {
     list-style: none;
    display: block;
    text-align: right;
    margin-top: -30px;
    background: #4489126b;
    margin-left: -60px;
    margin-right: -60px;
    padding-right: 1rem;
}
      .sosyal-medya ul li {
             display: inline-block;
    color: #fff;
    padding: 5px;
    line-height: 1;
      }
      
      .sosyal-medya ul li a {
         color: #fff;
         font-size: 1.5rem;
      }
      /*.sosyal-medya ul li:hover {
         background: #3F51B5;
      }*/
      .sosyal-medya ul li:first-child {
    font-size: .7rem;
    vertical-align: super;
}
      .sosyal-medya ul li:first-child:hover {
         background: transparent;
      }
      .twitter {
         background: #2196F3;
      }
      .twitter:hover {
    background: #33bfff;
}
      .insta {
         background: #f09433; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
      }
      .insta:hover {
         background: #fd5949; 
      }

/*Sosyal Medya End--------------------------------------------------------*/
}


