html {
    scroll-behavior: smooth;
}
img{max-width: 100%;}
*{box-sizing: border-box;}
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: 16px;
    max-width: 100%;
    /* overflow-x: hidden; */
    font-weight: 400;    
    font-family: "Nunito Sans", sans-serif;
    line-height: 1.4;
    color: var(--brown);
    /* background-color: var(--white);   */
    margin: auto;  
    background-color: var(--backtheme);
}
a{
    text-decoration: none;
    color: inherit;
}
:root{
    --black:#141414;
    --full-black:#000000;
    --white:#FFFFFF;
    --d-grey: #8F8F90;
    --grey: #8C8C8C;
    --brown: #512B18;
    --green: #B9CA45;
    --d-green: #52733C;
    --backtheme: #FCF9EF;
    --cream: #F9F1DA;
}
.petrona{font-family: "Petrona", serif;}
.link{color: inherit;transition: color 250ms ease;}
.link:hover{color: #E60E2F;}
.f-16{font-size: 16px !important;}
.f-14{font-size: 14px !important;}
.f-13{font-size: 13px !important;}
.z-2{z-index: 2;}
.bold{font-weight: 700;}
.bolder{font-weight: 900;}
.light{font-weight: 300;}
.extra-light{font-weight: 200;}
.fw-normal{font-weight: 500;}
.position-relative{position: relative;}
.gradient-bg{background: linear-gradient(175deg, #FCFCFC -10.13%, #CED7E9 34.85%, #FCFCFC 79.82%);}
.black-bgg{background-image: url(../images/black-bg.jpg);background-size: cover;background-position: center;}
.box-shadow{box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.15);}
.smart-text {  mix-blend-mode: difference;}
.bg-cream{background-color: var(--cream);}
.bg-green{background-color: var(--d-green);}
.color-white{color: var(--white);}
.color-black{color: var(--black);}
.color-dgrey{color: var(--d-grey);}
.color-grey{color: var(--grey);}
.color-green{color: var(--green);}
.text-nowarp{white-space: nowrap;}
.line-14{line-height: 1.4;}
.line-15{line-height: 1.5;}
.line-16{line-height: 1.6;}
.line-20{line-height: 1.8;}
.w-70{width: 70%;}
.gap-32{gap: 32px !important;}
.gap-24{gap: 24px !important;}
.gap-16{gap: 16px !important;}
.gap-8{gap: 8px !important;}
.border-none{border: none !important;}
ul{margin: 0;padding: 0;}
li{list-style: none}
h1{font-size: 80px;}
h2{font-size: 72px;}
h3{font-size: 40px;}
h4{font-size: 36px;}
h5{font-size: 28px;font-weight: 400}
h6{font-size: 21px;font-weight: 400}
.responsive-img{min-width: 100%;min-height: 100%;max-height: 80svh;object-fit: cover;transition: all 500ms ease;}
.padding-x{padding-left: 160px;padding-right: 160px;}
.padding-x-big{padding-left: 240px;padding-right: 240px;}
.padding-x-small{padding-left: 80px;padding-right: 80px;}
.padding-y{padding-top: 120px;padding-bottom: 120px;}
.padding-y-big{padding-top: 160px;padding-bottom: 160px;}
.padding-y-small{padding-top: 80px;padding-bottom: 80px;}
.p-36{padding: 36px;}
.burger-menu-icon{cursor: pointer;}
.alt-space{height: 88px;width: 100%;}
.roundedd{border-radius: 32px;overflow: hidden;}
.roundedd-2{border-radius: 38px;overflow: hidden;}
.disc{padding:0 30px;}
.disc li{list-style: disc;}
.absolute-btn{
  position: absolute !important;
  right: 0;
  bottom: 0;
}

.btn-1{
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 32px;
  gap: 8px;
  border-radius: 56px;
  border: 1px solid var(--d-green);
  background-color: var(--backtheme);
  transition: all 500ms ease;
  position: relative;
  color: #2d6a4f;
}
.btn-1::before{
  content: '';
  width: 15px;
  height: 1px;
  background-color: var(--d-green);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  transition: all 500ms ease;
}
.btn-1:hover{
  background-color: #F9F1DA;
  gap: 24px;
}
.btn-1:hover::before{
  right: 55px;
}

.header-main{
  position: fixed;
  left: 0;
  right: 0;
  top: 48px;
  padding: 32px 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
  transition: all 500ms ease;
  color: var(--white);
}
.header-main ul{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.header-main ul li a{
  padding: 16px 20px;
  border-radius: 56px;
  background-color: transparent;
  transition: all 500ms ease;
}
.header-main ul li a:hover{
  background-color: var(--brown);
  color: var(--white);
}

.logo{
  display: flex;
  flex-direction: column;
  width: 240px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  filter: brightness(15);
  transition: all 500ms ease;
}

.header-scroll , .header-main.header-2{
  top: 0;
  background-color: var(--backtheme);
}
.header-scroll , .header-main.header-2{color: var(--brown);}
.header-scroll .logo , .header-main.header-2 .logo{filter: none;}
.header-main .logo::before{
  content: '';
  width: 0px;
  height: 1px;
  background-color: var(--green);
  position: absolute;
  bottom: 19px;
  left: calc(-100vw + 5px);
  transition: all 1000ms ease;
}
.header-main .logo::after{
  content: '';
  width: 0px;
  height: 1px;
  background-color: var(--green);
  position: absolute;
  bottom: 19px;
  right: calc(-100vw + 5px);
  transition: all 1000ms ease;
}
.header-scroll .logo::before , .header-main.header-2 .logo::before{
  width: 100vw;
}
.header-scroll .logo::after , .header-main.header-2 .logo::after{
  width: 100vw;
}

.header-call{
  border: 2px solid var(--white);
}
.header-call:hover , .header-scroll .header-call , .header-main.header-2 .header-call{
  border: 2px solid var(--brown);
}

.dropdown{
  cursor: pointer;
  transition: all 500ms ease;
}
.header-main ul.dropdown-menu {
  position: absolute;
  top: 200%;
  left: -10px;
  background: var(--backtheme);
  list-style: none;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 4px;
  border-radius: 32px;
  color: var(--brown);
  border: none !important;
  gap: 0;
}
.dropdown img{filter: brightness(15);transition: all 500ms ease;}
.header-scroll .dropdown img , .header-main.header-2 .dropdown img{filter: none}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu li a {
  display: block;
  border-radius: 56px;
  white-space: nowrap;
  padding: 16px 20px;
  width: 100%;
}


.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.banner{
  width: 100%;
  height: 100vh;
  position: relative;
}
#heroVideo{
  width: calc(100% - 64px);
  height: calc(100% - 64px);
  border-radius: 80px;
  object-fit: cover;
  position: absolute;
  inset: 32px;
}
.banner-text{
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  color: var(--white);
  width: 100%;
  padding: 0 15%;
}
.banner-btn{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 64px;
  position: absolute;
  z-index: 3;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
.banner-arrows{
  width: 40px;
  height: 40px;
  background-image: url(../images/svg/down-arrow.svg);
  background-size: 40px;
  background-repeat: repeat-y;
  background-position: center 0px;
  animation: arrowslider 2s ease-in-out infinite;
}
@keyframes arrowslider{
  from{  background-position: center 0px;}
  from{  background-position: center -40px;}
}


.image-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.image-track {
  display: flex;
  align-items: start;
  gap: 32px;
  width: max-content;
  animation: scroll 20s linear infinite alternate;
}

.image-track img {
  width: 376px;
  height: auto;
  border-radius: 32px;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}









.footer-main{
  justify-content: center;
  align-items: center;
  display: flex;
  text-align: center;
  flex-direction: column;
  padding: 110px 20px 230px;
  border-top: 1px solid #D4CDB9
}


.footer-social{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--black);
  padding: 32px;
}
.footer-social .divider{
  width: 1px;
  height: 4px;
  background-color: var(--black);
}
.footer-social img{
  filter: brightness(0);
  transition: all 500ms ease;
}
.footer-social img:hover{filter: none;}
.copyright{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--white);
  background-color: var(--d-green);
  padding: 32px;
}
.copyright .divider{
  width: 1px;
  height: 4px;
  background-color: var(--white);
}
.insta-post-wrap{
  overflow: hidden;
  width: 100%;
  aspect-ratio: 7/10;
  position: relative;
  border-radius: 24px;
}
.insta-post{
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 7/10;
  position: absolute;
  left: 0;
  right: 0;
  top: -54px;
}
.hizmet-card{
 background-color: var(--cream);
 border-radius: 38px;
 padding: 8px;
 display: flex;
 flex-direction: column;
 margin-bottom: 60px;
}
.hizmet-card img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 32px;
}
.hizmet-card h4{font-size: 32px;}

.vlog-video{
  width: 100%;
  height: auto;
  border-radius: 32px;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: cover;
}
.blog-link{
  font-weight: 700;
  color: var(--black);
  transition: all 500ms ease;
}
a:has(.blog-link):hover .blog-link{color: var(--d-green);}

.form-section .col-md-6{
  border-top: 1px solid #F9F1DA;
  padding: 20px 0;
}
.form-section .col-md-6:nth-child(odd){padding-left: 240px;}
.form-section .col-md-6:nth-child(even){padding-right: 240px;}

.orderr-1{order: 1;}
.orderr-2{order: 2;}
.orderr-3{order: 3;}
.orderr-4{order: 4;}
.orderr-5{order: 5;}
.orderr-6{order: 6;}
.orderr-7{order: 7;}
.orderr-8{order: 8;}

.form-section .col-md-6.orderr-7 h6{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.form-section .col-md-6.orderr-7 h6 .divider{
  width: 1px;
  height: 4px;
  background-color: var(--brown);
}

.form-section input::placeholder , .form-section textarea::placeholder{color: #C2ACA0;}
.form-section input , .form-section textarea{
  background: none;
  border: none;
  outline: none;
  font-size: 21px;
  color: var(--brown);
  padding: 10px 0;
  width: 100%;
}
.form-section .btn-1{
  border: none;
  color: var(--d-green);
  margin-left: -32px;
  filter: brightness(0);
  background: none;
  transition: all 500ms ease;
}
.form-section .btn-1:hover{filter: none;}

.login-page{
  width: 100%;
  height: 100svh;
  position: relative;
  background-color: var(--white);
}
.login-header{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.copyright-online{
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--grey);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.copyright-online .divider{
  display: block;
  width: 1px;
  height: 4px;
  background-color: var(--grey);
}
.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  gap: 10px;
  position: relative;
}

/* Hide default checkbox */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Custom box */
.checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

/* Checked state */
/* .custom-checkbox input:checked + .checkmark {
  background-color: #000;
  border-color: #000;
} */

/* Check icon */
.checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Show check icon when checked */
.custom-checkbox input:checked + .checkmark::after {
  opacity: 1;
}

.login-wrap{
  width: 464px;
  max-width: 90vw;
  height: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.input-group {
  position: relative;
  margin: 16px 0;
  width: 100%;
}

.input-group input {
  width: 100%;
  padding: 24px 32px 8px;
  font-size: 16px;
  border: 1px solid #BFBFBF;
  border-radius: 32px !important;
  outline: none;
  background: transparent;
}

.input-group label {
  position: absolute;
  left: 32px;
  top: 16px;
  color: var(--brown);
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s ease all;
  /* background: white; */
}

/* When input is focused OR has value */
.input-group input:focus + label,
.input-group input:valid + label {
  top: 8px;
  font-size: 12px;
  color: var(--grey);
}

/* Optional focus border color */
.input-group input:focus {
  border-color: #000;
}
.login-wrap form button{
  width: 100%;
  height: 56px;
  position: relative;
  background-color: #512B18;
  border: none;
  outline: none;
  border-radius: 56px;
  color: var(--white);
  margin-top: 24px;
}
.login-wrap form button span{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  opacity: 0;
  transition: all 500ms ease;
}
.login-wrap form button span.active{opacity: 1;}
.kayit-input .input-group{margin-bottom: 10px;}
.kayit-input{
  height: 0;
  overflow: hidden;
  transition: all 500ms ease;
}
.kayit-input.active{height: 155px;}

.toggle-btn-wrap{
  width: 100%;
  height: 56px;
  background-color: var(--grey);
  position: relative;
  margin: 48px 0;
  border-radius: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.toggle-btn-wrap div{
  width: 50%;
  height: 56px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  color: #454545;
}
.toggle-btn-wrap::before{
  content: '';
  background-color: var(--white);
  width: 50%;
  border-radius: 32px;
  height: 50px;
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  transition: all 500ms ease;
}
.toggle-btn-wrap.active::before{
  left: calc(50% - 3px);
}















.burger-menu-icon{
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  position: fixed;
  z-index: 14;
  left: 20px;
  top: 40px;
  display: none;
  transition: all 500ms ease;
}
.burger-menu-icon::before{
  content: '';
  background-color: var(--white);
  width: 24px;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  transition: all 500ms ease;
}
.burger-menu-icon::after{
  content: '';
  background-color: var(--white);
  width: 24px;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  transition: all 500ms ease;
}
header:has(.header-scroll) .burger-menu-icon::after ,
header:has(.header-scroll) .burger-menu-icon::before ,
header:has(.header-2) .burger-menu-icon::after ,
header:has(.header-2) .burger-menu-icon::before{
  background-color: var(--brown);
}
.burger-menu-icon.active::before{
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%) rotate(45deg);
  background-color: var(--brown);
}
.burger-menu-icon.active::after{
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%) rotate(-45deg);
  background-color: var(--brown);
}

header:has(.header-2) .burger-menu-icon , .burger-menu-icon.burger-scroll{top: 20px;}
.me-nav{display: none;}
.header-call img{display: none;}
@media screen and (max-width:1600px) {
  h1{font-size: 72px;}
  h2{font-size: 56px;}
  h3{font-size: 36px;}
  h4{font-size: 32px;}
  h5{font-size: 24px;}
  h6{font-size: 21px;}
  .padding-x{padding-left: 80px;padding-right: 80px;}
  .padding-x-big{padding-left: 120px;padding-right: 120px;}
  .form-section .col-md-6:nth-child(odd){padding-left: 120px;}
  .form-section .col-md-6:nth-child(even){padding-right: 20px;}
  .padding-x-small{padding-left: 60px;padding-right: 60px;}
  .padding-y{padding-top: 60px;padding-bottom: 60px;}
  .padding-y-big{padding-top: 80px;padding-bottom: 80px;}
  .padding-y-small{padding-top: 40px;padding-bottom: 40px;}
  .header-main{padding: 32px 40px;}
  .header-main ul{gap: 0;}
  .toggle-btn-wrap{margin: 20px 0;}
}
@media screen and (max-width:1200px) {
  h1{font-size: 56px;}
  h2{font-size: 36px;}
  h3{font-size: 32px;}
  h4 , .hizmet-card h4{font-size: 28px;}
  h5{font-size: 21px;}
  h6{font-size: 18px;}
  .padding-x{padding-left: 40px;padding-right: 40px;}
  .padding-x-big{padding-left: 80px;padding-right: 80px;}
  .form-section .col-md-6:nth-child(odd){padding-left: 40px;}
  .form-section .col-md-6:nth-child(even){padding-right: 100px;}
  .padding-x-small{padding-left: 40px;padding-right: 40px;}
  .padding-y{padding-top: 40px;padding-bottom: 40px;}
  .padding-y-big{padding-top: 60px;padding-bottom: 60px;}
  .padding-y-small{padding-top: 20px;padding-bottom: 20px;}
  .footer-main{padding: 120px 80px;}
  .copyright-online{font-size: 12px;}
  #heroVideo {
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border-radius: 40px;
    inset: 16px;
  }
  .header-main{top: 20px;padding: 32px 20px;}
  .header-scroll , .header-main.header-2{top: 0;}
  /* .logo{width: 180px;} */
  .header-main ul li a{padding: 14px 12px;}
}
@media screen and (max-width:991px) {
  h1{font-size: 40px;}
  h2{font-size: 32px;}
  h3{font-size: 24px;}
  h4 , .hizmet-card h4{font-size: 21px;}
  h5{font-size: 18px;}
  h6{font-size: 16px;}
  .padding-x{padding-left: 40px;padding-right: 40px;}
  .padding-x-big{padding-left: 40px;padding-right: 40px;}
  .form-section .col-md-6:nth-child(odd){padding-left: 40px;}
  .form-section .col-md-6:nth-child(even){padding-right: 40px;}
  .padding-x-small{padding-left: 40px;padding-right: 40px;}
  .padding-y{padding-top: 20px;padding-bottom: 20px;}
  .padding-y-big{padding-top: 20px;padding-bottom: 20px;}
  .padding-y-small{padding-top: 20px;padding-bottom: 20px;}
  .footer-main{padding: 60px 40px;}
  .copyright-online{font-size: 12px;}
  .header-main{top: 20px;padding: 16px 20px;}
  .header-scroll , .header-main.header-2{top: 0;}
  /* .logo{width: 180px;} */
  .header-main ul li a{padding: 14px 12px;}
  .burger-menu-icon{display: block;}
  .header-main ul li a , .dropdown{display: none;}
  .header-main ul li a.header-call{display: flex; padding: 6px 12px;}
  .logo{width: 180px;bottom: -15px;}
  .header-main .logo::before , .header-main .logo::after{bottom: 14px;}
  #heroVideo {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 20px;
    inset: 8px;
  }
  .me-nav{
    background-color: var(--backtheme);
    padding:100px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: fixed;
    z-index: 11;
    top: 0;
    bottom: 0;
    left: -110vw;
    width: 100vw;
    height: 100vh;
    transition: all 1.5s ease;
  }
  .me-nav ul li{
    font-size: 38px;
    font-weight: 700;
    margin: 20px 0;
  }
  .me-nav.active{left: 0;}
  .image-track img{width: 240px;}
  .roundedd , .vlog-video{border-radius: 20px;}
  .roundedd-2{border-radius: 28px;}
  .online-img{display: none;}
  .login-page{
    background-image: url(../images/online.jpg);
    background-size: cover;
    background-position: center;
  }
  .login-header{background: #ffffff87;}
  .login-wrap{
    padding: 20px;
    border-radius: 20px;
    background-color: #ffffff87;
    backdrop-filter: blur(20px);
  }
  .login-wrap .color-grey{color: var(--black);}
  .input-group{margin: 8px 0;}
  .kayit-input .input-group{margin-bottom: 16px;}
  .checkmark{border: 1px solid #fff;}
  .kayit-input.active{height: 110px;}
}
.orrder-1{order: 1;}
.orrder-2{order: 2;}
.orrder-3{order: 3;}
.orrder-4{order: 4;}
.orrder-5{order: 5;}
@media screen and (max-width:767px) {
  .orderr-1{order: 1;}
  .orderr-2{order: 5;}
  .orderr-3{order: 2;}
  .orderr-4{order: 6;}
  .orderr-5{order: 3;}
  .orderr-6{order: 7;}
  .orderr-7{order: 4;}
  .orderr-8{order: 8;}
  .orrder-1{order: 3;}
  .orrder-2{order: 2;}
  .orrder-3{order: 1;}
  .orrder-4{order: 4;}
  .orrder-5{order: 5;}
  h1{font-size: 32px;}
  h2{font-size: 24px;}
  h3{font-size: 21px;}
  h4 , .hizmet-card h4{font-size: 18px;}
  h5{font-size: 16px;}
  h6{font-size: 14px;}
  body{font-size: 14px;}
  .banner-text{padding: 0 20px;}
  .banner-text h2{font-size: 40px;}
  .padding-x{padding-left: 20px;padding-right: 20px;}
  .padding-x-big{padding-left: 20px;padding-right: 20px;}
  .form-section .col-md-6:nth-child(odd){padding-left: 20px;padding-right: 20px}
  .form-section .col-md-6:nth-child(even){padding-left: 20px;padding-right: 20px}
  .padding-x-small{padding-left: 20px;padding-right: 20px;}
  .padding-y{padding-top: 20px;padding-bottom: 20px;}
  .padding-y-big{padding-top: 20px;padding-bottom: 20px;}
  .padding-y-small{padding-top: 20px;padding-bottom: 20px;}
  .header-call img{display: block;filter: brightness(15);transition: all 500ms ease;}
  .header-scroll .header-call img , .header-main.header-2 .header-call img{filter: none;}
  .header-call{font-size: 0px;}
  .btn-1{padding: 8px 32px;}
  .footer-social{flex-direction: column;gap: 8px;}
  .divider{height: 1px !important; width: 12px !important;}
  .copyright{font-size: 11px;padding: 10px;gap: 8px;text-align: center;flex-direction: column;}
  .hizmet-card{margin-bottom: 20px;}
  .absolute-btn{bottom: -50px;}
  .input-group input{padding: 16px 32px 4px;}
  .input-group label{font-size: 14px;top: 12px;}
  .input-group input:focus + label, .input-group input:valid + label{font-size: 10px;top: 6px;}
  .custom-checkbox{font-size: 12px;}
  .kayit-input.active{height: 95px;}
  .toggle-btn-wrap div , .toggle-btn-wrap{height: 32px;}
  .toggle-btn-wrap::before{height: 26px;bottom: 3px;}
  .copyright-online{font-size: 10px;gap: 8px;text-align: center;}
  .copyright-online .divider{width: 4px !important;}
}