@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://rskasset.puffanee.net.tr/fonts/centurygothic.css");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

:root {
     --inter: "Inter", sans-serif;
     --century-gothic: "Century Gothic", sans-serif;
     --pacifico: "Pacifico", cursive;

     --main-white: rgb(243, 243, 243);
     --main-black: rgb(9, 9, 9);
     --main-gray: rgb(51, 51, 51);
     --main-orange: #ef6800;
     --light-orange-1: #ff9933;
     --light-orange-2: rgb(255, 178, 102);
     --light-orange-3: rgb(255, 204, 153);
     --light-orange-4: rgb(255, 223, 188);

     --main-font: var(--inter);
     --main-color: var(--main-white);
     --main-bgcolor: #141314;
}

body,
html {
     background: var(--main-bgcolor);
     color: var(--main-color);
     font-family: var(--main-font);
     overflow-y: auto;
     overflow-x: hidden;
     scrollbar-width: 8px;
}

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

::-webkit-scrollbar {
     width: 8px;
     background: transparent;
}

::-webkit-scrollbar-thumb {
     background: var(--main-orange);
     border-radius: 0.8rem;
     cursor: pointer;
}

.inter {
     font-family: var(--inter);
}

.cg {
     font-family: var(--century-gothic);
}

.pacifico {
     font-family: var(--pacifico);
}

.rskforange {
     color: var(--main-orange);
}

.Loading {
     display: flex;
     position: fixed;
     top: 0;
     left: 0;
     z-index: 9999;
     background-color: var(--main-bgcolor);
     width: 100%;
     height: 100vh;
     align-items: center;
     justify-content: center;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s ease, transform 0.3s ease;
}

.Loading.Active {
     opacity: 1;
     pointer-events: auto;
}

.Loading_Spinner {
     width: 80px;
     height: 80px;
     border: 10px solid var(--main-orange);
     border-top: 10px solid var(--light-orange-2);
     border-radius: 50%;
     animation: spin 1s linear infinite;
}

@keyframes spin {
     to {
          transform: rotate(360deg);
     }
}

/* BACKGROUND LIGHTS */
.background-light1 {
     width: 15rem;
     height: 15rem;
     filter: blur(150px);
     -o-object-fit: cover;
     object-fit: cover;
     position: absolute;
     overflow: clip;
     z-index: 0;
     aspect-ratio: 1;
     opacity: 0.6;
     background: var(--main-orange);
     transform: translateZ(0);
}

.background-light2 {
     width: 15rem;
     height: 15rem;
     filter: blur(200px);
     -o-object-fit: cover;
     object-fit: cover;
     position: absolute;
     overflow: clip;
     z-index: 0;
     aspect-ratio: 1;
     opacity: 0.8;
     background: var(--main-orange);
     transform: translateZ(0);
}

.background-light1,
.background-light2,
.background-light3 {
     display: flex;
     flex-wrap: nowrap;
     flex-grow: 1;
     flex-shrink: 1;
     flex-basis: auto;
     pointer-events: none;
}

.SocialMediaIcon {
     background-color: #303030;
     border-radius: 999999px;
     width: 2.8rem;
     padding: 10px;
     transition: 0.1s ease-in-out;
     cursor: pointer;
}

.SocialMediaIcon:hover {
     transform: scale(1.1);
}

hr.LayoutHR {
     margin: 40px auto 40px auto;
     border: 3px solid rgba(48, 46, 46, 0.3);
     border-radius: 20rem;
     width: 55rem;
}

hr.EndLayoutHR {
     margin: 30px auto 40px auto;
     border: 2px solid rgba(48, 46, 46, 0.719);
     border-radius: 20rem;
     width: 40rem;
}

/* FAQ */
.InformationContent_FAQ {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     width: 50%;
     margin-bottom: 50px;
}

.InformationContent_FAQ .Title {
     font-size: 3rem;
     font-family: var(--cg);
     font-weight: 700;
     color: #ffffff;
     text-transform: uppercase;
     margin-bottom: 10px;
}

.InformationContent_FAQ .FaqAccordion {
     display: flex;
     flex-direction: row;
     align-items: flex-start;
     justify-content: center;
     width: 100%;
     position: relative;
}

.InformationContent_FAQ .FaqAccordion.Right {
     margin-left: 1rem;
     position: sticky;
     top: 0;
}

.InformationContent_FAQ .FaqAccordion .FaqAccordion_Item {
     background-color: #221f1f;
     color: #fff;
     display: flex;
     flex-direction: column;
     width: 35rem;
     padding: 15px 20px 15px 20px;
     border-radius: 15px;
     margin: 10px;
     transition: 0.4s;
     box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 20px 0px;
}

.FaqItemActive,
.InformationContent_FAQ .FaqAccordion .FaqAccordion_Item:hover {
     background-color: #1a1818;
}

.InformationContent_FAQ .FaqAccordion .FaqAccordion_Item .HeaderFaq {
     display: flex;
     flex-direction: row;
     text-align: left;
     cursor: pointer;
     width: 100%;
     padding: 5px;
     -webkit-touch-callout: none;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
}

.InformationContent_FAQ .FaqAccordion .FaqAccordion_Item .HeaderFaq h2 {
     font-size: 1.3rem;
     font-family: var(--inter);
     color: #ffffff;
     font-weight: 500;
}

.InformationContent_FAQ .FaqAccordion .FaqAccordion_Item .HeaderFaq::after {
     content: "⠀";
     margin: auto 0.5rem auto auto;
     height: 10px;
     width: 10px;
     border-bottom: 3px solid #fff;
     border-right: 3px solid #fff;
     transform: rotate(-135deg);
     transition: 0.2s ease-in-out;
}

.InformationContent_FAQ .FaqAccordion .FaqAccordion_Item .HeaderFaq.active::after {
     content: "⠀";
     margin: -1px 0.5rem auto auto;
     height: 10px;
     width: 10px;
     border-bottom: 3px solid #fff;
     border-right: 3px solid #fff;
     transform: rotate(-315deg);
}

.InformationContent_FAQ .FaqAccordion .FaqAccordion_Item .PanelFaq {
     display: flex;
     max-height: 0px;
     padding: 0;
     overflow: hidden;
     transition: max-height 0.2s ease-out;
}

.InformationContent_FAQ .FaqAccordion .FaqAccordion_Item .PanelFaq p {
     font-size: 1rem;
     font-family: var(--inter);
     color: #ffffffd1;
}

.ApplyButton {
     position: relative;
     width: auto;
     border: none;
     background-color: var(--main-orange);
     color: #ffffff;
     padding: 1em 1.5em 1em 1.5em;
     transition: 0.2s;
     border-radius: 10px;
     opacity: 1;
     letter-spacing: 1px;
     font-size: 1.2rem;
     box-shadow: var(--light-orange-1) 0px 7px 2px, #000 0px 8px 5px;
     cursor: pointer;
     font-family: var(--inter);
     font-weight: 500;
}

.ApplyButton .disabled,
.ApplyButton:disabled {
     background-color: rgb(63, 63, 63);
     color: var(--text-color);
     box-shadow: rgb(53, 53, 53) 0px 7px 2px;
     cursor: not-allowed;
}

.ApplyButton:hover:not(:disabled) {
     opacity: 0.8;
}

.ApplyButton:active:not(:disabled) {
     opacity: 1;
     top: 4px;
     box-shadow: var(--light-orange-2) 0px 3px 2px, #000 0px 3px 5px;
}

.SocialMediaButton {
     background-color: var(--main-orange);
     border-radius: 0.9em;
     cursor: pointer;
     padding: 0.8em 1em 0.8em 1em;
     transition: all ease-in-out 0.2s;
     font-size: 18px;
     outline: none;
     border: none;
     text-align: center;
     justify-content: center;
     display: flex;
     align-items: center;
     color: #ffffff;
     font-weight: 500;
     font-family: var(--inter);
}

.SocialMediaButton .icon {
     margin-right: 5px;
}

.SocialMediaButton:hover {
     background-color: var(--light-orange-1);
}

.DefaultButton {
     background-color: var(--main-orange);
     border-radius: 0.9em;
     cursor: pointer;
     padding: 0.8em 1em 0.8em 1em;
     transition: ease-in-out 0.2s;
     font-size: 18px;
     outline: none;
     border: none;
     text-align: center;
     justify-content: center;
     display: flex;
     align-items: center;
     color: #ffffff;
     font-weight: 500;
     font-family: var(--inter);
     transform: scale(1);
}

.DefaultButton:not(:last-child) {
     margin-right: 15px;
}

.DefaultButton img {
     margin-right: 5px;
     width: 26px;
}

.DefaultButton:hover {
     opacity: 0.8;
}

.DefaultButton:active {
     transform: scale(0.9);
}

.ApplyFormButton {
     position: relative;
     width: auto;
     border: none;
     background-color: var(--main-orange);
     color: #ffffff;
     padding: 1em 1.5em 1em 1.5em;
     transition: 0.2s;
     border-radius: 10px;
     opacity: 1;
     letter-spacing: 1px;
     font-size: 1.2rem;
     box-shadow: var(--light-orange-1) 0px 7px 2px, #000 0px 8px 5px;
     cursor: pointer;
     font-family: var(--inter);
     font-weight: 500;
}

.ApplyFormButton.Sec {
     margin-left: 10px;
}

.ApplyFormButton .disabled,
.ApplyFormButton:disabled {
     background-color: rgb(63, 63, 63);
     color: var(--text-color);
     box-shadow: rgb(53, 53, 53) 0px 7px 2px;
     cursor: not-allowed;
}

.ApplyFormButton:hover:not(:disabled) {
     opacity: 0.8;
}

.ApplyFormButton:active:not(:disabled) {
     opacity: 1;
     top: 4px;
     box-shadow: var(--light-orange-2) 0px 3px 2px, #000 0px 3px 5px;
}

.AdminButton {
     cursor: pointer;
     padding: 0.5em 1em 0.5em 1em;
     transition: ease-in-out 0.2s;
     font-size: 18px;
     outline: none;
     border: none;
     text-align: center;
     justify-content: center;
     display: flex;
     align-items: center;
     font-weight: 500;
     font-family: var(--inter);
     transform: scale(1);
     border-radius: 0.6rem;
     background-color: #181717;
     border: rgba(88, 88, 88, 0.15) 2px solid;
     color: #ffffff;
}

.AdminButton .Text {
     display: flex;
     flex-direction: column;
     text-align: left;
}

.AdminButton .Text small {
     color: #c2c2c2;
}

.AdminButton i {
     margin-right: 5px;
     font-size: 20px;
}

.AdminButton:hover {
     border: rgba(88, 88, 88, 0) 2px solid;
     background-color: #1d1c1de8;
     box-shadow: inset 0px 0px 82px -40px rgba(207, 124, 40, 0.329);
}

.AdminButton:active {
     border: rgba(88, 88, 88, 0) 2px solid;
     box-shadow: inset 0px 0px 82px -40px rgba(207, 124, 40, 0.329);
}

.FadeIn {
     animation: fadeIn 0.5s ease-in-out;
}

.Input__Apply {
     width: 100%;
     height: 3em;
     border: rgb(18, 18, 18) 2px solid;
     outline: none;
     background-color: rgb(18, 18, 18);
     border-radius: 10px;
     padding: 10px 20px 10px 20px;
     color: var(--light-orange-2);
     font-family: var(--inter);
     font-weight: 500;
     font-size: 1.2rem;
     transition: 0.2s ease-in-out;
}

.Input__Apply:hover,
.Input__Apply:active {
     border: rgb(46, 46, 46) 2px solid;
     outline: none;
}

.Input__Apply:focus {
     border: var(--light-orange-2) 2px solid;
}

.Input__Apply::placeholder {
     color: #a0a0a0a6;
}

.Input__Apply:disabled,
.Input__Apply.disabled {
     color: #d8d8d8dc;
     border: rgb(46, 46, 46) 2px solid;
     cursor: not-allowed;
}

.Input__Apply:disabled,
.Input__Apply.disabled .Input__Apply:hover,
.Input__Apply:disabled,
.Input__Apply.disabled .Input__Apply:active,
.Input__Apply:disabled,
.Input__Apply.disabled .Input__Apply:focus {
     color: #d8d8d8dc;
     border: rgb(46, 46, 46) 2px solid;
}

.Input__Apply.Invalid {
     color: rgb(255, 81, 81);
     border: rgb(255, 81, 81) 2px solid;
}

.Input__Telephone {
     display: flex;
     align-items: center;
     width: 100%;
     height: 3em;
     border: rgb(18, 18, 18) 2px solid;
     outline: none;
     background-color: rgb(18, 18, 18);
     border-radius: 10px;
     padding: 10px 20px;
     color: var(--light-orange-2);
     font-family: var(--inter);
     font-weight: 500;
     font-size: 1.2rem;
     transition: 0.2s ease-in-out;
}

.Input__Telephone:hover,
.Input__Telephone:active {
     border: rgb(46, 46, 46) 2px solid;
     outline: none;
}

.Input__Telephone:focus-within {
     border: var(--light-orange-2) 2px solid;
}

.Input__Telephone:disabled,
.Input__Telephone.disabled {
     color: #d8d8d8dc;
     border: rgb(46, 46, 46) 2px solid;
     cursor: not-allowed;
}

.Input__Telephone:has(input.Invalid) {
     color: rgb(255, 81, 81);
     border: 2px solid rgb(255, 81, 81);
}

.Input__Telephone input.Invalid {
     color: rgb(255, 81, 81);
     border: none;
}

.Input__Telephone .Flag {
     width: 25px;
     flex-shrink: 0;
     margin-right: 0.4rem;
}

.Input__Telephone .Flag svg {
     border-radius: 2px;
}

.Input__Telephone .Code {
     color: #ececec;
     font-size: 1rem;
     flex-shrink: 0;
     user-select: none;
}

.Input__Telephone input {
     margin-left: 0.4rem;
     border: none;
     outline: none;
     flex: 1;
     font-family: var(--inter);
     font-size: 1.2rem;
     font-weight: 500;
     color: var(--light-orange-2);
     background-color: transparent;
     transition: 0.2s ease-in-out;
}

.Input__Telephone input::placeholder {
     color: #a0a0a0a6;
}

.ApplyCheckBox__Wrapper input[type="checkbox"] {
     visibility: hidden;
     display: none;
}

.ApplyCheckBox__Wrapper *,
.ApplyCheckBox__Wrapper ::after,
.ApplyCheckBox__Wrapper ::before {
     box-sizing: border-box;
     user-select: none;
}

.ApplyCheckBox__Wrapper {
     position: relative;
     display: flex;
     align-items: center;
     gap: 12px;
     margin: 10px 0;
     overflow: hidden;
}

.ApplyCheckBox__Wrapper .label {
     display: flex;
     align-items: center;
     text-align: left;
     gap: 10px;
     cursor: pointer;
}

.ApplyCheckBox__Wrapper .check {
     width: 50px;
     height: 50px;
     position: absolute;
     opacity: 0;
}

.ApplyCheckBox__Wrapper .label svg {
     flex-shrink: 0;
     width: 45px;
     height: 45px;
     vertical-align: middle;
     transition: 0.3s ease;
}

.ApplyCheckBox__Wrapper .path1 {
     stroke-dasharray: 400;
     stroke-dashoffset: 400;
     transition: 0.5s stroke-dashoffset ease;
     opacity: 1;
     stroke: var(--main-orange);
     stroke-width: 3px;
}

.ApplyCheckBox__Wrapper .rect1 {
     stroke: #ffffff;
     fill: none;
     stroke-width: 3px;
     transition: stroke 0.2s ease;
}

.ApplyCheckBox__Wrapper .check:checked + label svg g path {
     stroke-dashoffset: 0;
     opacity: 1;
}

.ApplyCheckBox__Wrapper .label:hover .rect1 {
     stroke: var(--light-orange-2);
}

.ApplyCheckBox__Wrapper span {
     color: #fff;
     font-size: 1rem;
     line-height: 1.4;
}

.ApplyCheckBox__Wrapper a {
     color: var(--light-orange-2);
     text-decoration: underline;
     transition: 0.2s ease-in-out;
}

.ApplyCheckBox__Wrapper a:hover {
     color: #ffd19c;
}

input.Invalid {
     color: rgb(255, 81, 81);
     border: rgb(255, 81, 81) 2px solid;
}

@keyframes fadeIn {
     from {
          opacity: 0;
          transform: scale(0.95);
     }
     to {
          opacity: 1;
          transform: scale(1);
     }
}

.Input__Message {
     width: 100%;
     height: 3em;
     border: rgb(18, 18, 18) 2px solid;
     outline: none;
     background-color: rgb(18, 18, 18);
     border-radius: 10px;
     padding: 10px 20px 10px 20px;
     color: var(--light-orange-2);
     font-family: var(--inter);
     font-weight: 500;
     font-size: 1.2rem;
     transition: 0.2s ease-in-out;
     margin-bottom: 20px;
}

textarea.Input__Message {
     width: 100%;
     min-height: 6em;
     max-height: 10em;
     border: rgb(18, 18, 18) 2px solid;
     outline: none;
     background-color: rgb(18, 18, 18);
     border-radius: 10px;
     padding: 10px 20px 10px 20px;
     color: var(--light-orange-2);
     font-family: var(--inter);
     font-weight: 500;
     font-size: 1.2rem;
     transition: border 0.2s ease-in-out;
     margin-bottom: 20px;
     box-sizing: border-box;
     resize: vertical;
}

.Input__Message:hover,
.Input__Message:active {
     border: rgb(46, 46, 46) 2px solid;
     outline: none;
}

.Input__Message:focus {
     border: var(--light-orange-2) 2px solid;
}

.Input__Message::placeholder {
     color: #a0a0a0a6;
}

.Input__Message:disabled,
.Input__Message.disabled {
     color: #d8d8d8dc;
     border: rgb(46, 46, 46) 2px solid;
     cursor: not-allowed;
}

.Input__Message:disabled,
.Input__Message.disabled .Input__Message:hover,
.Input__Message:disabled,
.Input__Message.disabled .Input__Message:active,
.Input__Message:disabled,
.Input__Message.disabled .Input__Message:focus {
     color: #d8d8d8dc;
     border: rgb(46, 46, 46) 2px solid;
}

.Input__Message.Invalid {
     color: rgb(255, 81, 81);
     border: rgb(255, 81, 81) 2px solid;
}

.CharCounter {
     display: flex;
     justify-content: end;
     align-items: center;
     flex-direction: row;
     width: 100%;
}

.CharCounter .CircleProgress {
     display: none;
     width: 28px;
     height: 28px;
     border-radius: 50%;
     background: conic-gradient(#db6c2b 0%, #db6c2b 0%, #444 0%, #444 100%);
}

.CharCounter .CharsText {
     display: none;
     font-size: 1rem;
     color: #cacacab4;
     margin-left: 5px;
     font-weight: 500;
}

#SidebarMenu::-webkit-scrollbar {
     display: none;
     visibility: hidden;
     opacity: 0;
}

/** RESPONSIVE **/

/* SMALLER MOBILE */
@media (max-width: 480px) {
     hr.LayoutHR {
          margin: 30px auto 30px auto;
          border: 2px solid rgba(48, 46, 46, 0.3);
          width: 85%;
     }

     hr.EndLayoutHR {
          margin: 30px auto 30px auto;
          border: 2px solid rgba(48, 46, 46, 0.3);
          width: 85%;
     }

     .InformationContent_FAQ {
          width: 100%;
          text-align: center;
     }

     .InformationContent_FAQ .FaqAccordion {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center;
          width: 100%;
          position: relative;
     }

     .InformationContent_FAQ .FaqAccordion .FaqAccordion_Item {
          width: 95%;
     }

     .InformationContent_FAQ .FaqAccordion.Right {
          margin-left: none;
     }

     .InformationContent_FAQ .FaqAccordion .FaqAccordion_Item .PanelFaq {
          text-align: left;
     }

     .Buttons .ApplyButton:first-child {
          margin-bottom: 20px;
     }
}
