@import url(icons.css);
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap");
.f-poppins {
  font-family: 'Poppins', sans-serif;
}

.f-nunito {
  font-family: 'Nunito', sans-serif;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.link-btn a {
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.link-btn a span {
  font-size: 12px;
  margin-left: 5px;
}

body {
  background-color: #ffffff;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
}

.container {
  width: 1300px;
  max-width: 100%;
}

.mobile-menu {
  padding: 20px;
}

.menu-icon {
  width: 40px;
  height: 28px;
  position: relative;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #222222;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0px;
}

.menu-icon span:nth-child(2), .menu-icon span:nth-child(3) {
  top: 12px;
}

.menu-icon span:nth-child(4) {
  top: 24px;
}

.menu-icon.open span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-icon.open span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.header {
  position: relative;
  z-index: 9;
}

.header--wrapper {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin: var(--bs-gutter-x, 0.75rem) 0;
  background-color: #ffffff;
}

.header--logo {
  width: 180px;
  margin-right: -50px;
  overflow: hidden;
}

.header--logo .shadow-logo {
  min-width: 130px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
  .header--logo .shadow-logo {
    box-shadow: inherit;
  }
}

.header--logo img {
  margin: 10px 0;
  display: block;
}

@media (max-width: 991px) {
  .header--logo img {
    max-height: 100px;
  }
}

.header--menus {
  display: none;
}

@media (min-width: 992px) {
  .header--menus {
    display: block !important;
  }
}

@media (max-width: 991px) {
  .header--menus {
    border-top: 1px solid #e0e0e0;
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 991px) {
  .header--menus .main-menu {
    width: 100%;
  }
}

.header--menus .main-menu > ul {
  margin: 0 20px;
}

@media (min-width: 1200px) {
  .header--menus .main-menu > ul {
    margin: 0 50px;
  }
}

@media (max-width: 991px) {
  .header--menus .main-menu > ul {
    margin: 10px 0;
  }
}

.header--menus .main-menu > ul > li {
  position: relative;
}

.header--menus .main-menu > ul > li > a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #000000;
  padding: 5px;
  display: block;
  font-size: 13px;
  transition: all ease-in-out .3s;
}

@media (min-width: 1200px) {
  .header--menus .main-menu > ul > li > a {
    padding: 10px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .header--menus .main-menu > ul > li > a {
    padding: 5px 15px;
  }
}

.header--menus .main-menu > ul > li > a::after {
  font-family: "icons";
  content: '\e803';
  font-style: normal;
  font-weight: normal;
  font-size: 8px;
  margin-left: 5px;
}

@media (max-width: 991px) {
  .header--menus .main-menu > ul > li > a::after {
    margin-left: auto;
  }
}

.header--menus .main-menu > ul > li > a:hover, .header--menus .main-menu > ul > li > a.active {
  color: #BC9A6A;
}

.header--menus .main-menu > ul > li.active a {
  color: #BC9A6A;
}

.header--menus .main-menu > ul > li.no-child a::after {
  content: '';
}

@media (min-width: 992px) {
  .header--menus .main-menu > ul > li .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    visibility: hidden;
    width: 220px;
    transition: all ease-in-out .3s;
    opacity: 0;
    transform: translateY(20px);
    padding: 10px !important;
    z-index: 10;
    display: block !important;
    height: inherit !important;
  }
  .header--menus .main-menu > ul > li .sub-menu li a {
    display: block;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    padding: 3px 5px;
    transition: all ease-in-out .3s;
    font-size: 13px;
  }
  .header--menus .main-menu > ul > li .sub-menu li a:hover {
    padding-left: 10px;
    color: #BC9A6A;
  }
  .header--menus .main-menu > ul > li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  .header--menus .main-menu > ul > li .sub-menu {
    display: none;
    padding: 5px 5px 5px 30px;
  }
  .header--menus .main-menu > ul > li .sub-menu li a {
    display: block;
    padding: 2px;
    color: #222222;
    font-size: 13px;
  }
}

.header--menus .bottom-menu {
  background-color: #F9F9F9;
}

.header--menus .bottom-menu--title {
  background-color: #8DB5C5;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  height: 75px;
  padding: 0 10px;
  min-width: 200px;
}

@media (max-width: 991px) {
  .header--menus .bottom-menu--title {
    width: 100%;
    min-width: 100%;
    height: 40px;
  }
}

.header--menus .bottom-menu--nav ul {
  margin: 0 15px;
}

@media (min-width: 1200px) {
  .header--menus .bottom-menu--nav ul {
    margin: 0 30px;
  }
}

@media (max-width: 991px) {
  .header--menus .bottom-menu--nav ul {
    margin: 10px 0;
  }
}

@media (min-width: 992px) {
  .header--menus .bottom-menu--nav ul li {
    border-right: 1px solid #000000;
  }
  .header--menus .bottom-menu--nav ul li:last-child {
    border-right: 0;
  }
}

.header--menus .bottom-menu--nav ul li a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #000000;
  padding: 2px 15px;
  display: block;
  transition: all ease-in-out .3s;
}

@media (min-width: 1200px) {
  .header--menus .bottom-menu--nav ul li a {
    padding: 2px 30px;
  }
}

@media (max-width: 991px) {
  .header--menus .bottom-menu--nav ul li a {
    text-align: center;
    font-size: 13px;
    padding: 5px;
  }
}

.header--menus .bottom-menu--nav ul li a:hover {
  color: #8DB5C5;
}

.header .socials {
  margin-left: auto;
  margin-right: 15px;
}

@media (min-width: 1200px) {
  .header .socials {
    margin-right: 42px;
  }
}

@media (max-width: 991px) {
  .header .socials {
    margin-right: auto;
  }
}

.header .socials ul {
  margin: 0;
}

.header .socials ul li a {
  color: #000000;
  font-size: 20px;
  display: block;
  padding: 12px;
}

.search {
  padding-right: 20px;
  position: relative;
}

@media (min-width: 1200px) {
  .search {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .search {
    padding: 0;
    width: 100%;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
  }
}

.search--btn {
  background-color: #F9F9F9;
  color: #1D1D1D;
  font-size: 24px;
  width: 72px;
  height: 64px;
  margin: 20px 0;
  border-radius: 0;
}

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

@media (max-width: 991px) {
  .search--btn {
    display: none;
  }
}

@media (min-width: 992px) {
  .search--form {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    position: absolute;
    right: 50px;
    top: 100%;
    width: 220px;
    transform: translateY(0px);
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out .3s;
    z-index: 11;
  }
}

.search--form .form-control {
  border-radius: 0;
  border: 0;
  background-color: transparent;
}

.search.active .search--form {
  opacity: 1;
  visibility: visible;
  transform: translateY(-20px);
}

.slider .swiper-button-next, .slider .swiper-button-prev {
  color: #BC9A6A;
}

.section--title {
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 3% 7%;
  font-size: 40px;
}

@media (max-width: 767px) {
  .section--title {
    font-size: 30px;
  }
}

.home-boxes {
  margin: 30px 0;
}

.home-boxes--wrapper {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.home-boxes--item {
  color: #ffffff;
  transform: scale(1);
  transition: all ease-in-out .2s;
}

.home-boxes--item a {
  padding: 40px;
  color: #ffffff;
  display: block;
}

.home-boxes--item.color1 {
  background-color: #EEC78A;
}

.home-boxes--item.color2 {
  background-color: #E7A977;
}

.home-boxes--item.color3 {
  background-color: #D88673;
}

.home-boxes--item.color4 {
  background-color: #B96360;
}

@media (min-width: 768px) {
  .home-boxes--item:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 1;
  }
}

.home-boxes--item .icon {
  font-size: 72px;
  margin-bottom: 15px;
}

.home-boxes--item h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.home-boxes--item p {
  font-size: 16px;
  margin: 0;
}

.home-news {
  position: relative;
}

.home-news::before {
  content: '';
  width: calc(50% - 100px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-image: url(../img/sebastian-kurpiel.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 991px) {
  .home-news::before {
    width: 100%;
    height: 300px;
  }
}

.home-news > div {
  position: relative;
}

.home-news--image {
  min-height: 300px;
}

@media (min-width: 992px) {
  .home-news--image {
    padding-right: 100px;
    min-height: 600px;
  }
  .home-news--image .h2 {
    border-right: 0;
  }
}

.home-news--content {
  padding: 50px 0;
}

@media (min-width: 992px) {
  .home-news--content {
    margin-left: -100px;
    width: calc(50% + 100px);
    padding: 50px 0 50px 50px;
  }
}

.home-news--content .link-btn {
  margin-top: 25px;
}

.home-news--header {
  border-bottom: 2px solid #ececec;
  padding-bottom: 25px;
}

.home-news--header a {
  color: #222222;
  font-size: 16px;
  padding: 5px 0;
  margin: 0;
  text-align: center;
  transition: all ease-in-out .3s;
}

.home-news--header a.active, .home-news--header a:hover {
  color: #E7A977;
}

.home-news--item {
  padding: 20px 0;
  border-bottom: 2px solid #ececec;
  color: #222222;
}

.home-news--item:hover {
  color: #222222;
}

.home-news--item .image {
  margin: 0 0 15px 0;
}

.home-news--item .image img {
  display: block;
  width: 100%;
}

@media (min-width: 576px) {
  .home-news--item .image {
    margin: 0 25px 0 0;
  }
  .home-news--item .image img {
    width: 200px;
  }
}

.home-news--item .text .news-title {
  font-size: 22px;
  color: #222222;
  margin-bottom: 10px;
}

.home-news--item .text .news-info {
  font-size: 11px;
  color: #686868;
  margin-bottom: 10px;
}

.home-news--item .text .news-detail {
  margin: 0;
}

.institutions {
  background-image: url(../img/sancaktepe-belediye-binasi.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 60px 0;
}

@media (max-width: 991px) {
  .institutions {
    background-attachment: inherit;
  }
}

.institutions > div {
  position: relative;
}

.institutions::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.institutions .h2 {
  margin-bottom: 40px;
}

.institutions .items {
  margin-left: -10px;
  margin-right: -10px;
}

.institutions .items > div {
  padding: 10px;
}

.institutions .item {
  background: rgba(255, 255, 255, 0.72);
  padding: 20px 30px;
  color: #222222;
  display: block;
  font-size: 15px;
  margin-bottom: 0;
  min-height: 100%;
  transition: all ease-in-out .3s;
}

.institutions .item:hover {
  background-color: white;
}

.maps {
  position: relative;
}

.maps::before {
  content: '';
  height: 40%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.maps iframe {
  display: block;
  margin: 0;
}

.footer {
  background-color: #8DB5C5;
  color: #ffffff;
  font-size: 16px;
}

.footer a {
  color: #ffffff;
}

.footer--logo {
  background-color: #ffffff;
  width: 120px;
  height: 160px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin-top: -80px;
  margin-bottom: 25px;
  z-index: 9;
  position: relative;
}

.footer--top {
  padding: 50px 0;
}

.footer--top ul {
  margin: 15px 0;
}

.footer--top ul li a {
  display: block;
  padding: 4px 0;
  transition: all ease-in-out .3s;
}

.footer--top ul li a:hover {
  color: #255A72;
}

.footer--middle {
  background-color: #255A72;
  padding: 15px;
}

.footer--middle .nav {
  margin: 0;
}

.footer--middle .nav li {
  margin-right: 30px;
}

.footer--middle .nav li:last-child {
  margin-right: 0;
}

.footer--middle .nav li a {
  display: block;
  padding: 5px 0;
  transition: all ease-in-out .3s;
}

.footer--middle .nav li a:hover {
  color: #8DB5C5;
}

.footer--middle .socials {
  margin: 0;
}

.footer--middle .socials li a {
  display: block;
  padding: 10px;
  font-size: 20px;
  transition: all ease-in-out .3s;
}

.footer--middle .socials li a:hover {
  color: #8DB5C5;
}

.footer--middle img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media (min-width: 992px) {
  .footer--middle img {
    margin-top: -60px;
    position: relative;
  }
}

.footer--bottom {
  padding: 20px 0 50px 0;
}

.footer--title {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer .copyright-text {
  font-size: 12px;
}
