/*===== Button =====*/
.button {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 1366px) {
  .button {
    font-size: 16px;
    padding: 8px 16px;
  }
}

@media screen and (max-width: 560px) {
  .button {
    font-size: 14px;
    padding: 6px 12px;
  }
}

.button.primary {
  background-color: var(--primary);
  color: var(--white);
}

.button.primary.outline {
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
}

.button.primary.outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.white {
  background-color: var(--white);
  color: var(--black);
}

/*===== Color =====*/
body {
  --white: #ffffff;
  --black: #000000;
  --primary: #054e9b;
  --bg: #0093a9;
  --yellow: #fdf003;
  --red: #cc1f2d;
  --bozbeyblue: #054e9b;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  min-height: 100px;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
  display: flex;
  align-items: center;
  background-color: var(--white);
}

header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

header nav .navbar-brand img {
  width: auto;
  height: 6rem;
}

@media screen and (max-width: 1024px) {
  header nav .navbar-brand img {
    height: 4rem;
  }
}

header nav .navbar-toggle {
  border-style: none;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

@media screen and (min-width: 1024px) {
  header nav .navbar-toggle {
    display: none;
  }
}

header nav .navbar-toggle svg {
  width: 24px;
  height: 24px;
}

header nav .navbar-toggle:hover {
  cursor: pointer;
  text-decoration: none;
}

header nav .navbar-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content {
    display: none;
    flex-direction: column;
    transition: opacity 1s ease-out;
    height: 0;
    opacity: 0;
  }

  header nav .navbar-content.show {
    display: flex;
    height: min-content;
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content > li {
    width: 100%;
    text-align: left;
  }
}

header nav .navbar-content > li {
  padding: 1rem;
  white-space: nowrap;
}

/* @media screen and (max-width: 1240px) {
  header nav .navbar-content > li > a {
    padding: 1rem 0.5rem;
  }
} */

@media screen and (max-width: 1024px) {
  header nav .navbar-content > li > a {
    display: flex;
    justify-content: space-between;
  }
}

header nav .navbar-content > li a {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--black);
}

header nav .navbar-content > li a:hover {
  color: var(--red) !important;
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content > li a {
    font-size: 1rem;
  }
}

header nav .navbar-content > li a:hover {
  opacity: 0.9;
}

header nav .navbar-content > li a.button {
  display: inline-block;
  margin-left: 1rem;
  padding: 0.75rem 1.25rem;
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content > li a.button {
    margin-top: 1rem;
  }
}

header nav .navbar-content > li a.button:hover {
  color: white;
}

header nav .navbar-content > li .sub-menu {
  display: none;
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.16);
  background-color: var(--white);
  white-space: nowrap;
  padding: 26px 16px;
  width: initial;
  flex-direction: column;
  align-items: flex-start;
  z-index: 9999;
  margin: 6px 0 0 -30px;
  min-width: 260px;
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu {
    position: relative;
    left: initial;
    top: initial;
    box-shadow: none;
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 0 1rem;
  }

  header nav .navbar-content > li .sub-menu:hover {
    display: block;
  }
}

header nav .navbar-content > li .sub-menu li {
  position: relative;
  line-height: 22px;
  padding: 6px 0;
  width: 100%;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu li {
    padding: 6px 0 6px 1rem;
  }
}

header nav .navbar-content > li .sub-menu li a {
  font-weight: 500;
  text-decoration: none;
}

header nav .navbar-content > li .sub-menu li a:hover {
  color: var(--primary);
}

header nav .navbar-content > li .sub-menu li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu li > a {
    padding-right: 0;
    line-height: 28px;
  }
}

header nav .navbar-content > li .sub-menu li:first-child {
  padding-top: 0;
}

header nav .navbar-content > li .sub-menu li:last-child {
  padding-bottom: 0;
}

header nav .navbar-content > li .sub-menu li .sub-menu-children {
  display: none;
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.16);
  background-color: var(--white);
  white-space: nowrap;
  padding: 26px 16px;
  width: initial;
  flex-direction: column;
  align-items: flex-start;
  z-index: 9999;
  left: 100%;
  top: 0;
  margin: -15px 0 0 -4px;
  min-width: 240px;
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu li .sub-menu-children {
    position: relative;
    left: initial;
    top: initial;
    box-shadow: none;
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 1rem;
  }

  header nav .navbar-content > li .sub-menu li .sub-menu-children:hover {
    display: block;
  }
}

header nav .navbar-content > li .sub-menu li:hover .sub-menu-children {
  display: flex;
}

header nav .navbar-content > li.language {
  position: relative;
}

header nav .navbar-content > li.language .sub-menu {
  min-width: auto;
  margin: 6px 0 0 0;
  padding: 16px;
  left: 50%;
  transform: translateX(-50%);
}

header nav .navbar-content > li:hover ul {
  display: flex;
}

header nav .navbar-content > li.close-button svg {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content > li.close-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    top: 0;
    padding: 24px;
    z-index: 111;
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.16);
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  header nav .navbar-content {
    width: 100%;
  }
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
  header nav .navbar-content {
    width: calc(100% - 35px);
  }
}

@media screen and (max-width: 575.98px) {
  header nav .navbar-content {
    width: calc(100% - 30px);
  }
}

header.navbar-fixed {
  background-color: var(--white);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/*===================== TYPOGRAPHY =================================
    Font      :     font-family: 'DM Sans';
=====================================================================*/
*:not(i) {
  font-family: "Montserrat", sans-serif !important;
}

body {
  background-color: var(--white);
  min-height: 100vh;
}

body .container {
  position: relative;
  max-width: 1650px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: var(--black);
}

@media screen and (max-width: 1920px) {
  body .container {
    max-width: 70%;
  }
}

@media screen and (max-width: 1366px) {
  body .container {
    max-width: 90%;
  }
}

@media screen and (max-width: 1024px) {
  body .container {
    max-width: 95%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 560px) {
  body .container {
    padding: 0 20px;
    max-width: 100%;
  }
}

/* Banner */

body .fullbanner {
  position: relative;
  max-width: 2550px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: var(--black);
}

@media screen and (max-width: 1920px) {
  body .fullbanner {
    max-width: 100%;
  }
}

@media screen and (max-width: 1366px) {
  body .fullbanner {
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  body .fullbanner {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 560px) {
  body .fullbanner {
    padding: 0 20px;
    max-width: 100%;
  }
}

body .container h1 {
  font-size: 55px;
}

@media screen and (max-width: 1366px) {
  body .container h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 1024px) {
  body .container h1 {
    font-size: 36px;
  }
}

@media screen and (max-width: 560px) {
  body .container h1 {
    font-size: 30px;
  }
}

body .container h2 {
  font-size: 48px;
}

@media screen and (max-width: 1680px) {
  body .container h2 {
    font-size: 42px;
  }
}

@media screen and (max-width: 1366px) {
  body .container h2 {
    font-size: 36px;
  }
}

@media screen and (max-width: 560px) {
  body .container h2 {
    font-size: 32px;
  }
}

body .container h3 {
  font-size: 24px;
}

@media screen and (max-width: 1680px) {
  body .container h3 {
    font-size: 21px;
  }
}

@media screen and (max-width: 1366px) {
  body .container h3 {
    font-size: 21px;
  }
}

@media screen and (max-width: 560px) {
  body .container h3 {
    font-size: 18px;
  }
}

body .container h4 {
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 1680px) {
  body .container h4 {
    font-size: 21px;
  }
}

@media screen and (max-width: 1366px) {
  body .container h4 {
    font-size: 18px;
  }
}

@media screen and (max-width: 560px) {
  body .container h4 {
    font-size: 16px;
  }
}

body ::-webkit-scrollbar {
  display: none;
}

section {
  position: relative;
  scroll-margin-top: 150px;
}

@media screen and (max-width: 1366px) {
  section {
    scroll-margin-top: 100px;
  }
}

section.headline-type-2 {
  padding-top: 100px;
  z-index: 1;
}

section.headline-type-2 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 2;
  height: 600px;
}

@media screen and (max-width: 1680px) {
  section.headline-type-2 .container {
    height: 550px;
  }
}

@media screen and (max-width: 1366px) {
  section.headline-type-2 .container {
    height: 500px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-2 .container {
    height: auto;
    padding: 50px 1rem;
  }
}

section.headline-type-2 .container .text-area {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 40%;
  flex: 0 0 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  padding-right: 2rem;
}

@media screen and (max-width: 1024px) {
  section.headline-type-2 .container .text-area {
    max-width: 40%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    padding-right: 0;
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  section.headline-type-2 .container .text-area {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    padding-right: 0;
    text-align: center;
  }
}

section.headline-type-2 .container .text-area h1 {
  font-size: 72px;
  line-height: 1.3;
}

@media screen and (max-width: 1680px) {
  section.headline-type-2 .container .text-area h1 {
    font-size: 64px;
  }
}

@media screen and (max-width: 1440px) {
  section.headline-type-2 .container .text-area h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-2 .container .text-area h1 {
    font-size: 36px;
  }
}

section.headline-type-2 .container .text-area p {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1440px) {
  section.headline-type-2 .container .text-area p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-2 .container .text-area p {
    font-size: 14px;
  }
}

section.headline-type-2 .container .text-area p span {
  font-weight: 500;
  margin-right: 4px;
}

section.headline-type-2 .container .text-area .detail-area {
  display: flex;
  flex-direction: column;
}

section.headline-type-2 .container .text-area .detail-area .button {
  width: min-content;
  white-space: nowrap;
  background-color: var(--primary);
  color: var(--black);
  padding: 8px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 5px;
}

section.headline-type-2 .img-area {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 55vw;
  overflow: hidden;
  border-radius: 50px 0 0 50px;
}

/* @media screen and (max-width: 1024px) {
  section.headline-type-2 .img-area {
    display: none;
  }
} */

section.headline-type-2 .img-area img {
  height: 550px;
  width: auto;
}

@media screen and (max-width: 1680px) {
  section.headline-type-2 .img-area img {
    height: 520px;
  }
}

@media screen and (max-width: 1366px) {
  section.headline-type-2 .img-area img {
    height: 480px;
  }
}

section.headline-type-3 {
  padding-top: 5px;
  z-index: 1;
  margin-bottom: 30px;
}

/* @media screen and (max-width: 560px) {
  section.headline-type-3 {
    padding-top: 100px;
  }
} */

section.headline-type-3 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
  height: auto;
  padding: 10px 1rem;
}

section.headline-type-3 .container .text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  width: 100%;
}

section.headline-type-3 .container .text-area h1 {
  font-size: 72px;
  line-height: 1;
}

@media screen and (max-width: 1680px) {
  section.headline-type-3 .container .text-area h1 {
    font-size: 64px;
  }
}

@media screen and (max-width: 1440px) {
  section.headline-type-3 .container .text-area h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-3 .container .text-area h1 {
    font-size: 36px;
  }
}

section.headline-type-3 .container .text-area p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.75;
}

@media screen and (max-width: 1440px) {
  section.headline-type-3 .container .text-area p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-3 .container .text-area p {
    font-size: 16px;
  }
}

@media screen and (max-width: 560px) {
  section.headline-type-3 .container .text-area p {
    font-size: 14px;
  }
}

section.headline-type-3 .container .text-area2 {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  width: 100%;
}

section.headline-type-3 .container .text-area2 h1 {
  font-size: 72px;
  line-height: 1;
}

@media screen and (max-width: 1680px) {
  section.headline-type-3 .container .text-area2 h1 {
    font-size: 64px;
  }
}

@media screen and (max-width: 1440px) {
  section.headline-type-3 .container .text-area2 h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-3 .container .text-area2 h1 {
    font-size: 36px;
  }
}

section.headline-type-3 .container .text-area2 p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.75;
}

@media screen and (max-width: 1440px) {
  section.headline-type-3 .container .text-area2 p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-3 .container .text-area2 p {
    font-size: 16px;
  }
}

@media screen and (max-width: 560px) {
  section.headline-type-3 .container .text-area2 p {
    font-size: 14px;
  }
}

section.headline-type-4 {
  padding: 200px 0 100px;
  z-index: 1;
  margin-bottom: 60px;
}

section.headline-type-4::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.5;
}

@media screen and (max-width: 560px) {
  section.headline-type-4 {
    padding: 100px 0;
  }
}

section.headline-type-4 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
  height: auto;
  padding: 60px 1rem;
}

section.headline-type-4 .container .text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  color: var(--white);
}

section.headline-type-4 .container .text-area h1 {
  font-size: 72px;
  line-height: 1;
}

@media screen and (max-width: 1680px) {
  section.headline-type-4 .container .text-area h1 {
    font-size: 64px;
  }
}

@media screen and (max-width: 1440px) {
  section.headline-type-4 .container .text-area h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-4 .container .text-area h1 {
    font-size: 36px;
  }
}

section.headline-type-4 .container .text-area p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.75;
}

@media screen and (max-width: 1440px) {
  section.headline-type-4 .container .text-area p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-4 .container .text-area p {
    font-size: 16px;
  }
}

@media screen and (max-width: 560px) {
  section.headline-type-4 .container .text-area p {
    font-size: 14px;
  }
}

section.headline-type-5 {
  padding-top: 160px;
  z-index: 1;
}

@media screen and (max-width: 560px) {
  section.headline-type-5 {
    padding-top: 100px;
  }
}

section.headline-type-5 .container {
  display: flex;
  z-index: 2;
  height: auto;
  padding: 60px 1rem;
}

section.headline-type-5 .container .text-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

section.headline-type-5 .container .text-area h1 {
  font-size: 72px;
  line-height: 1;
}

@media screen and (max-width: 1680px) {
  section.headline-type-5 .container .text-area h1 {
    font-size: 64px;
  }
}

@media screen and (max-width: 1440px) {
  section.headline-type-5 .container .text-area h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-5 .container .text-area h1 {
    font-size: 36px;
  }
}

section.headline-type-5 .container .text-area p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.75;
}

@media screen and (max-width: 1440px) {
  section.headline-type-5 .container .text-area p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  section.headline-type-5 .container .text-area p {
    font-size: 16px;
  }
}

@media screen and (max-width: 560px) {
  section.headline-type-5 .container .text-area p {
    font-size: 14px;
  }
}

#contact .container {
  display: flex;
  flex-direction: column;
}

#contact .container .title-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

#contact .container .title-area p {
  font-size: 16px;
  color: var(--grey);
  opacity: 0.75;
}

#contact .container form {
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
}

#contact .container form .field label {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 6px;
}

@media screen and (max-width: 1366px) {
  #contact .container form .field label {
    font-size: 18px;
  }
}

@media screen and (max-width: 560px) {
  #contact .container form .field label {
    font-size: 16px;
  }
}

#contact .container form .field input,
#contact .container form .field .ui.dropdown {
  display: flex;
  align-items: center;
  font-size: 16px;
  height: 48px;
  border-radius: 10px;
}

@media screen and (max-width: 1366px) {
  #contact .container form .field input,
  #contact .container form .field .ui.dropdown {
    height: 42px;
  }
}

@media screen and (max-width: 560px) {
  #contact .container form .field input,
  #contact .container form .field .ui.dropdown {
    height: 38px;
  }
}

#contact .container form .field input:focus,
#contact .container form .field .ui.dropdown:focus {
  border-radius: 10px;
}

#contact .container form .field input .icon,
#contact .container form .field .ui.dropdown .icon {
  display: flex;
  align-items: center;
  height: 48px;
}

@media screen and (max-width: 1366px) {
  #contact .container form .field input .icon,
  #contact .container form .field .ui.dropdown .icon {
    height: 42px;
  }
}

@media screen and (max-width: 560px) {
  #contact .container form .field input .icon,
  #contact .container form .field .ui.dropdown .icon {
    height: 38px;
  }
}

#contact .container form .field textarea {
  border-radius: 20px;
}

#contact .container form .field textarea:focus {
  border-radius: 20px;
}

#contact .container form .field .ui.checkbox label {
  display: flex;
  align-items: center;
  height: 24px;
  padding-left: 36px;
  font-size: 18px;
}

@media screen and (max-width: 560px) {
  #contact .container form .field .ui.checkbox label {
    font-size: 14px;
  }
}

#contact .container form .field .ui.checkbox.contact label {
  display: flex;
  align-items: center;
  height: 24px;
  padding-left: 36px;
  padding-right: 36px;
  font-size: 18px;
}

@media screen and (max-width: 560px) {
  #contact .container form .field .ui.checkbox.contact label {
    font-size: 14px;
  }
}

#contact .container form .field .ui.checkbox label::before,
#contact .container form .field .ui.checkbox label::after {
  width: 24px;
  height: 24px;
  box-shadow: none;
}

#contact .container form .field .ui.checkbox label::before {
  border-radius: 5px;
}

#contact .container form .field .ui.checkbox input {
  height: 24px;
  width: 24px;
}

#contact .container form .field .ui.checkbox a {
  font-weight: 700;
  white-space: nowrap;
}

#contact .container form .field .ui.checkbox.checked label::before {
  border-color: var(--red);
  background-color: var(--red);
}

#contact .container form .field .ui.checkbox.checked label::after {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 16px;
}

#contact .container form button {
  border: none;
  box-shadow: none;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 60px;
  text-transform: uppercase;
}

@media screen and (max-width: 1600px) {
  #contact .container form button {
    font-size: 18px;
  }
}

@media screen and (max-width: 1366px) {
  #contact .container form button {
    font-size: 16px;
  }
}

@media screen and (max-width: 560px) {
  #contact .container form button {
    font-size: 14px;
  }
}

#contact .container form button:hover {
  cursor: pointer;
}

footer {
  position: relative;
}
[class="content"],
[class="content-test"] {
  min-height: 35vh;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0;
  color: var(--black);
  z-index: 2;
  font-size: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1680px) {
  footer .container {
    padding: 48px 0;
  }
}

@media screen and (max-width: 1366px) {
  footer .container {
    padding: 42px 0;
  }
}

@media screen and (max-width: 560px) {
  footer .container {
    flex-direction: column;
    padding: 1.5rem 0;
  }
}

footer .container p {
  max-width: 90%;
}

footer .container.flex-column {
  display: flex;
  flex-direction: column;
}

footer .container .main-logo img {
  max-height: 100px;
}

footer .container .other-logo {
  margin-bottom: 2.5rem;
}

footer .container .other-logo img {
  max-height: 60px;
}

footer .container.credit .copyright {
  font-weight: 500;
}

@media screen and (max-width: 560px) {
  footer .container.credit .copyright {
    margin-bottom: 1rem;
  }
}

footer .container.credit .mail-area {
  display: flex;
  flex-direction: row;
  align-items: center;
}

footer .container.credit img {
  max-height: 50px;
  min-height: 50px;
}

@media screen and (max-width: 560px) {
  footer .container.credit img {
    max-height: 16px;
  }
}

footer .container.ab-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem auto 0;
}

footer .container.ab-logo img {
  max-width: 300px;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 560px) {
  footer .container.ab-logo img {
    max-width: 200px;
  }
}

footer .container.ab-logo p {
  max-width: 450px;
}

.bozbey-text {
  color: #054e9b !important;
}
.main-text {
  font-size: 20px !important;
  font-weight: 600 !important;
}
.main-header {
  font-size: 36px !important;
}

@media screen and (max-width: 560px) {
  .main-text {
    font-size: 16px !important;
  }
  /*  .main-header {
    font-size: 24px !important;
  } */
  .social-area {
    margin-bottom: 14px;
  }
}
.social-area {
  display: flex;
  gap: 20px;
}

.social-area a:hover {
  transform: scale(1.1);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
footer {
  margin-top: 142px;
}
.credit {
  position: absolute;
  bottom: 0;
}

.gonullu-btn {
  color: #fff !important;
}

.gonullu-btn:hover {
  color: #fff !important;
}
.tab-detail.tab-3.active {
  min-height: 35vh;
}
.text-center {
  text-align: center !important;
  margin-bottom: 20px !important;
}
.gallery-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .gallery-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery-2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 150px;
}
.gallery-2 a img {
  object-fit: cover;
  max-height: 150px;
  height: 150px;
  min-height: 150px;
  border-radius: 10px;
}
.social-area {
  filter: invert(19%) sepia(97%) saturate(1906%) hue-rotate(198deg)
    brightness(91%) contrast(96%);
}
h2 {
  color: #054e9b;
}
.mini-btn {
  background-color: #cc1f2d;
  color: #fff !important;
  border-radius: 5px;
  padding: 1rem;
  font-weight: 600;
  margin-left: 20px;
  padding: 0.5rem 1rem;
}

.contact-item {
  width: 80% !important;
}
@media screen and (min-width: 500px) {
  .mini-btn {
    display: none;
  }
  .contact-item {
    width: 30% !important;
  }
}

.contact-flex {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}

@media screen and (max-width: 500px) {
  section.content .container .gallery a:nth-child(9n + 1) img {
    height: 300px !important;
    max-height: 300px !important;
  }
  .flex-col-2 {
    display: block !important;
  }
  .img-area {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 500px) {
  section.headline-type-2 .img-area {
    position: relative !important;
    max-width: 100% !important;
    border-radius: 20px !important;
  }
  section.headline-type-2 .img-area img {
    width: 90% !important;
    border-radius: 20px !important;
    height: auto !important;
  }
  section.content {
    padding: 0 !important;
  }
}

.yaparsa-bozbey-yapar {
  font-weight: bold !important;
  text-decoration: underline !important;
  color: #cc1f2d;
  font-size: 1.5rem !important;
}

@media screen and (max-width: 1024px) {
  .yaparsa-bozbey-yapar {
    font-size: 1.3rem !important;
  }

  .bozbey-text {
    justify-content: start !important;
    gap: 8px !important;
    align-items: center !important;
  }
}

@media screen and (max-width: 768px) {
  .yaparsa-bozbey-yapar {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 480px) {
  .yaparsa-bozbey-yapar {
    font-size: 0.875rem !important;
  }
}
