@font-face {
  font-family: 'Poppins';
  src: url(/fonts/Poppins-Regular.ttf);
  font-weight: 400;
  font-display: swap
}

@font-face {
  font-family: 'Poppins';
  src: url(/fonts/Poppins-Medium.ttf);
  font-weight: 500;
  font-display: swap
}

@font-face {
  font-family: 'Poppins';
  src: url(/fonts/Poppins-SemiBold.ttf);
  font-weight: 600;
  font-display: swap
}

@font-face {
  font-family: 'Poppins';
  src: url(/fonts/Poppins-Bold.ttf);
  font-weight: 700;
  font-display: swap
}

.grecaptcha-badge {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::selection {
  background-color: #2aab32;
  color: rgb(255, 255, 255);
}

body {
  font-family: "Poppins", sans-serif;
  background-color: rgb(250, 250, 250);
  color: rgb(0, 0, 0);
  font-weight: 500;
}

a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

img,
svg {
  user-select: none;
  vertical-align: middle;
}

.header-ust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10%;
  background: linear-gradient(135deg, #60bcaf 0%, #43b977 50%, #2aab32 100%);
  width: 100%;
  color: rgb(255, 255, 255);
}

.header-ust .iletisim-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-ust .iletisim-header a {
  display: flex;
  align-items: center;
}

.header-ust .iletisim-header a svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.header-ust p a {
  color: rgb(255, 255, 255);
  font-weight: 400;
}

.header-ust p {
  margin-bottom: 0;
}

.header-ust .header-sosyal {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-ust .header-sosyal a svg {
  width: 24px;
  height: 24px;
}

header {
  display: block;
  background-color: rgb(255, 255, 255);
  position: relative;
  z-index: 100;
  width: 100%;
  top: 0;
  border: none;
  outline: none;
  border-bottom: 1px solid rgb(40, 40, 40, 0.2);
}

header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 20px 10%;
}

header img {
  width: 300px;
  height: auto;
}

header .main-nav {
  display: flex;
  gap: 10px;
}

header .main-nav a {
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  color: rgb(25, 25, 25);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 25px;
}

header .main-nav a:hover {
  background-color: rgb(42, 171, 50, 0.2);
  color: #2aab32;
}

header .main-nav a:hover::after {
  width: 100%;
}

footer {
  background-color: rgb(240, 240, 240);
  padding: 50px 10%;
}

footer p {
  margin-bottom: 0;
}

footer .footer-div {
  display: flex;
  justify-content: space-between;
}

footer .footer-div div {
  max-width: 30%;
}

footer .footer-div div img {
  width: 220px;
  display: block;
}

footer .footer-div div p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

footer .footer-div div a {
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: 6px;
  font-family: 400;
  font-size: 16px;
  transition: 0.3s ease-in-out;
  color: rgb(20, 20, 20);
  transition: all 0.2s ease-in-out;
}

footer .footer-div div a:hover {
  color: #2aab32;
}

footer .footer-div div span {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: rgb(80, 80, 80);
}

footer .footer-sosyal {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

footer .footer-sosyal a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2aab32;
  padding: 5px;
  border-radius: 5px;
}

footer .footer-sosyal a svg {
  width: 23px;
  height: 23px;
  display: block;
}

footer .altmetin {
  text-align: center;
  font-size: 14px;
  color: rgb(55, 55, 55);
  margin-top: 20px;
}

footer .altmetin a {
  color: rgb(55, 55, 55);
  text-decoration: underline;
}

footer .tag {
  display: block;
  text-align: center;
  font-size: 14px;
  color: rgb(55, 55, 55);
  margin-top: 10px;
}

footer .tag a {
  color: #2aab32;
  font-weight: 600;
  text-decoration: underline;
}

header input {
  display: none
}

header label {
  display: none
}

header .menu {
  display: none
}

header .menu-bg {
  display: none
}

@media screen and (max-width:1050px) {
  .header-ust {
    padding: 10px 5%;
  }

  header .header-content {
    padding: 20px 5%;
  }

  header .header-content img {
    width: 250px;
  }

  footer {
    padding: 50px 5%;
  }

  footer .footer-div {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    text-align: center;
  }

  footer .footer-div div {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  footer .footer-div div .footer-sosyal {
    justify-content: center;
    flex-direction: row;
  }

  footer .footer-div div img {
    width: 220px;
    display: block;
    margin: 0 auto;
    text-align: center;
    justify-self: center;
  }

  footer .footer-div div p {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
  }

  footer .footer-div div a {
    display: flex;
    justify-self: center;
    text-align: center;
    width: fit-content;
  }

  footer .footer-div div span {
    margin-bottom: 15px;
  }

  footer .altmetin {
    font-size: 12px;
  }

  header .main-nav {
    display: none;
  }

  .menu-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    padding: 5px;
    border: rgb(40, 40, 40, 0.2) 1px solid;
    border-radius: 50%;
  }

  .menu-label .menu-icon {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, .2);
    transition: right 0.3s ease-in-out;
    z-index: 100;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    text-align: justify;
    justify-content: flex-start !important;
    gap: 0
  }

  .menu .menu-ic-label {
    display: flex;
    text-align: end;
    border: 1px solid rgb(40, 40, 40, 0.2);
    align-self: flex-end;
    width: fit-content;
    padding: 8px 20px;
    margin-right: 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    letter-spacing: -0.5px;
    font-weight: 400;
    cursor: pointer;
  }

  .menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    letter-spacing: 0.7px;
    padding: 8px 0;
    padding-left: 30px;
    border-bottom: 1px solid rgb(51, 51, 51, .1)
  }

  .menu div {
    margin-top: 30px;
    padding-left: 30px;
  }

  .menu div p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .menu div span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    padding-right: 30px;
    margin-bottom: 25px;
  }

  .menu div span b {
    font-weight: 500;
  }

  .menu div span a {
    color: #2aab32;
    padding: 0;
    border: none;
    font-weight: 600;
    letter-spacing: -0.5px;
    font-size: 15px;
    width: fit-content;
  }

  .menu a i {
    background-color: #2aab32;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
  }

  .menu-toggle:checked~.menu {
    right: 0
  }

  .menu-toggle:checked~.menu-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
  }

  .menu-toggle:checked~.menu-label span:nth-child(2) {
    opacity: 0
  }

  .menu-toggle:checked~.menu-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }

  .menu-bg {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out
  }

  .menu-toggle:checked~.menu-bg {
    visibility: visible;
    opacity: 1
  }
}

@media screen and (max-width:550px) {
  .header-ust .iletisim-header a:nth-child(2) {
    display: none;
  }
}