@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #2b2b2a !important;
    --secondary: #e31f25 !important;
    --grey: #E6E6E6 !important;
    --light: #F7F7F7 !important;
    --whatsapp: #6BCE72 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif !important;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #000000 !important;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.pointer {
    cursor: pointer;
}

a,
a:hover {
    text-decoration: none !important;
    transition: 400ms !important;
}

.mobile-header {
    display: none;
}

.btn-theme {
    background: var(--secondary);
    color: #fff;
    border-radius: 10px;
    height: 45px;
    width: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
}

.primary-bg {
    background: var(--primary);
}

.secondary-bg {
    background: var(--secondary);
}

/**** header-begin ****/
.header-top {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.left-side {
    width: 248px;
    height: 42px;
    background: var(--secondary);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    /* border-radius: 0px 0px 0px 15px; */
    color: #fff;
}

.right-side {
    width: 1392px;
    height: 42px;
    background: var(--primary);
    display: flex;
    align-items: center;
    padding-right: 35px;
    justify-content: flex-end
}

.header-top a,
.header-top span,
.header-top i {
    color: #fff;
}

.right-side .header-contact {
    margin-left: 25px;
}

.right-side a.header-contact i {
    transition: 400ms;
}

.right-side a.header-contact:hover,
.right-side a.header-contact:hover i {
    color: var(--secondary);
}

.socials {
    display: flex;
    flex-direction: row;
    margin-right: 20px;
}

a.social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    /* border: 1px solid #fff; */
    border-radius: 5px;
    margin: 0px 4px;
    font-size: 14px;
}


a.social:hover {
    border-color: var(--primary);
    background: var(--primary);
}


.header-languages img {
    border-radius: 100%;
    object-fit: cover;
    width: 24px;
    height: 24px;
}

.other-languages {
    position: absolute;
    display: flex;
    background: var(--grey);
    padding: 5px 0px;
    border-radius: 25px;
    transform: translate(0px, -30px);
    opacity: 0;
    transition: 400ms;
}

.header-languages:hover .other-languages {
    transform: translate(30px, -30px);
    opacity: 1;
    transition: 400ms;
}


.other-languages a {
    padding: 0px 5px;
}


.header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    /* margin-top: 20px; */
    background: #ffffff;
    border-radius: 0 0 15px 15px;
    padding: 25px;
}

.header-menu .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.header-menu .header-logo img {
    object-fit: contain;
    height: 100%;
    width: 275px;
}

.header-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin-right: 25px;
    margin-bottom: 0 !important;
}

.header-links ul li {
    margin-left: 45px;
    position: relative;
    white-space: nowrap;
}


.header-links ul li a {
    font-size: 17px;
    color: var(--primary);
    font-weight: 500;
    transition: 400ms
}


.header-links ul li a:hover {
    color: var(--secondary);
    transition: 400ms
}

.header-links ul li .menu-dropdown {
    display: flex;
    flex-direction: column;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: 400ms;
    padding-top: 35px;
    z-index: 99;
    left: 50%;
    transform: translate(-50%, 0);
}

.header-links ul li .menu-dropdown:after {
    content: url(images/icons/triangle.svg);
    display: flex;
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 9;
    top: 15px;
    left: 50%;
    transform: translate(-50%, 0);
    align-items: center;
    justify-content: center;
    transition: 400ms;
}


.header-links ul li:hover .menu-dropdown:after {
    top: 5px;
    transition: 400ms;
}


.header-links ul li ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 400ms;
    padding: 10px 0;
    background: var(--secondary);
    border-radius: 10px;
}

.header-links ul li ul li {
    margin: 0;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-links ul li .menu-dropdown ul {
    margin: 0;
}

.header-links ul li .menu-dropdown a {
    height: 40px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 0 20px;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.header-links ul li .menu-dropdown a:hover {
    background: #C96609;
}

.header-links ul li:hover .menu-dropdown {
    opacity: 1;
    pointer-events: unset;
}


/**** header-end ****/

.copyright span {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #CBCBCB;
    height: 60px;
    display: flex;
    align-items: center;
}

.copyright {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 60px;
    padding: 0 20px;
}

/**** footer-end ****/


.main-banner {
    position: relative;
    width: 100%;
    height: 100dvh;
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    background-color: #000;
}

.banner-video {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner-video:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9;
    left: 0;
    top: 0;
    opacity: .4;
}

header {
    z-index: 9999999;
    position: absolute;
    width: 100%;
}

.main-slider {
    z-index: 0;
    height: 100dvh;
}

.banner-form-content {
    width: 100%;
    height: 100%;
    z-index: 99999;
    position: relative;
    padding-top: 120px;
    display: flex;
    align-items: center;
}

.site-form {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    background: #04040440;
    backdrop-filter: blur(10px);
}


.site-form .form-header * {
    color: #fff !important;
}

.site-form label {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 3px;
}

.site-form input.form-control,
.site-form textarea {
    background: #04040440;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    height: 50px;
    color: #fff !important;
}

.site-form input.form-control:focus,
.site-form textarea:focus {
    background: #040404;
    color: #fff !important;
}

.footer {
    background: #272727;
}

.copyright {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright a {
    color: #e31f25;
    margin: 0 4px;
}

.copyright span {
    font-size: 13px;
}

.banner-text-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    max-width: 600px;
}


.header-right a.appointment-button {
    height: 50px;
    width: 180px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px;
    transition: 400ms;
}

.header-right a.appointment-button {
    background: var(--secondary);
    border: 2px solid var(--secondary);
    margin-left: 15px;
}

.header-right a.appointment-button:hover {
    background: transparent;
}

.header-right a.appointment-button:hover * {
    color: var(--secondary) !important;
    fill: var(--secondary);
    transition: 400ms;
}

.header-right a.appointment-button .subtitle {
    font-size: 9px;
    color: #DDE6ED;
    line-height: 11px;
    font-weight: var(--regular);
}

.header-right a.appointment-button .title {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 17px;
    font-weight: var(--bold);
}

.header-right .appointment-button .button-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.header-right .appointment-button .button-icon img {
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.header-right .appointment-button .button-icon {
    margin-right: 8px;
}

.site-form button {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50px;
    width: 100%;
    font-weight: 500;
    background: var(--secondary);
    border: 2px solid var(--secondary);
    color: #ffffff;
    transition: 400ms;
}


.site-form button:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transition: 400ms;
}

.marketing img {
    height: 30px;
}

.marketing .marketing-item {
    margin: 18px 0;
    display: flex;
    align-items: center;
}

.marketing span {
    margin-left: 10px;
    font-size: 16px;
    color: #fff;
}

.form-group.form-kvkk a {
    color: var(--secondary);
}

.form-kvkk label {
    display: flex;
    align-items: flex-start;
}

.form-group.form-kvkk .kvkk-box {
    margin-right: 5px;
    margin-top: 3px;
}

.kvkk-box {
    width: 14px;
    height: 14px;
    background: #e31f2500;
    position: relative;
    border-radius: 3px;
    border: 1px solid #e31f25;
    transition: 400ms;
}

.kvkk-box input {
    opacity: 0;
    transform: translate(0px, -2px);
    cursor: pointer;
}

.kvkk-box:has(:checked) {
    background: #e31f25;
    transition: 400ms;
}


.did-floating-label-content {
    position: relative;
    margin-bottom: 20px;
}

.did-floating-label {
    color: #1e4c82;
    font-size: 13px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 13px;
    top: 16px;
    padding: 0 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.did-floating-input,
.did-floating-select {
    font-size: 12px;
    display: block;
    width: 100%;
    height: 36px;
    padding: 0 20px;
    background: #fff;
    color: #323840;
    border: 1px solid #3D85D8;
    border-radius: 4px;
    box-sizing: border-box;
}

.did-floating-input:focus,
.did-floating-select:focus {
    outline: none;
}

.did-floating-input:focus~.did-floating-label,
.did-floating-select:focus~.did-floating-label {
    top: -8px;
    left: 8px;
    font-size: 13px;
}

select.did-floating-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.did-floating-select::-ms-expand {
    display: none;
}

.did-floating-input:not(:placeholder-shown)~.did-floating-label {
    top: -8px;
    left: 8px;
    color: #ababab;
    font-size: 13px;
}

.did-floating-select:not([value=""]):valid~.did-floating-label {
    top: -8px;
    left: 8px;
    font-size: 13px;
}

.did-floating-select[value=""]:focus~.did-floating-label {
    top: 11px;
    left: 8px;
    font-size: 13px;
}

.did-floating-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%23003d71'/%3E%3C/svg%3E%0A");
    background-position: right 15px top 50%;
    background-repeat: no-repeat;
}

.did-error-input .did-floating-input,
.did-error-input .did-floating-select {
    border: 2px solid #9d3b3b;
    color: #9d3b3b;
}

.did-error-input .did-floating-label {
    font-weight: 600;
    color: #9d3b3b;
}

.did-error-input .did-floating-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%239d3b3b'/%3E%3C/svg%3E%0A");
}

.input-group {
    display: flex;
}

.input-group .did-floating-input {
    border-radius: 0 4px 4px 0;
    border-left: 0;
    padding-left: 0;
}

.input-group-append {
    display: flex;
    align-items: center;
    /*   margin-left:-1px; */
}

.input-group-text {
    display: flex;
    align-items: center;
    font-weight: 400;
    height: 34px;
    color: #323840;
    padding: 0 5px 0 20px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #3D85D8;
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.site-form .form-header h2 {
    font-size: 27px;
    font-weight: 900;
}

.site-form .form-header p {
    font-size: 14px;
    margin-bottom: 25px;
}

.banner-text-left h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.banner-text-left p {
    font-size: 1.2rem;
    color: #eee;
    line-height: 1.5;
}

.mute-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #e31f25;
    opacity: .4;
    /* kırmızı */
    border: none;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    z-index: 9999999;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.mute-button:hover {
    background-color: #e31f25;
    opacity: 1;
    transition: 0.4s;
}

.mute-button i {
    pointer-events: none;
}

.notify,
.notifications-container,
.notifications-container * {
    z-index: 9999999999 !important;
}

.main-about {
    margin: 75px 0;
}

.main-about .about-image img {
    border-radius: 25px;
    width: 100%;
    height: 675px;
    object-fit: cover;
}

.main-about .about-content * {
    color: #eee;
}

.about-content img {
    height: 70px;
    margin-bottom: 35px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.main-about .about-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.main-about .about-content p {
    font-size: 15px;
}

.grecaptcha-badge {
    z-index: 9999 !important;
}