@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Montserrat:regular,600,700,800&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

img {
  max-width: 100%;
  display: flex;
  border: 0;
  border-radius: 15px;
  align-items: center;
}

h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
}

h3, .menu__title {
  font-size: 28px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

p {
  text-align: left;
  margin: 12px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
table tr th {
  background-color: #834adb;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #fafafa;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  height: 80px;
  background-color: #224FE5;
}
.header .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .logo {
  flex: 0 0 100px;
}
.header h1 {
  animation: blink 3s infinite;
  width: 100%;
  text-align: center;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.main {
  min-height: 100vh;
  flex: 1 1 auto;
  padding: 80px 0 0 0;
}

.body {
  padding: 50px 0;
}

.footer {
  color: #fff;
  background-color: #224FE5;
  padding: 50px 16px;
  text-align: center;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0;
}
.cards .card {
  display: flex;
  box-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.075);
  height: 150px;
  border: 1px solid #f5f5f5;
  border-radius: 15px;
}
.cards .card .grid {
  display: grid;
  grid-template-columns: 1.2fr 0.1fr 1fr 0.1fr 1fr 0.1fr 1fr;
  gap: 20px;
  align-items: center;
  text-align: center;
  width: 100%;
}
.cards .card .grid .title {
  font-size: 16px;
}
.cards .card .grid .title span ul {
  list-style-image: url("../img-listing/tick.svg");
  text-align: left;
}
.cards .card .grid .title span ul li {
  line-height: 150%;
  padding-left: 5px;
}
.cards .card .grid .name {
  font-size: 18px;
  font-weight: 600;
}
.cards .card .divider {
  height: 80px;
  width: 2px;
  background-color: #c3c3c3;
  right: 0;
  top: 0;
  margin: 0 auto;
}
.cards .card .stars {
  display: flex;
  align-items: left;
  gap: 1px;
}
.stars img {
  display: block;
  max-width: 100%;
}

.cards .card .icon {
  padding: 0 15px;
  background-color: #f5f5f5;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 15px;
}
.cards .card .icon img {
  max-width: 30px;
}
.cards .card .main_icon {
  height: 100%;
}
.cards .card .main_icon a {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
}
.cards .card .main_icon a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cards .card .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  max-width: 170px;
  margin: 0 auto;
  background-color: #EBB70A;
  border-radius: 69px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.cards .card .btn:hover {
  background-color: #a07f10;
}

@media (max-width: 1199px) {
  .cards .card .grid {
    grid-template-columns: 1.2fr 0.1fr 1fr 0.1fr 1fr 0.1fr 1fr;
  }
  .cards .card .btn {
    max-width: 120px;
  }
  .cards .card .title {
    font-size: 16px;
  }
  .cards .card .title ul {
    padding-left: 15px;
  }
}
@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3, .menu__title {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header {
    font-size: 20px;
  }
  .header h1 {
    font-size: 22px;
  }
  .body {
    padding: 40px 0;
  }
  .footer {
    padding: 30px 16px;
  }
  .cards {
    padding: 0;
  }
  .cards .card {
    flex-direction: column;
    height: auto;
    position: relative;
    padding-bottom: 20px;
  }
  .cards .card::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    background: url("/images/turkey-logo.svg") center/cover no-repeat;
    width: 30px;
    height: 30px;
    z-index: 1;
  }
  .cards .card .grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .cards .card .divider {
    display: none;
  }
  .cards .card .button {
    width: 95%;
    margin: 0 auto;
  }
  .cards .card .btn {
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .cards .card .title {
    font-size: 20px;
  }
  .cards .card .name,
  .cards .card .title,
  .cards .card .button {
    padding: 0 16px;
  }
  .cards .card .icon {
    display: none;
  }
  .cards .card .main_icon {
    width: 100%;
    height: 200px;
  }
}
@keyframes blink {
  0%, 100% {
    text-shadow: 0 0 10px rgb(255, 255, 255);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0);
  }
}

.anchor__menu {
  margin:0 15px;
}
.anchor__menu a:hover {
text-decoration: underline;
}