:root {
--font1: "Urbanist", Helvetica, Arial, sans-serif;
--primary-orange: #3b2a95;
--radius: 3px;
}a {
}body {
font-family: var(--font1);
padding: 0;
margin: 0;
}body.menu-open {
overflow: hidden;
}/* Site Header: Genel ve Masaüstü */
.site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
z-index: 1000;
transition: background-color 0.3s ease;
box-sizing: border-box;
background: #fff;
}.site-header.header-show,
.site-header.header-hide {
background: white;
box-shadow: 0px 0px 10px 0px #0000001f;
}.site-header .logo {
flex-shrink: 0;
display: flex;
align-items: center;
text-decoration: none;
}.site-header .logo img {
height: 70px;
width: auto;
display: block;
}.site-header .main-nav {
flex-grow: 1;
display: flex;
justify-content: end;
margin-right: 25px;
}.site-header .main-nav ul li:first-child {
background-color: red;
display: none;
}.site-header .main-nav ul#main-menu {
display: flex;
list-style: none;
gap: 25px;
margin: 0;
padding: 0;
align-items: center;
}.site-header .main-nav a {
color: #000000;
font-weight: 600;
font-size: 16px;
text-decoration: none;
padding: 5px 0;
position: relative;
transition: color 0.3s ease;
white-space: nowrap;
align-items: center;
display: flex;
}.site-header .main-nav a:hover {
color: var(--primary-orange);
}/* Alt Menüler: Masaüstü */
.site-header .nav-item.nav-submenu {
position: relative;
}.site-header .nav-submenu > a::after {
content: "▼";
font-size: 0.6em;
margin-left: 7px;
display: inline-block;
transition: transform 0.3s ease-in-out;
}.site-header .nav-submenu ul {
list-style: none;
padding: 10px;
margin: 0;
margin-top: 15px;
background-color: #0b1a2c;
border-radius: 8px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
min-width: 220px;
position: absolute;
top: 100%;
left: 0;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition:
opacity 0.3s ease,
transform 0.3s ease,
visibility 0.3s ease;
z-index: 10;
}.site-header .nav-submenu ul li {
padding: 0;
margin: 0;
}.site-header .nav-submenu ul a {
padding: 10px 15px;
display: block;
font-size: 14px;
font-weight: 500;
border-radius: 5px;
color: #fff; /* Alt menü linkleri için renk eklendi (isteğe bağlı) */
}.site-header .nav-item.nav-submenu:hover > ul {
opacity: 1;
visibility: visible;
transform: translateY(0);
}.site-header .nav-item.nav-submenu:hover > a::after {
transform: rotate(180deg);
}/* Hamburger Menü Butonu */
.site-header .menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1001;
}.site-header .menu-toggle .bar {
display: block;
width: 25px;
height: 3px;
background-color: #000;
margin: 5px 0;
transition: all 0.4s;
}.site-header .menu-toggle.is-active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}.site-header .menu-toggle.is-active .bar:nth-child(2) {
opacity: 0;
}.site-header .menu-toggle.is-active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}/* Mobil Menü Arka Plan Overlay */
.nav-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
z-index: 998;
opacity: 0;
visibility: hidden;
transition:
opacity 0.5s ease,
visibility 0.5s ease;
}.nav-overlay.is-active {
opacity: 1;
visibility: visible;
}/* Mobil Görünüm */
@media (max-width: 1200px) {
.site-header .menu-toggle {
display: block;
}.site-header .main-nav {
border-right: none;
margin-right: 0;
padding-right: 0;
justify-content: flex-end;
}.site-header .main-nav ul#main-menu {
overflow-y: auto;
padding-bottom: 40px;
flex-direction: column;
position: fixed;
top: 0;
left: -100%;
width: 80%;
max-width: 320px;
height: 100vh;
background-color: #1a1a1a;
padding: 80px 40px 40px;
align-items: flex-start;
gap: 15px;
transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
z-index: 999;
}.site-header .main-nav ul#main-menu.is-active {
left: 0;
}.site-header .main-nav ul a {
font-size: 18px;
width: 100%;
color: #fff;
}.site-header .main-nav ul li {
position: relative;
width: 100%;
}.site-header .main-nav ul li .mobil-logo {
margin-bottom: 25px;
display: block !important;
}/* Mobil Alt Menüler */
.site-header .nav-submenu > li::after {
content: "›";
font-size: 1.8em;
font-weight: bold;
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%) rotate(0deg);
transition: transform 0.3s ease-in-out;
}.site-header .nav-submenu ul {
position: static;
width: 100%;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
background-color: rgba(0, 0, 0, 0.2);
padding: 0;
margin-top: 0;
border-radius: 8px;
max-height: 0;
overflow: hidden;
transition:
max-height 0.4s ease-in-out,
padding 0.4s ease-in-out,
margin 0.4s ease-in-out;
}.site-header .nav-submenu.submenu-open > ul {
max-height: 500px;
margin-top: 10px;
padding: 10px 0 10px 20px;
}.site-header .nav-submenu.submenu-open > a::after {
transform: translateY(-50%) rotate(90deg);
}
}/* WhatsApp Butonu */
a.WhatsApp1 {
display: flex;
font-size: 18px;
background: #2eb843;
font-weight: 600;
width: 51px;
height: 51px;
position: fixed;
bottom: 20px;
left: 20px;
border-radius: 50%;
transition: all 0.1s ease-out 0s;
color: #fff;
align-items: center;
justify-content: center;
animation: whatsapp infinite 2s linear;
z-index: 9999;
text-decoration: none;
}a.WhatsApp1 svg{
width: 30px;
height: auto;
overflow: inherit;
fill: #fff;
}@keyframes whatsapp {
0% {
box-shadow: 0 0 0 0 #2eb843;
}
50% {
box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
}
}/* Alt Mobil Butonlar */
@media (max-width: 1024px) {
a.WhatsApp1 {
bottom: 60px;
}.btn {
border-radius: 0;
display: flex;
justify-content: center;
align-items: center;
padding: 10px 20px;
width: 100%;
text-decoration: none;
}.btn svg {
width: 24px;
height: 24px;
fill: currentColor;
}.mobilbuttonlar {
position: fixed;
width: 100%;
bottom: 0;
z-index: 999;
display: flex;
}.btn1 {
background: #5f8f8f;
border-color: #5f8f8f;
color: #fff;
}.btn2 {
background: #497676;
border-color: #497676;
color: #fff;
}.btn3 {
background: #375f5f;
border-color: #375f5f;
color: #fff;
}
}.mobilbuttonlar {
display: none;
}
.main-footer {
position: relative;
background-color: white;
}
.main-footer__top {
padding-top: 80px;
padding-bottom: 39px;
}
.main-footer__bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
mix-blend-mode: luminosity;
background-size: cover;
background-position: center center;
}
.main-footer .container {
position: relative;
z-index: 1;
}
.main-footer__bottom__inner {
padding: 25px 0 25px;
border-top: 1px solid rgba(var(--floens-white-rgb, 255, 255, 255), 0.1);
}
.main-footer__bottom__copyright {
text-align: right;
}
@media (max-width: 767px) {
.main-footer__bottom__copyright {
text-align: center;
}
}
@media (max-width: 767px) {
.main-footer .floens-social {
justify-content: center;
}
}
.main-footer .floens-social a {
border-color: RGBA(var(--floens-white-rgb, 255, 255, 255), 0.1);
}
.main-footer__copyright {
color: var(--floens-text-gray, #9a8b82);
margin: 0;
text-transform: capitalize;
text-align: center;
}.footer-widget {
margin-bottom: 40px;
}
.footer-widget__logo {
display: inline-flex;
margin-bottom: 32px;
}
.footer-widget__about-text {
color: var(--floens-text-gray, #9a8b82);
padding-right: 5px;
margin-bottom: 31px;
}
@media (max-width: 1199px) {
.footer-widget__about-text {
width: 100%;
max-width: 370px;
}
}
.footer-widget__newsletter {
position: relative;
width: 100%;
max-width: 370px;
}
.footer-widget__newsletter input[type="text"] {
width: 100%;
display: block;
border: none;
outline: none;
height: 58px;
background-color: var(--floens-white, #ffffff);
color: var(--floens-text, #7a736a);
font-size: 14px;
font-weight: 500;
padding-left: 25px;
padding-right: 56px;
transition: all 500ms ease;
}
.footer-widget__newsletter input[type="text"]::placeholder {
text-transform: capitalize;
}
.footer-widget__newsletter input[type="text"]:focus {
color: var(--floens-black2, #2b1e16);
}
.footer-widget__newsletter button[type="submit"] {
position: relative;
padding: 0;
background-color: transparent;
width: auto;
height: auto;
border: none;
outline: none;
color: var(--floens-base, #3b2a95);
font-size: 24px;
position: absolute;
top: 50%;
right: 17px;
transform: translateY(-50%);
transition: all 500ms ease;
}
.footer-widget__newsletter button[type="submit"]:hover {
color: var(--floens-black2, #2b1e16);
}
.footer-widget__newsletter button[type="submit"]::after {
content: "";
width: 1px;
height: 100%;
position: absolute;
top: 50%;
left: -14px;
transform: translateY(-50%);
background-color: var(--floens-gray, #ded8d3);
transition: all 500ms ease;
}
.footer-widget__newsletter button[type="submit"]:hover::after {
background-color: var(--floens-base, #3b2a95);
}
.footer-widget__top {
margin-top: 15px;
display: flex;
align-items: center;
gap: 11px;
margin-bottom: 21px;
}
.footer-widget__title-box {
position: relative;
top: -1px;
width: 14px;
height: 14px;
background-color: var(--floens-base2, #8a5133);
}
.footer-widget__title-box::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 8.75px;
height: 8.75px;
background-color: var(--floens-base, #3b2a95);
}
.footer-widget__title {
font-size: 18px;
color: var(--floens-white, #ffffff);
text-transform: capitalize;
margin: 0;
}
.footer-widget--links-one {
position: relative;
right: -26px;
padding-left: 50px;
}
@media (max-width: 1199px) {
.footer-widget--links-one {
right: 0;
padding-left: 30px;
}
}
@media (max-width: 991px) {
.footer-widget--links-one {
padding-left: 0px;
}
}
.footer-widget--links-two {
padding-left: 80px;
}
@media (max-width: 1199px) {
.footer-widget--links-two {
padding-left: 30px;
}
}
@media (max-width: 767px) {
.footer-widget--links-two {
padding-left: 0px;
}
}
.footer-widget--contact {
padding-left: 56px;
}
@media (max-width: 1199px) {
.footer-widget--contact {
padding-left: 0px;
}
}
@media (max-width: 991px) {
.footer-widget--contact {
padding-left: 30px;
}
}
@media (max-width: 767px) {
.footer-widget--contact {
padding-left: 0px;
}
}
.footer-widget__links {
margin: 0;
padding: 0 0 0 0px;
}
.footer-widget__links li {
font-size: 16px;
color: var(--floens-text-gray, #9a8b82);
font-weight: 500;
text-transform: capitalize;
line-height: 2.25;
list-style: none;
}
.footer-widget__links li a {
color: inherit;
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
95%/0px 1px no-repeat;
transition: all 500ms ease;
}
.footer-widget__links li a:hover {
background-size: 100% 1px;
}
.footer-widget__links li a:hover {
color: var(--floens-base, #3b2a95);
}
.footer-widget__info {
margin: 0;
padding-top: 16px;
padding: 0 0 0 0px;
}
.footer-widget__info li {
display: flex;
align-items: center;
font-size: 15px;
color: var(--floens-text-gray, #9a8b82);
font-weight: 500;
line-height: 18px;
}
.footer-widget__info li + li {
margin-top: 20px;
}
.footer-widget__info li:nth-child(1) {
display: block;
}
.footer-widget__info li:nth-child(1) a {
line-height: 1.866;
text-transform: capitalize;
}
.footer-widget__info li svg {
width: 20px;
height: auto;
overflow: inherit;
fill: var(--floens-base, #3b2a95);
margin-right: 10px;
}
.footer-widget__info li span {
font-size: 18px;
color: var(--floens-base, #3b2a95);
margin-right: 15px;
}
.footer-widget__info li a {
color: inherit;
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
95%/0px 1px no-repeat;
transition: all 500ms ease;
}
.footer-widget__info li a:hover {
background-size: 100% 1px;
}
.footer-widget__info li a:hover {
color: var(--floens-base, #3b2a95);
}
.footer-widget__text {
font-size: 14px;
color: var(--floens-text, #7a736a);
font-weight: 500;
line-height: 30px;
margin: 0;
margin-top: -10px;
margin-bottom: 21px;
max-width: 201px;
}.site-header .language-dropdow,
.site-header .language-dropdow {
display: inline-block;
color: #fff;
}.site-header .language-dropdow > ul,
.site-header .language-dropdow > ul {
margin: 0;
padding: 0;
}.site-header .language-dropdow > ul > li,
.site-header .language-dropdow > ul > li {
position: relative;
z-index: 2;
list-style: none;
}.site-header .language-dropdow > ul > li .lang-sel,
.site-header .language-dropdow > ul > li .lang-sel {
display: flex;
align-items: center;
padding: 0 20px 5px 0;
font-size: 16px;
font-weight: 700;
color: var(--floens-base, #3b2a95);
text-align: center;
text-transform: uppercase;
}.site-header .language-dropdow > ul > li > ul.lang-submenu > li:nth-child(1) a {
display: block;
background: transparent;
}.site-header .language-dropdow > ul > li > ul.lang-submenu > li:nth-child(2) a {
display: block;
background: transparent;
}.site-header .language-dropdow > ul > li > ul.lang-submenu > li:nth-child(3) a {
}.site-header .language-dropdow > ul > li > ul.lang-submenu > li:nth-child(4) a {
}.site-header .language-dropdow > ul > li > ul.lang-submenu > li:nth-child(5) a {
}.site-header .language-dropdow > ul > li .lang-sel img,
.site-header .language-dropdow > ul > li .lang-sel img {
max-height: 20px;
margin-right: 5px;
}.site-header .language-dropdow > ul > li .lang-sel span:after,
.site-header .language-dropdow > ul > li .lang-sel span:after {
content: "\eab2";
font-family: "fontello";
font-style: normal;
font-weight: normal;
margin-left: 5px;
display: none;
}.site-header .language-dropdow > ul > li > ul.lang-submenu,
.site-header .language-dropdow > ul > li > ul.lang-submenu {
position: absolute;
visibility: hidden;
left: 0;
top: 100%;
min-width: 100%;
background: #fff;
list-style: none;
padding: 5px 20px;
margin: 0;
opacity: 0;
-webkit-transition: opacity 0.3s ease-in-out 0s;
-moz-transition: opacity 0.3s ease-in-out 0s;
-ms-transition: opacity 0.3s ease-in-out 0s;
-o-transition: opacity 0.3s ease-in-out 0s;
transition: opacity 0.3s ease-in-out 0s;
-webkit-box-shadow: 0 5px 83px 0 rgb(40 40 40 / 20%);
-khtml-box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.2);
-moz-box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.2);
-ms-box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.2);
-o-box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.2);
box-shadow: 0 5px 83px rgb(40 40 40 / 20%);
}.site-header .language-dropdow > ul > li:hover > ul,
.site-header .language-dropdow > ul > li:hover > ul {
visibility: visible;
opacity: 1;
}.site-header .language-dropdow > ul > li > ul.lang-submenu > li a img,
.site-header .language-dropdow > ul > li > ul.lang-submenu > li a img {
display: none;
}.site-header .language-dropdow > ul > li > ul.lang-submenu > li a,
.site-header .language-dropdow > ul > li > ul.lang-submenu > li a {
position: relative;
color: #9b9b9b;
display: block;
padding: 9px 0;
border-bottom: 1px solid #eaeaea;
text-align: center;
cursor: pointer;
font-size: 14px;
text-decoration: none !important;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}.site-header .language-dropdow > ul > li > ul.lang-submenu > li a:hover,
.site-header .language-dropdow > ul > li > ul.lang-submenu > li a:hover {
color: var(--floens-base, #3b2a95);
}.site-header .language-dropdow > ul > li > ul.lang-submenu > li a:after,
.site-header .language-dropdow > ul > li > ul.lang-submenu > li a:after {
position: absolute;
bottom: 0;
content: "";
display: block;
width: 0;
height: 1px;
background: var(--floens-base, #3b2a95);
-webkit-transition: all 450ms ease 0ms;
-khtml-transition: all 450ms ease 0ms;
-moz-transition: all 450ms ease 0ms;
-ms-transition: all 450ms ease 0ms;
-o-transition: all 450ms ease 0ms;
transition: all 450ms ease 0ms;
}.header-social {
display: flex;
gap: 15px;
}
.header-social a {
color: var(--floens-base, #3b2a95);
transition: 0.3s;
}
.header-social li {
list-style: none;
}
.header-social a svg {
fill: var(--floens-base, #3b2a95);
transition: 0.3s;
width: 23px;
height: 23px;
}
.header-social a:hover {
transform: translateY(-3px);
}@media (max-width: 1024px) {
.floens-btn--border{
display: none !important;
}
.header-social {
display: none;
margin-right: 20px;
}.main-footer {
margin-bottom: 30px;
}
}.mobilbuttonlar {
display: none;
}@media (max-width: 1024px) {
a.WhatsApp1 {
bottom: 60px;
}.btn {
border-radius: 0;
display: flex;
justify-content: center;
align-items: center;
padding: 10px 20px;
width: 100%;
}.btn svg {
width: 24px;
height: 24px;
fill: white;
}.mobilbuttonlar {
position: fixed;
width: 100%;
bottom: 0;
z-index: 999;
display: flex;
}.btn1 {
background: #3b2a95;
border-color: #3b2a95;
color: #fff;
width: 100%;
}.btn2 {
background: #2f1f80;
border-color: #2f1f80;
color: #fff;
width: 100%;
}.btn3 {
background: #221566;
border-color: #221566;
color: #fff;
width: 100%;
}.site-header .logo img {
height: 60px;
}.site-header {
padding: 20px 10px;
}
}.floens-btn {
display: inline-flex;
align-items: center;
vertical-align: middle;
-webkit-appearance: none;
border: none;
outline: none !important;
background-color: var(--floens-base, #3b2a95);
color: var(--floens-white, #ffffff);
font-size: 14px;
font-weight: 700;
padding: 14px 20.5px;
transition: 500ms;
cursor: pointer;
position: relative;
overflow: hidden;
text-align: center;
line-height: 1;
z-index: 1;
}.floens-btn svg {
width: 20px;
height: auto;
overflow: inherit;
fill: #fff;
margin-left: 20px;
}@media (max-width: 575px) {
.floens-btn {
padding-top: 18px;
padding-bottom: 18px;
font-size: 14px;
}
}.floens-btn::before,
.floens-btn::after {
content: "";
background-color: var(--floens-black2, #0ca3ce);
height: 50%;
width: 0;
position: absolute;
transition: 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
z-index: -1;
}.floens-btn::before {
top: 0;
left: 0;
right: auto;
}.floens-btn::after {
bottom: 0;
right: 0;
left: auto;
}.floens-btn:hover::before {
width: 100%;
right: 0;
left: auto;
}.floens-btn:hover:after {
width: 100%;
left: 0;
right: auto;
}.floens-btn span {
position: relative;
top: 1px;
color: white;
}.floens-btn i {
position: relative;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
font-size: 23.88px;
color: inherit;
transition: all 400ms ease;
}.floens-btn i::after {
content: "";
width: 1px;
height: 100%;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: -15px;
background-color: RGBA(var(--floens-white-rgb, 255, 255, 255), 0.3);
transition: all 400ms ease;
}.floens-btn--border {
background-color: #3b2a95;
border: 1px solid var(--floens-base, #3b2a95);
color: white;
}.floens-btn--border::before,
.floens-btn--border::after {
background-color: var(--floens-base, #000);
}.floens-btn--border i {
color: var(--floens-base, #3b2a95);
}.floens-btn--border i::after {
background-color: var(--floens-base, #3b2a95);
}.floens-btn--border:hover {
color: var(--floens-white, #ffffff);
}.floens-btn--border:hover i {
color: var(--floens-white, #ffffff);
}.floens-btn--border:hover i::after {
background-color: var(--floens-white, #ffffff);
}@keyframes zump {
0% {
-webkit-transform: translateZ(0);
transform: translateZ(0);
}50% {
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}100% {
-webkit-transform: translateZ(0);
transform: translateZ(0);
}
}@keyframes zumpBottom {
0% {
-webkit-transform: translateZ(0);
transform: translateZ(0);
}50% {
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}100% {
-webkit-transform: translateZ(0);
transform: translateZ(0);
}
}.floens-btn svg {
width: 20px;
height: auto;
overflow: inherit;
fill: #fff;
margin-left: 20px;
}