html *, body * {
    font-family: system-ui !important;
}

.container {
    width: 100%;
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container_top {
    width: 100%;
    margin-bottom: 20px;
    max-width: 1024px;
    border-bottom: 1px solid transparent;
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .4s;
}

.container_top.sticky {
    width: 100%;
    max-width: 100%;
    padding: 10px 20px;
    background-color: #fff;
    border-color: #d6d6d6;
    position: sticky;
    top: 0;
    left: 0;
}

.container_top_left_home {
    width: 25px;
    height: 25px;
    background: url('../img/home-icon.svg') no-repeat center / contain;
    position: relative;
    display: block;
}

.container_top_left_goback {
    width: 25px;
    height: 25px;
    margin-left: 13px;
    background: url('../img/back.svg') no-repeat center / contain;
    position: relative;
    display: block;
}

.container_top_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.container_top_right_address {
    width: 25px;
    height: 27px;
    margin-right: 13px;
    display: block;
}

.container_top_right_address svg {
    width: 100%;
    height: 100%;
}

.container_top_right_address svg *{
    fill: #2d9943;
}

.container_top_right_social {
    margin-right: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.container_top_right_social li:not(:last-child) {
    margin-right: 5px;
}

.container_top_right_social li a {
    width: 30px;
    height: 30px;
    display: block;
}

.container_top_right_social li a svg {
    width: 100%;
    height: 100%;
}

.container_top_right_social li a svg *{
    fill: #ff4712;
}

.container_top_right_lang {
    width: 30px;
    height: 30px;
    background: url('../img/lang-icon.svg') no-repeat center / contain;
    position: relative;
    cursor: pointer;
}

.container_top_right_lang_list {
    border-radius: 10px;
    position: absolute;
    top: 35px;
    right: 0;
    display: none;
}

.container_top_right_lang_list.active {
    display: block;
}

.container_top_right_lang_list li:first-child {
    border-radius: 10px 10px 0 0;
}

.container_top_right_lang_list li:last-child {
    border-top: 1px solid #fff;
    border-radius: 0 0 10px 10px;
}

.container_top_right_lang_list li.TR a {
    background-image: url('../img/turkish-flag.svg');
}

.container_top_right_lang_list li.EN a {
    background-image: url('../img/english-flag.svg');
}

.container_top_right_lang_list li a {
    border-radius: inherit;
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 20px 20px;
    background-color: #2d9943;
    padding: 5px 35px 5px 40px;
    display: block;
    font-weight: 500;
    transition: .4s;
    font-size: 15px;
    line-height: 23px;
    text-align: left;
    color: #fff;
}

.container_top_right_lang_list li:hover {
    background-color: #2d9943;
}

.container_inner {
    width: 100%;
    max-width: 1024px;
    height: 100%;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

.container_top_left_logo {
    width: 180px;
    display: block;
}

.container_top_left_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.container_inner_video {
    width: 100%;
    max-width: 1024px;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.container_inner_video video {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.container_inner_title {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 33px;
    letter-spacing: 2px;
    color: #ff4712;
    text-align: center;
    font-weight: 900;
}

.container_inner_list {
    display: grid;
    grid-gap: 60px 20px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.container_inner_list li a {
    display: block;
}

.container_inner_list_title {
    margin-bottom: 7px;
    color: #ff4712;
    font-size: 23px;
    line-height: 31px;
    font-weight: 900;
}

.container_inner_list_img {
    width: 100%;
    border-radius: 10px;
}

.container_inner_list_img img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    display: block;
}

.container_inner_list_bottom {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container_inner_list_bottom_title {
    font-size: 20px;
    line-height: 28px;
    color: #000;
    font-weight: 700;
}

.container_inner_list_price {
    margin-top: 10px;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 24px;
    background-color: #000;
    color: #fff;
    font-weight: 900;
    text-align: center;
}

.container_inner_list_desc {
    margin-top: 10px;
    font-size: 15px;
    line-height: 23px;
    font-family: 'system-ui';
    color: #000;
    font-weight: 200;
}

.container_inner_list_note {
    font-size: 13px;
    line-height: 21px;
    color: #8d8d8d;
    font-style: italic;
}

.container_inner_list_info {
    margin-top: 20px;
}

.container_inner_list_info li {
    display: flex;
    justify-content: flex-start;
}

.container_inner_list_info_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.container_inner_list_info_icon img {
    width: 100%;
    display: block;
}

.container_inner_list_info_title {
    margin-left: 5px;
    font-size: 15px;
    line-height: 23px;
}

.container_inner_list_info li:not(:last-child) {
    margin-bottom: 5px;
}

.container_inner_footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
}

.container_inner_footer_text, .container_inner_footer_copyright {
    font-size: 15px;
    line-height: 23px;
    text-align: center;
}

.container_inner_footer_copyright a {
    font-weight: 500;
}

.container_inner_footer_logo {
    width: 100px;
    margin: 40px auto 10px;
    display: block;
}




















































html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, select, textarea, button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: "system-ui";
    font-weight: 200;
    font-style: normal;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: border-box !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

q,
blockquote {
    quotes: none;

    &::before, &::after {
        content: '';
        content: none;
    }
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ul,
ol,
nav {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    border: 0;
}

img,
video {
    max-width: 100%;
    height: auto;
}

:focus,
a:focus,
a:active,
a:hover {
    outline: 0;
}

::selection {
    color: #fff;
    background: #000;
}