a {
text-decoration: none;
}p {
font-size: 16px;
color: #515151;
font-weight: 500;
line-height: 1.75;
}.hero-video-bolumu {
position: relative;
width: 100%;
height: 90vh; /* Veya 100vh */
overflow: hidden;
display: flex;
align-items: center;
/* Sola hizalama için justify-content: flex-start yapıyoruz (önceden center'dı) */
justify-content: flex-start;
color: #fff;
margin-top: 90px;
}/* Video Kapsayıcı */
.hero-video-bolumu .video-arkaplan {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
}/* Iframe'i tam ekran yapma ve ortalama hilesi */
.hero-video-bolumu .video-arkaplan iframe {
position: absolute;
top: 50%;
left: 50%;
width: 100vw;
height: 56.25vw;
min-height: 100vh;
min-width: 177.77vh;
transform: translate(-50%, -50%);
}/* Overlay (Karartma/Renk) */
.hero-video-bolumu .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
background-color: #000000;
opacity: 0.2; /* Opaklığı yazılar okunsun diye %40'a çıkardım (0.4) */
transition:
background 0.3s,
border-radius 0.3s,
opacity 0.3s;
display: block; /* Yazıların okunması için display: none yerine block yaptım */
}/* İçeriği düzenli tutacak Konteyner (Ekranın en soluna sıfıra sıfır yapışmasını engeller) */
.hero-video-bolumu .container {
width: 100%;
margin: 0 auto;
z-index: 2;
}/* İçerik */
.hero-video-bolumu .icerik {
position: relative;
z-index: 2;
text-align: left; /* Önceden center'dı, sola aldık */
max-width: 550px; /* Yazı çok uzayıp ekranın sağına kadar gitmesin diye */
}/* --- YENİ EKLENEN YAZI STİLLERİ --- *//* Ana Slogan (Travertine Ocak) */
.hero-video-bolumu .slogan {
font-size: 50px; /* Büyük, şık bir başlık */
font-weight: 700;
margin: 0 0 15px 0;
line-height: 1.1;
}/* Altındaki Bir Cümle Yazı */
.hero-video-bolumu .alt-yazi {
font-size: 19px;
font-weight: 500;
line-height: 1.5;
margin: 0 0 20px 0;
color: #e0e0e0;
}/* Play Butonu Düzeni */
.hero-video-bolumu .play {
/* Önceden soldan/sağdan padding vardı, sola hizalı olması için kaldırdık */
padding: 20px 0 0 0;
display: inline-block;
transition: transform 0.3s ease;
}.hero-video-bolumu .play:hover {
transform: scale(1.05); /* Üzerine gelince hafif büyüsün */
}.hero-video-bolumu .play svg {
width: 64px;
height: 64px;
color: #fff; /* İçi boş/çizgili ikon kullanıyorsanız diye stroke color ayarlandı */
filter: drop-shadow(
0px 4px 6px rgba(0, 0, 0, 0.5)
); /* İkona da gölge ekledik */
}/* --- MOBİL UYUM (Responsive) --- */
@media(max-width:1024px){
.hero-video-bolumu{
height: 40vh;
}
}
@media (max-width: 768px) {
.hero-video-bolumu .slogan {
font-size: 42px; /* Mobilde başlığı küçültür */
}
.hero-video-bolumu .alt-yazi {
font-size: 16px; /* Mobilde yazıyı küçültür */
}
.hero-video-bolumu .container {
padding: 0 20px;
}
}/**/
.page-urunler-listele-resimler {
position: relative;
display: block;
margin-bottom: 10px;
border-radius: 1rem;
background: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
transition:
transform 0.3s ease,
box-shadow 0.3s ease;
}.page-urunler-listele-resimler:hover {
transform: translateY(-5px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}/* Lazy Load için Resim Çerçevesi (Placeholder) */
.image-container {
position: relative;
overflow: hidden;
width: 100%;
border-radius: var(--radius);
background-color: #f0f0f0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Ccircle cx='50' cy='50' r='32' stroke='%23ccc' stroke-width='8' fill='none' stroke-dasharray='50 50'%3E%3CanimateTransform attributeName='transform' type='rotate' dur='1s' repeatCount='indefinite' values='0 50 50;360 50 50'/%3E%3C/circle%3E%3C/svg%3E");
background-size: 50px;
background-repeat: no-repeat;
background-position: center;
border: solid 6px white;
}.image-container img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 0.5s ease-in-out;
}.image-container img.loaded {
opacity: 1;
}.page-urunler-listele-resimler:hover .image-container img.loaded {
filter: brightness(0.85);
}/* Modal styling burada kalabilir (senin mevcut media-modal.css) */
/* Zoom ikonu stilleri */
.page-urunler-listele-resimler .zoom {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
background: rgba(0, 0, 0, 0.4);
transition: opacity 0.3s ease;
z-index: 2;
}.page-urunler-listele-resimler:hover .zoom {
opacity: 1;
}.page-urunler-listele-resimler .zoom svg {
width: 20px;
height: 20px;
fill: #fff;
transform: scale(0.8);
transition: transform 0.3s ease;
}.page-urunler-listele-resimler:hover .zoom svg {
transform: scale(1);
}
/**/.section-space {
padding-top: var(--section-space, 120px);
padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
.section-space {
padding-top: 100px;
padding-bottom: 100px;
}
}
@media (max-width: 575px) {
.section-space {
padding-top: 80px;
padding-bottom: 80px;
}
}.section-space-two {
padding-top: 111px;
padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
.section-space-two {
padding-top: 93px;
padding-bottom: 100px;
}
}
@media (max-width: 575px) {
.section-space-two {
padding-top: 74px;
padding-bottom: 80px;
}
}.section-space-top {
padding-top: var(--section-space, 120px);
}
@media (max-width: 767px) {
.section-space-top {
padding-top: 100px;
}
}
@media (max-width: 575px) {
.section-space-top {
padding-top: 80px;
}
}.section-space-bottom {
padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
.section-space-bottom {
padding-bottom: 100px;
}
}
@media (max-width: 575px) {
.section-space-bottom {
padding-bottom: 80px;
}
}/**/.sec-title {
display: flex;
align-items: flex-start;
gap: 23px;
}
.sec-title--border {
padding-bottom: 15px;
margin-bottom: 32px;
border-bottom: 1px solid var(--floens-border-color, #ded8d3);
}
.sec-title__tagline {
position: relative;
top: -50px;
margin: 0;
margin-top: 30px;
color: var(--floens-base2, #3b2a95);
font-weight: 500;
font-size: 16px;
line-height: 1;
text-transform: uppercase;
writing-mode: vertical-rl;
transform: rotate(180deg);
}
@media (max-width: 991px) {
.sec-title__tagline {
top: -22px;
}
}
@media (max-width: 767px) {
.sec-title__tagline {
top: -23px;
}
}
@media (max-width: 575px) {
.sec-title__tagline {
top: -24px;
}
}
.sec-title__tagline::before {
content: "";
position: absolute;
top: -26px;
left: 0px;
width: 16px;
height: 16px;
background-color: var(--floens-base2, #3b2a95);
}
.sec-title__tagline::after {
content: "";
position: absolute;
top: -20px;
right: 0px;
width: 10px;
height: 10px;
background-color: var(--floens-base, #3b2a95);
}
.sec-title__title {
margin: 0;
font-size: 48px;
color: var(--floens-black2, #2b1e16);
font-weight: bold;
line-height: 1.09;
letter-spacing: var(--floens-letter-space-xl, -1.65px);
margin-bottom: 0;
}
@media (max-width: 1199px) {
.sec-title__title {
font-size: 45px;
}
}
@media (max-width: 767px) {
.sec-title__title {
font-size: 40px;
}
}
@media (max-width: 575px) {
.sec-title__title {
font-size: 35px;
}
}
@media (max-width: 425px) {
.sec-title__title {
font-size: 33px;
}
}
.sec-title--center {
display: block;
text-align: center;
}
.sec-title--center .sec-title__tagline {
display: inline-block;
margin: 0;
margin-left: 27px;
top: 0;
writing-mode: horizontal-tb;
transform: rotate(0deg);
}
.sec-title--center .sec-title__tagline::before {
top: -1px;
left: -27px;
}
.sec-title--center .sec-title__tagline::after {
top: -1px;
left: -21px;
}
.sec-title--center .sec-title__title {
margin-top: 4px;
}.about-one {
overflow: hidden;
position: relative;
background-color: var(--floens-white, #ffffff);
}
.about-one .container {
position: relative;
z-index: 1;
}
.about-one__image-grid {
position: relative;
width: calc(100% - 30px);
display: grid;
grid-template-columns: calc(50% - 30px) calc(50% + 30px);
gap: 30px;
}
@media (max-width: 991px) {
.about-one__image-grid {
width: calc(100% - 200px);
}
}
@media (max-width: 767px) {
.about-one__image-grid {
width: calc(100% - 100px);
}
}
@media (max-width: 575px) {
.about-one__image-grid {
width: calc(100% - 40px);
gap: 20px;
}
}
@media (max-width: 425px) {
.about-one__image-grid {
width: calc(100% - 15px);
gap: 15px;
}
}
.about-one__image__one {
margin-bottom: 30px;
}
@media (max-width: 575px) {
.about-one__image__one {
margin-bottom: 20px;
}
}
@media (max-width: 425px) {
.about-one__image__one {
margin-bottom: 15px;
}
}
.about-one__image img {
max-width: 100%;
}
@media (max-width: 991px) {
.about-one__image img {
width: 100%;
}
}
.about-one__circle-text {
position: relative;
position: absolute;
top: 24.5%;
left: 31.3%;
width: 156px;
height: 156px;
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 50%;
z-index: 11;
}
.about-one__circle-text__bg {
position: relative;
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
width: 156px;
height: 156px;
border-radius: 50%;
}
.about-one__circle-text__image {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.about-one__curved-circle {
position: relative;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform-origin: center center;
animation: rotate 10s infinite linear;
}
.about-one__curved-circle__item {
width: 156px;
position: relative;
top: 5px;
left: 0;
}
.about-one__curved-circle__item span {
text-transform: uppercase;
font-size: 14px;
color: var(--floens-base2, #3b2a95);
letter-spacing: 0.2em;
}
.about-one__circle-text:hover .about-one__curved-circle__item span {
color: rgba(var(--floens-black2-rgb, 43, 30, 22), 1);
}
.about-one__content {
margin-top: 30px;
}
@media (max-width: 991px) {
.about-one__content {
margin-top: 0;
}
}
.about-one .sec-title {
padding-bottom: 30px;
margin-bottom: 33px;
}
.about-one__content__text {
margin-bottom: 33px;
}
.about-one__text-title {
font-size: 20px;
color: var(--floens-base, #3b2a95);
line-height: 1.4;
margin-bottom: 14px;
}
.about-one__text {
margin-bottom: 0;
}
.about-one__service {
position: relative;
display: flex;
gap: 21px;
}
.about-one__service--one {
padding-right: 21px;
}
@media (max-width: 1199px) {
.about-one__service--one {
padding-right: 0;
}
}
.about-one__service--one::after {
content: "";
position: absolute;
top: calc(50% - 1px);
right: -9px;
transform: translateY(-50%);
width: 1px;
height: calc(100% - 21.5px);
background-color: var(--floens-border-color, #ded8d3);
}
@media (max-width: 1199px) {
.about-one__service--one::after {
display: none;
}
}
.about-one__service--two {
padding-left: 9px;
}
@media (max-width: 1199px) {
.about-one__service--two {
padding-left: 0;
}
}
.about-one__service__icon {
position: relative;
top: 7px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
width: 70px;
height: 70px;
border-radius: 50%;
background-color: var(--floens-white2, #f2eeea);
overflow: hidden;
transition-duration: 800ms;
z-index: 1;
}.about-one__service:hover svg {
fill: white;
}.about-one__service__icon svg {
width: 30px;
height: auto;
overflow: inherit;
fill: var(--floens-base, #3b2a95);
}.about-one__service__icon::after {
content: "";
z-index: -1;
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
width: 150%;
height: 150%;
background-color: var(--floens-base, #3b2a95);
transition-duration: 800ms;
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
border-radius: 50%;
}
.about-one__service__icon span {
font-size: 35px;
color: var(--floens-base2, #3b2a95);
transition: all 400ms ease;
}
.about-one__service:hover .about-one__service__icon::after {
bottom: -50%;
}
.about-one__service:hover .about-one__service__icon span {
color: var(--floens-white, #ffffff);
-webkit-animation-name: wobble-horizontal-hover;
animation-name: wobble-horizontal-hover;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}
.about-one__service__title {
font-size: 16px;
line-height: 1.75;
text-transform: capitalize;
margin-bottom: 3px;
margin: 0;
}
.about-one__service__text {
margin-bottom: 0;
}
.about-one__button {
margin-top: 42px;
}
.about-one__shape {
position: absolute;
clip-path: polygon(0 61%, 100% 0%, 100% 39%, 0% 100%);
animation: zump 2s linear infinite;
}
.about-one__shape--one {
right: 0;
bottom: 120px;
}
@media (max-width: 1799px) {
.about-one__shape--one {
right: -50px;
}
}
@media (max-width: 1599px) {
.about-one__shape--one {
right: -140px;
}
}
@media (max-width: 1399px) {
.about-one__shape--one {
right: -170px;
}
}
@media (max-width: 1320px) {
.about-one__shape--one {
display: none;
}
}
.about-one__shape--two {
top: 120px;
left: 0;
}
@media (max-width: 1799px) {
.about-one__shape--two {
left: -50px;
}
}
@media (max-width: 1599px) {
.about-one__shape--two {
left: -140px;
}
}
@media (max-width: 1399px) {
.about-one__shape--two {
left: -170px;
}
}
@media (max-width: 1320px) {
.about-one__shape--two {
display: none;
}
}.services-one {
position: relative;
background-color: var(--floens-black2, #2b1e16);
padding-top: 110px;
padding-bottom: 110px;
}
@media (max-width: 767px) {
.services-one {
padding-top: 90px;
}
}
@media (max-width: 575px) {
.services-one {
padding-top: 30px;
padding-bottom: 0px;
}
}
.services-one__bg {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-repeat: no-repeat;
background-position: top;
background-size: cover;
mix-blend-mode: luminosity;
}
.services-one .container {
position: relative;
z-index: 1;
}
.services-one__top {
padding-bottom: 19px;
margin-bottom: 60px;
border-bottom: 1px solid
RGBA(var(--floens-border-color-rgb, 222, 216, 211), 0.25);
}
.services-one__top__button {
text-align: right;
}
.services-one__top__btn {
padding-left: 19.5px;
background-color: #3b2a95;
border: 1px solid RGBA(var(--floens-white-rgb, 255, 255, 255), 0.2);
}
.services-one__top__btn::before,
.services-one__top__btn::after {
background-color: var(--floens-base, #000);
}
.services-one__top__btn i {
right: 19px;
}
.services-one .sec-title__tagline,
.services-one .sec-title__title {
color: var(--floens-white, #ffffff);
}
.services-one .container-fluid {
position: relative;
z-index: 1;
margin-bottom: 0px;
}
@media (min-width: 576px) {
.services-one .container-fluid {
padding-left: 0;
padding-right: 0;
}
}
@media (max-width: 767px) {
.services-one .container-fluid {
margin-bottom: 90px;
}
}
@media (max-width: 575px) {
.services-one .container-fluid {
margin-bottom: 70px;
}
}
@media (min-width: 530px) {
.services-one__carousel .owl-nav {
display: none !important;
}
}
@media (max-width: 575px) {
.services-one__carousel .owl-dots {
display: none !important;
}
}
.services-one__container {
position: relative;
}
.services-one__cursor {
position: absolute;
top: 0;
left: 0;
padding: 10px;
display: flex;
align-items: center;
justify-content: space-between;
width: 98px;
height: 98px;
border-radius: 50%;
background-color: var(--floens-base2, #3b2a95);
opacity: 0;
transform: scale(1);
transition: all 500ms ease;
z-index: 11;
pointer-events: none;
}
.services-one__cursor i {
font-size: 14px;
color: var(--floens-white, #ffffff);
}
.services-one__cursor__text {
font-size: 14px;
color: var(--floens-white, #ffffff);
font-weight: 700;
line-height: 16px;
letter-spacing: -0.42px;
text-transform: capitalize;
}
.services-one__carousel:hover + .services-one__cursor {
opacity: 1;
}
.services-one__info {
position: relative;
z-index: 1;
margin-top: -245px;
}
.services-one__info__inner {
position: relative;
padding: 59px 61px 55px;
background-color: var(--floens-base2, #3b2a95);
overflow: hidden;
}
@media (max-width: 767px) {
.services-one__info__inner {
padding: 49px 40px 53px;
}
}
@media (max-width: 575px) {
.services-one__info__inner {
padding-left: 30px;
padding-right: 30px;
}
}
.services-one__info__bg {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-repeat: no-repeat;
background-position: top;
background-size: cover;
mix-blend-mode: multiply;
}
.services-one__info .row {
position: relative;
z-index: 1;
}
.services-one__info__left {
width: 100%;
max-width: 490px;
}
.services-one__info__title {
color: var(--floens-white, #ffffff);
line-height: 1;
letter-spacing: -0.9px;
margin-bottom: 18px;
font-size: 1.75rem;
}
.services-one__info__text {
padding-right: 10px;
color: RGBA(var(--floens-white-rgb, 255, 255, 255), 0.7);
margin-bottom: 0;
}
.services-one__info__right {
display: table;
margin-left: auto;
}
@media (max-width: 991px) {
.services-one__info__right {
margin-left: 0;
}
}
.services-one__info__right__inner {
display: flex;
align-items: center;
gap: 15px;
flex-wrap: wrap;
}
.services-one__info__icon {
display: flex;
align-items: center;
justify-content: center;
width: 70px;
height: 70px;
background-color: var(--floens-white, #ffffff);
border-radius: 50%;
}.services-one__info__icon svg {
width: 30px;
overflow: inherit;
fill: var(--floens-base, #3b2a95);
}@media (max-width: 767px) {
.services-one__info__icon {
width: 55px;
height: 55px;
}
}
@media (max-width: 575px) {
.services-one__info__icon {
width: 50px;
height: 50px;
}
}
.services-one__info__icon span {
font-size: 29.27px;
color: var(--floens-base2, #3b2a95);
}
@media (max-width: 767px) {
.services-one__info__icon span {
font-size: 24px;
}
}
@media (max-width: 575px) {
.services-one__info__icon span {
font-size: 22px;
}
}
.services-one__info__right:hover .services-one__info__icon span {
-webkit-animation-name: wobble-horizontal-hover;
animation-name: wobble-horizontal-hover;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}
.services-one__info__number {
font-size: 30px;
color: var(--floens-white, #ffffff);
font-weight: 700;
line-height: 1;
letter-spacing: -0.9px;
text-transform: capitalize;
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
95%/0px 1px no-repeat;
transition: all 500ms ease;
}
.services-one__info__number:hover {
background-size: 100% 1px;
}
@media (max-width: 991px) {
.services-one__info__number {
font-size: 24px;
}
}
@media (max-width: 767px) {
.services-one__info__number {
font-size: 22px;
}
}
@media (max-width: 575px) {
.services-one__info__number {
font-size: 20px;
}
}
.services-one__info__shape-one {
position: absolute;
right: 36.3%;
bottom: -1px;
width: 139px;
height: 110px;
background-color: var(--floens-black2, #2b1e16);
clip-path: polygon(30% 0, 100% 0%, 69% 100%, 0% 100%);
z-index: 1;
}
@media (max-width: 1199px) {
.services-one__info__shape-one {
bottom: -60px;
}
}
@media (max-width: 991px) {
.services-one__info__shape-one {
display: none;
}
}
.services-one__info__shape-two {
position: absolute;
right: 44.6%;
bottom: -1px;
width: 100px;
height: 79px;
background-color: var(--floens-base2, #3b2a95);
clip-path: polygon(32% 0, 100% 0%, 72% 100%, 0% 100%);
}
@media (max-width: 1199px) {
.services-one__info__shape-two {
bottom: -60px;
}
}
@media (max-width: 991px) {
.services-one__info__shape-two {
display: none;
}
}.service-card {
position: relative;
padding: 30px;
background-color: white;
}
.service-card::before,
.service-card::after {
content: "";
position: absolute;
width: 0;
height: 0;
}
.service-card::before {
left: 0px;
bottom: 0px;
border-bottom: 1px solid transparent;
border-left: 1px solid transparent;
transition: all 0.6s linear;
}
.service-card::after {
right: 0px;
top: 0px;
border-top: 1px solid transparent;
border-right: 1px solid transparent;
transition: all 0.6s linear;
}
.service-card:hover::before,
.service-card:hover::after {
border-color: var(--floens-base, #3b2a95);
width: 100%;
height: 100%;
}
.service-card__bg {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: var(--floens-white2, #f2eeea);
z-index: -1;
transition-delay: 100ms;
transition-timing-function: ease-in-out;
transition-duration: 400ms;
transition-property: all;
transform-style: preserve-3d;
opacity: 1;
transform-origin: bottom;
transform: scaleY(1);
}
.service-card:hover .service-card__bg {
opacity: 0;
transform: scaleY(0);
}
.service-card__top {
position: relative;
display: flex;
gap: 30px;
margin-bottom: 27px;
z-index: 1;
}
.service-card__image {
width: calc(100% - 100px);
flex-shrink: 0;
}
@media (max-width: 412px) {
.service-card__image {
width: 100%;
}
}
.service-card__image img {
width: 100%;
height: 166px;
object-fit: cover;
display: block;
}
.service-card__icon {
width: 70px;
flex-shrink: 0;
}
@media (max-width: 412px) {
.service-card__icon {
width: 50px;
}
}
.service-card__icon span {
font-size: 70px;
color: var(--floens-base2, #3b2a95);
}
@media (max-width: 412px) {
.service-card__icon span {
font-size: 50px;
}
}
.service-card__content {
position: relative;
z-index: 1;
}
.service-card__title {
font-size: 24px;
line-height: 1;
letter-spacing: -0.72px;
text-transform: capitalize;
margin-bottom: 18px;
}
@media (max-width: 412px) {
.service-card__title {
font-size: 21px;
}
}
.service-card__title a {
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
95%/0px 1px no-repeat;
transition: all 500ms ease;
color: inherit;
}
.service-card__title a:hover {
background-size: 100% 1px;
}
.service-card:hover .service-card__title {
}
.service-card:hover .service-card__title:hover {
color: var(--floens-base, #3b2a95);
}
.service-card__text {
margin-bottom: 31px;
}.service-card-two {
padding: 30px;
position: relative;
overflow: hidden;
background-color: var(--floens-white, #ffffff);
box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 375px) {
.service-card-two {
padding: 20px;
}
}
.service-card-two__bg {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 0;
background-color: var(--floens-black2, #2b1e16);
background-repeat: no-repeat;
background-position: bottom;
background-size: cover;
transition: all 500ms ease;
}
.service-card-two:hover .service-card-two__bg {
top: 0;
height: 100%;
}
.service-card-two__image {
position: relative;
margin-bottom: 27px;
z-index: 1;
overflow: hidden;
}
.service-card-two__image img {
display: block;
width: 100%;
transition: all 500ms ease;
}
.service-card-two:hover .service-card-two__image img {
transform: scale(1.1);
}
.service-card-two__content {
position: relative;
overflow: hidden;
z-index: 1;
}
.service-card-two__title {
font-size: 24px;
line-height: 1;
letter-spacing: -0.72px;
text-transform: capitalize;
margin-bottom: 9px;
}
@media (max-width: 991px) {
.service-card-two__title {
font-size: 22px;
}
}
@media (max-width: 575px) {
.service-card-two__title {
font-size: 20px;
}
}
.service-card-two__title a {
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
95%/0px 1px no-repeat;
transition: all 500ms ease;
color: inherit;
transition: all 500ms ease;
}
.service-card-two__title a:hover {
background-size: 100% 1px;
}
.service-card-two:hover .service-card-two__title {
color: var(--floens-white, #ffffff);
}
.service-card-two__bottom {
display: flex;
align-items: center;
gap: 40px 10px;
flex-wrap: wrap;
justify-content: space-between;
}
.service-card-two__link {
color: var(--floens-base, #3b2a95);
top: 13px;
padding: 0 70px 0 0;
background-color: transparent;
margin-left: -149px;
transition: all 500ms ease;
}
.service-card-two__link:hover {
color: var(--floens-white, #ffffff);
}
@media (max-width: 575px) {
.service-card-two__link {
font-size: 13px;
margin-left: -134px;
}
}
.service-card-two__link::before,
.service-card-two__link::after {
display: none;
}
.service-card-two__link i {
color: var(--floens-base, #3b2a95);
}
.service-card-two__link i::after {
background-color: RGBA(var(--floens-white2-rgb, 242, 238, 234), 0.2);
}
.service-card-two__link:hover i {
color: var(--floens-white, #ffffff);
}
.service-card-two__link:hover i::after {
background-color: RGBA(var(--floens-white2-rgb, 242, 238, 234), 0.7);
}
.service-card-two:hover .service-card-two__link {
margin-left: 0;
}
.service-card-two__icon {
font-size: 50px;
color: var(--floens-base, #3b2a95);
transition: all 500ms ease;
}
@media (max-width: 1199px) {
.service-card-two__icon {
font-size: 40px;
}
}
.service-card-two:hover .service-card-two__icon {
color: var(--floens-white, #ffffff);
}.offer-one {
background-color: var(--floens-white, #ffffff);
counter-reset: offerServiceNumber;
}
.offer-one__top {
padding-bottom: 30px;
margin-bottom: 30px;
border-bottom: 1px solid var(--floens-border-color, #ded8d3);
}
.offer-one .sec-title {
width: 100%;
max-width: 625px;
}
.offer-one__text {
padding-left: 3px;
margin-bottom: 0;
}
.offer-one__main-tab-box {
padding: 30px;
position: relative;
display: grid;
grid-template-columns: 36.4% auto;
align-items: start;
gap: 30px;
background-color: var(--floens-white2, #f2eeea);
}
@media (max-width: 1199px) {
.offer-one__main-tab-box {
grid-template-columns: 40% auto;
}
}
@media (max-width: 991px) {
.offer-one__main-tab-box {
grid-template-columns: auto;
}
}
@media (max-width: 425px) {
.offer-one__main-tab-box {
padding: 20px;
}
}
.offer-one__main-tab-box__bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-repeat: no-repeat;
background-position: top;
background-size: cover;
}
.offer-one__main-tab-box .tab-box-buttons {
position: relative;
z-index: 1;
background-color: var(--floens-white2, #f2eeea);
}
.offer-one__main-tab-box .tab-buttons {
margin: 0;
padding: 0;
list-style: none;
}
.offer-one__main-tab-box .tab-buttons .tab-btn {
position: relative;
padding: 0 30px;
cursor: pointer;
transition: all 500ms ease;
z-index: 1;
}
@media (max-width: 1199px) {
.offer-one__main-tab-box .tab-buttons .tab-btn {
padding: 0 25px;
}
}
@media (max-width: 540px) {
.offer-one__main-tab-box .tab-buttons .tab-btn {
padding: 0 20px;
}
}
.offer-one__main-tab-box .tab-buttons .tab-btn::after {
content: "";
width: 0%;
height: 100%;
position: absolute;
top: 0;
right: 0;
background-color: var(--floens-base, #3b2a95);
z-index: -1;
transition: all 500ms ease;
}
.offer-one__main-tab-box .tab-buttons .tab-btn:hover::after {
left: 0;
width: 100%;
}
.offer-one__main-tab-box
.tab-buttons
.tab-btn:not(:last-child)
.tab-btn__inner {
border-bottom: 1px solid var(--floens-border-color, #ded8d3);
}
.offer-one__main-tab-box .tab-buttons .tab-btn__inner {
width: 100%;
border: 0;
outline: 0;
padding: 18.75px 0 18.75px 40px;
background-color: transparent;
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
position: relative;
font-size: 24px;
color: var(--floens-text, #7a736a);
font-weight: 500;
line-height: 1.66;
text-transform: capitalize;
transition: all 500ms ease;
}
@media (max-width: 1199px) {
.offer-one__main-tab-box .tab-buttons .tab-btn__inner {
padding: 17px 0px 17px 35px;
font-size: 18px;
}
}
@media (max-width: 540px) {
.offer-one__main-tab-box .tab-buttons .tab-btn__inner {
font-size: 16px;
padding-left: 30px;
}
}
.offer-one__main-tab-box .tab-buttons .tab-btn__inner::before {
content: "";
position: absolute;
top: calc(50% - 1px);
left: -30px;
transform: translateY(-50%);
width: 3px;
height: calc(100% - 61px);
background-color: var(--floens-base, #3b2a95);
}
@media (max-width: 1199px) {
.offer-one__main-tab-box .tab-buttons .tab-btn__inner::before {
left: -25px;
height: calc(100% - 51px);
}
}
@media (max-width: 540px) {
.offer-one__main-tab-box .tab-buttons .tab-btn__inner::before {
left: -20px;
height: calc(100% - 49px);
}
}
.offer-one__main-tab-box .tab-buttons .tab-btn__inner::after {
font-size: 16px;
color: var(--floens-gray, #ded8d3);
font-weight: 700;
line-height: 28px;
text-transform: capitalize;
counter-increment: offerServiceNumber;
content: counters(offerServiceNumber, ".", decimal-leading-zero);
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
-webkit-transition: all 500ms ease;
transition: all 500ms ease;
}
@media (max-width: 540px) {
.offer-one__main-tab-box .tab-buttons .tab-btn__inner::after {
font-size: 14px;
}
}
.offer-one__main-tab-box .tab-buttons .tab-btn:hover .tab-btn__inner {
color: var(--floens-white, #ffffff);
border-color: var(--floens-base, #3b2a95);
}
.offer-one__main-tab-box .tab-buttons .tab-btn:hover .tab-btn__inner::after {
color: var(--floens-white, #ffffff);
}
.offer-one__main-tab-box .tab-buttons .tab-btn__icon {
font-size: 28.66px;
color: var(--floens-gray, #ded8d3);
transition: all 500ms ease;
}
@media (max-width: 1199px) {
.offer-one__main-tab-box .tab-buttons .tab-btn__icon {
font-size: 24px;
}
}
@media (max-width: 540px) {
.offer-one__main-tab-box .tab-buttons .tab-btn__icon {
font-size: 20px;
}
}
.offer-one__main-tab-box .tab-buttons .tab-btn:hover .tab-btn__icon {
color: var(--floens-white, #ffffff);
}
.offer-one__main-tab-box .tab-buttons .tab-btn.active-btn {
background-color: var(--floens-base, #3b2a95);
}
.offer-one__main-tab-box .tab-buttons .tab-btn.active-btn .tab-btn__inner {
color: var(--floens-white, #ffffff);
border-color: var(--floens-base, #3b2a95);
}
.offer-one__main-tab-box
.tab-buttons
.tab-btn.active-btn
.tab-btn__inner::after {
color: var(--floens-white, #ffffff);
}
.offer-one__main-tab-box .tab-buttons .tab-btn.active-btn .tab-btn__icon {
color: var(--floens-white, #ffffff);
}
.offer-one__main-tab-box .tabs-content {
position: relative;
display: block;
z-index: 1;
}
.offer-one__main-tab-box .tabs-content .tab {
position: relative;
display: none;
-webkit-transition: all 600ms ease;
-moz-transition: all 600ms ease;
-ms-transition: all 600ms ease;
-o-transition: all 600ms ease;
transition: all 600ms ease;
z-index: 10;
}
.offer-one__main-tab-box .tabs-content .tab.active-tab {
display: block;
/*! margin-top: 0px; */
}
.offer-one__service {
padding: 25px;
display: flex;
align-items: center;
gap: 30px 17px;
background-color: RGBA(var(--floens-white-rgb, 255, 255, 255), 0.92);
}
@media (max-width: 1199px) {
.offer-one__service {
flex-direction: column;
align-items: flex-start;
}
}
.offer-one__service__image {
position: relative;
flex-shrink: 0;
width: 38.7%;
}
@media (max-width: 1199px) {
.offer-one__service__image {
width: 100%;
}
}
.offer-one__service__image img {
width: 100%;
display: block;
clip-path: polygon(30% 0, 100% 0%, 67% 100%, 0% 100%);
}
.offer-one__service__shape {
position: absolute;
width: 55px;
height: 44px;
background-color: var(--floens-base, #3b2a95);
clip-path: polygon(31% 0, 100% 0%, 69% 100%, 0% 100%);
}
.offer-one__service__shape--one {
top: 26px;
left: 54px;
animation: rectMove 8s linear 0s infinite;
}
@media (max-width: 1199px) {
.offer-one__service__shape--one {
left: 85px;
}
}
@media (max-width: 991px) {
.offer-one__service__shape--one {
left: 130px;
}
}
@media (max-width: 767px) {
.offer-one__service__shape--one {
left: 77px;
}
}
@media (max-width: 575px) {
.offer-one__service__shape--one {
display: none;
}
}
.offer-one__service__shape--two {
right: 63px;
bottom: 23px;
animation: rectMove 8s linear 2s infinite;
}
@media (max-width: 1199px) {
.offer-one__service__shape--two {
right: 97px;
}
}
@media (max-width: 991px) {
.offer-one__service__shape--two {
right: 140px;
}
}
@media (max-width: 767px) {
.offer-one__service__shape--two {
right: 83px;
}
}
@media (max-width: 575px) {
.offer-one__service__shape--two {
display: none;
}
}
.offer-one__service__content {
position: relative;
top: -3px;
flex-grow: 1;
}
@media (max-width: 1199px) {
.offer-one__service__content {
top: 0;
width: 100%;
}
}
.offer-one__service__title {
font-size: 24px;
line-height: 1.66;
text-transform: capitalize;
margin-bottom: 0;
}
@media (max-width: 425px) {
.offer-one__service__title {
font-size: 20px;
}
}
.offer-one__service__text {
margin-bottom: 16px;
}
@media (max-width: 425px) {
.offer-one__service__text {
font-size: 15px;
}
}
.offer-one__service__list {
margin: 0;
padding: 0;
list-style: none;
}
.offer-one__service__list li + li {
margin-top: 8px;
}
.offer-one__service__list li {
display: flex;
align-items: center;
gap: 11px;
font-size: 16px;
color: var(--floens-black2, #2b1e16);
font-weight: 700;
line-height: 1.75;
text-transform: capitalize;
}
@media (max-width: 425px) {
.offer-one__service__list li {
gap: 8px;
font-size: 14px;
}
}
.offer-one__service__list li span {
position: relative;
top: -1px;
font-size: 16px;
color: var(--floens-base2, #3b2a95);
}/**/.projects-one {
padding-top: 100px;
padding-bottom: 100px;
position: relative;
background-color: var(--floens-white2, #f2eeea);
overflow: hidden;
background: white;
}
@media (max-width: 1399px) {
.projects-one {
padding-top: 204px;
padding-bottom: 204px;
}
}
@media (max-width: 1299px) {
.projects-one {
padding-top: 120px;
padding-bottom: 120px;
}
}
@media (max-width: 767px) {
.projects-one {
padding-top: 100px;
padding-bottom: 100px;
}
}
@media (max-width: 575px) {
.projects-one {
padding-top: 40px;
padding-bottom: 50px;
}
}
.projects-one__bg {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-repeat: no-repeat;
background-position: top;
background-size: cover;
mix-blend-mode: luminosity;
}
.projects-one .container {
position: relative;
z-index: 1;
}
@media (min-width: 530px) {
.projects-one__container {
padding-left: 0;
padding-right: 0;
}
}
.projects-one__carousel {
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
width: calc(50% - -55px);
z-index: 11;
}
@media (max-width: 1299px) {
.projects-one__carousel {
width: 100%;
position: static;
transform: translateY(0);
}
}
.projects-one__carousel .owl-item {
direction: ltr;
}
.projects-one__carousel .owl-nav {
direction: ltr;
}
@media (min-width: 1300px) {
.projects-one__carousel .owl-nav {
position: absolute;
right: -195px;
bottom: 94px;
margin-top: 0 !important;
}
}
.projects-one__carousel .owl-nav button span {
background-color: var(--floens-white, #ffffff) !important;
}
.projects-one__carousel .owl-nav button span:hover {
background-color: var(--floens-base2, #3b2a95) !important;
color: var(--floens-white, #ffffff) !important;
}
.projects-one__carousel .owl-nav.disabled + .owl-dots {
margin-top: 0px;
}
@media (max-width: 1299px) {
.projects-one__content-col {
margin-top: 0px;
}
}
@media (min-width: 1300px) {
.projects-one__content-col {
margin-left: auto;
}
}
.projects-one__content {
margin-top: -6px;
}
.projects-one .sec-title {
margin-bottom: 22px;
}
.projects-one__text {
margin-bottom: 40px;
}
@media (min-width: 1300px) {
.projects-one__button {
}
}
.projects-one__shape {
position: absolute;
right: -186px;
bottom: 0;
clip-path: polygon(30% 0, 100% 0%, 68% 100%, 0% 100%);
animation: zumpBottom 3s linear infinite;
}
@media (max-width: 1600px) {
.projects-one__shape {
right: -230px;
}
}
@media (max-width: 1499px) {
.projects-one__shape {
right: -270px;
}
}
@media (max-width: 1399px) {
.projects-one__shape {
display: none;
}
}.project-card {
position: relative;
overflow: hidden;
}
.project-card__image {
display: block;
position: relative;
overflow: hidden;
}
.project-card__image img {
width: 100% !important;
display: block !important;
}
.project-card__tagline {
padding: 8px 10px 6px;
position: relative;
position: absolute;
top: 30px;
left: 30px;
font-size: 14px;
color: var(--floens-base2, #3b2a95);
line-height: 1.14;
text-transform: uppercase;
margin-bottom: 0;
background-color: var(--floens-white, #ffffff);
overflow: hidden;
z-index: 1;
opacity: 0;
transform: translateX(-700px) scale(0.1) skewX(95deg);
transition:
500ms ease,
opacity 0s,
transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
display: none;
}
.project-card__tagline::after {
content: "";
z-index: -1;
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
width: 150%;
height: 150%;
background-color: var(--floens-base, #3b2a95);
transition-duration: 800ms;
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.project-card__tagline:hover {
color: var(--floens-white, #ffffff);
}
.project-card__tagline:hover::after {
bottom: -50%;
}
.project-card:hover .project-card__tagline {
opacity: 1;
transform: translateX(0px) scale(1) skewX(0deg);
}
.project-card__links {
width: calc(100% - 60px);
position: absolute;
left: 30px;
bottom: 30px;
opacity: 1;
display: none;
}
@media (max-width: 1599px) {
.project-card__links {
left: 25px;
width: calc(100% - 50px);
}
}
.project-card__links__inner {
position: relative;
padding: 25.04px 100px 24px 30px;
display: flex;
align-items: center;
background-color: var(--floens-white, #ffffff);
}
@media (max-width: 1599px) {
.project-card__links__inner {
padding: 10px 90px 10px 20px;
}
}
.project-card--large .project-card__links {
width: calc(100% - 290px);
}
@media (max-width: 1599px) {
.project-card--large .project-card__links {
width: calc(100% - 300px);
}
}
.project-card:hover .project-card__links {
opacity: 1;
transform: translateY(0px);
}
.project-card__title {
font-size: 19px;
line-height: 1.166;
text-transform: capitalize;
margin-bottom: 0;
margin-top: 0;
}
.project-card__title a {
color: inherit;
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
95%/0px 1px no-repeat;
transition: all 500ms ease;
}
.project-card__title a:hover {
background-size: 100% 1px;
}
.project-card__title:hover {
color: var(--floens-base, #3b2a95);
}
@media (max-width: 1599px) {
.project-card__title {
font-size: 19px;
}
}
@media (max-width: 991px) {
.project-card__title {
font-size: 20px;
}
}
@media (max-width: 575px) {
.project-card__title {
font-size: 18px;
}
}
@media (max-width: 430px) {
.project-card__title {
font-size: 16px;
}
}
.project-card__link {
padding: 0;
position: absolute;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
width: 77px;
height: 100%;
background-color: var(--floens-base, #3b2a95);
font-size: 38.66px;
color: var(--floens-white, #ffffff);
}
@media (max-width: 1599px) {
.project-card__link {
width: 67px;
font-size: 32px;
}
}/**/.reliable-one {
position: relative;
z-index: 1;
background-color: var(--floens-white, #ffffff);
padding-top: 221px;
}
@media (max-width: 767px) {
.reliable-one {
padding-top: 201px;
}
}
@media (max-width: 575px) {
.reliable-one {
padding-top: 181px;
}
}
@media (max-width: 490px) {
.reliable-one {
padding-top: 151px;
}
}
.reliable-one__image {
position: relative;
width: 100%;
}
@media (max-width: 991px) {
.reliable-one__image {
margin-left: 40px;
}
}
@media (max-width: 490px) {
.reliable-one__image {
max-width: 280px;
}
}
@media (max-width: 375px) {
.reliable-one__image {
margin-left: 15px;
}
}
@media (max-width: 360px) {
.reliable-one__image {
max-width: 245px;
}
}
.reliable-one__image::before,
.reliable-one__image::after {
content: "";
width: 100%;
height: 100%;
position: absolute;
border: 1px solid var(--floens-border-color, #ded8d3);
}
@media (max-width: 490px) {
.reliable-one__image::before,
.reliable-one__image::after {
display: none;
}
}
.reliable-one__image::before {
top: -64px;
right: -99px;
}
@media (max-width: 1199px) {
.reliable-one__image::before {
right: -19px;
}
}
.reliable-one__image::after {
top: -34px;
right: -129px;
}
@media (max-width: 1199px) {
.reliable-one__image::after {
right: -49px;
}
}
.reliable-one__image img {
position: relative;
width: 87% !important;
display: block;
z-index: 1;
height: 450px;
object-fit: cover;
}.reliable-one__image::before {
content: "";
position: absolute;
bottom: -20px;
left: -20px;
width: 40%;
height: 40%;
background: #3b2a95;
border: 1px solid #f0f0f0;
z-index: 1;
transition:
width 1s cubic-bezier(0.4, 0, 0.2, 1),
height 1s cubic-bezier(0.4, 0, 0.2, 1);
}.reliable-one__image__inner {
position: relative;
position: absolute;
top: -101px;
right: -170px;
width: 100%;
max-width: 276px;
}
@media (max-width: 1199px) {
.reliable-one__image__inner {
right: -55px;
}
}
@media (max-width: 490px) {
.reliable-one__image__inner {
max-width: 240px;
right: -45px;
}
}
@media (max-width: 425px) {
.reliable-one__image__inner {
max-width: 215px;
top: -70px;
right: -25px;
}
}
.reliable-one__image__three {
width: auto !important;
position: absolute !important;
left: -48px;
bottom: 0;
}
@media (max-width: 1199px) {
.reliable-one__image__three {
left: -50px;
}
}
@media (max-width: 490px) {
.reliable-one__image__three {
width: 330px !important;
}
}
@media (max-width: 425px) {
.reliable-one__image__three {
width: 260px !important;
left: -35px;
}
}
.reliable-one__experience {
left: -61px;
bottom: 29px;
}
@media (max-width: 1399px) {
.reliable-one__experience {
left: -30px;
}
}
@media (max-width: 1199px) {
.reliable-one__experience {
left: -40px;
}
}
@media (max-width: 375px) {
.reliable-one__experience {
left: -20px;
}
}
.reliable-one__content {
margin-top: -14px;
padding-left: 28px;
}
@media (max-width: 1199px) {
.reliable-one__content {
padding-left: 15px;
}
}
@media (max-width: 991px) {
.reliable-one__content {
margin-top: 0;
padding-left: 0px;
}
}
.reliable-one .sec-title {
margin-bottom: 22px;
}
.reliable-one__text {
margin-bottom: 34px;
}
.reliable-one__info {
display: flex;
align-items: center;
gap: 22px;
}
.reliable-one__info__icon {
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
width: 70px;
height: 70px;
background-color: var(--floens-white2, #f3f4fafc);
border-radius: 50%;
overflow: hidden;
z-index: 1;
}.reliable-one__info__icon svg {
width: 30px;
height: auto;
overflow: inherit;
fill: var(--floens-base, #3b2a95);
}.reliable-one__info:hover svg {
fill: white;
}.reliable-one__info__icon::after {
content: "";
z-index: -1;
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
width: 150%;
height: 150%;
background-color: var(--floens-base, #3b2a95);
transition-duration: 900ms;
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
border-radius: 50%;
}
.reliable-one__info__icon span {
font-size: 35px;
color: var(--floens-base2, #3b2a95);
transition: all 500ms ease;
}
.reliable-one__info:hover .reliable-one__info__icon::after {
bottom: -50%;
}
.reliable-one__info:hover .reliable-one__info__icon span {
color: var(--floens-white, #ffffff);
-webkit-animation-name: wobble-horizontal-hover;
animation-name: wobble-horizontal-hover;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}
.reliable-one__info__title {
font-size: 16px;
font-weight: 500;
line-height: 1.75;
letter-spacing: -0.32px;
text-transform: capitalize;
margin-bottom: 0;
margin-left: 8px;
}
@media (max-width: 1199px) {
.reliable-one__info__title {
margin-left: 0;
}
}
.reliable-one__info__total {
font-size: 45px;
color: var(--floens-base2, #3b2a95);
line-height: 1;
text-transform: capitalize;
margin-bottom: 0;
margin-top: 0;
}
@media (max-width: 1199px) {
.reliable-one__info__total {
font-size: 40px;
}
}
.reliable-one__ratings {
position: relative;
top: -6px;
padding-left: 21px;
}
@media (max-width: 767px) {
.reliable-one__ratings {
padding-left: 10px;
}
}
@media (max-width: 575px) {
.reliable-one__ratings {
top: 0;
padding-left: 10px;
}
}
.reliable-one__ratings::before {
content: "";
width: 1px;
height: calc(100% + 11px);
background-color: var(--floens-gray, #ded8d3);
position: absolute;
top: calc(50% + 6px);
left: -11px;
transform: translateY(-50%);
}
@media (max-width: 1199px) {
.reliable-one__ratings::before {
left: -2px;
}
}
@media (max-width: 991px) {
.reliable-one__ratings::before {
left: -9.5px;
}
}
@media (max-width: 767px) {
.reliable-one__ratings::before {
left: -30.5px;
}
}
@media (max-width: 575px) {
.reliable-one__ratings::before {
display: none;
}
}
.reliable-one__ratings__title {
font-size: 16px;
font-weight: 500;
line-height: 1.875;
letter-spacing: -0.32px;
text-transform: capitalize;
margin-bottom: 10px;
}
.reliable-one__ratings .floens-ratings span {
font-size: 14.21px;
color: var(--floens-base2, #3b2a95);
}
.reliable-one--home {
padding-top: 100px;
padding-bottom: 100px;
}
@media (max-width: 991px) {
.reliable-one--home {
padding-top: 122px;
}
}
@media (max-width: 767px) {
.reliable-one--home {
padding-top: 93px;
}
}
@media (max-width: 575px) {
.reliable-one--home {
padding-top: 30px;
padding-bottom: 60px;
}.reliable-one__info {
display: none;
}
}
@media (max-width: 490px) {
.reliable-one--home-three {
padding-top: 181px;
}
}
@media (max-width: 425px) {
.reliable-one--home-three {
padding-top: 280px;
}
}
.reliable-one--home .reliable-one__content {
margin-top: 0px;
padding-left: 0;
}
@media (max-width: 991px) {
.reliable-one--home .reliable-one__content {
margin-top: 0;
}
}
.reliable-one--home .reliable-one__info--two {
padding-left: 9px;
position: relative;
}
@media (max-width: 1199px) {
.reliable-one--home .reliable-one__info--two {
padding-left: 0;
}
}
.reliable-one--home .reliable-one__info--two::before {
content: "";
width: 1px;
height: 65px;
background-color: var(--floens-gray, #ded8d3);
position: absolute;
top: 50%;
left: -21px;
transform: translateY(-50%);
}
@media (max-width: 1199px) {
.reliable-one--home .reliable-one__info--two::before {
display: none;
}
}
.reliable-one--home .reliable-one__info__title {
letter-spacing: normal;
}
.reliable-one--home .reliable-one__btn {
margin-top: 43px;
}.reliable-one--home .reliable-one__image {
}@media (max-width: 991px) {
.reliable-one--home .reliable-one__image {
margin-top: 90px;
margin-left: 0px;
}
}
@media (max-width: 520px) {
.reliable-one--home .reliable-one__image {
margin-left: 20px;
}
}
@media (max-width: 375px) {
.reliable-one--home .reliable-one__image {
margin-top: 80px;
}
}
.reliable-one--home .reliable-one__image::before,
.reliable-one--home .reliable-one__image::after {
display: none;
}
.reliable-one--home .reliable-one__image__inner {
top: -87px;
right: -200px;
}
@media (max-width: 1199px) {
.reliable-one--home .reliable-one__image__inner {
top: -70px;
right: -80px;
}
}
@media (max-width: 490px) {
.reliable-one--home .reliable-one__image__inner {
max-width: 240px;
}
}
@media (max-width: 425px) {
.reliable-one--home .reliable-one__image__inner {
max-width: 215px;
right: -45px;
}
}
@media (max-width: 375px) {
.reliable-one--home .reliable-one__image__inner {
max-width: 190px;
right: -30px;
}
}
@media (max-width: 360px) {
.reliable-one--home .reliable-one__image__inner {
right: -25px;
}
}
.reliable-one--home .reliable-one__experience {
left: auto;
right: 65px;
bottom: 115px;
}
@media (max-width: 1199px) {
.reliable-one--home .reliable-one__experience {
right: -80px;
}
}
@media (max-width: 991px) {
.reliable-one--home .reliable-one__experience {
right: -135px;
}
}
@media (max-width: 520px) {
.reliable-one--home .reliable-one__experience {
left: -20px;
right: auto;
display: none;
}
}.experience {
position: absolute;
min-width: 202px;
padding: 10px;
background-color: var(--floens-white, #ffffff);
filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.15));
z-index: 1;
animation: zump 3s linear infinite;
}
@media (max-width: 575px) {
.experience {
min-width: 175px;
}
}
.experience__inner {
display: flex;
align-items: center;
background-color: var(--floens-base, #3b2a95);
}
.experience__year {
padding: 24px 20.5px;
height: 100%;
text-align: center;
font-size: 25px;
color: var(--floens-white, #ffffff);
text-transform: capitalize;
background-repeat: no-repeat;
background-position: top;
background-size: cover;
margin-bottom: 0;
margin-top: 0;
}
@media (max-width: 575px) {
.experience__year {
padding-top: 22px;
padding-bottom: 22px;
font-size: 45px;
}
}
.experience__text {
transform: rotate(180deg);
padding: 9px 0;
font-size: 16px;
color: var(--floens-white, #ffffff);
font-weight: 700;
line-height: 1.5;
text-transform: uppercase;
margin-bottom: 0;
writing-mode: vertical-rl;
}
@media (max-width: 575px) {
.experience__text {
font-size: 13px;
}
}
.experience__text br {
display: inline;
}.evaluation-schedule {
padding-top: 115px;
padding-bottom: 115px;
position: relative;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
overflow: hidden;
}
@media (max-width: 767px) {
.evaluation-schedule {
padding-top: 96px;
}
}
@media (max-width: 575px) {
.evaluation-schedule {
padding-top: 75px;
padding-bottom: 85px;
padding-right: 30px;
padding-left: 30px;
}
}
.evaluation-schedule::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #3b2a95cf;
}
.evaluation-schedule .container-fluid {
position: relative;
z-index: 1;
max-width: 1776px;
}
.evaluation-schedule__content {
text-align: center;
width: 100%;
max-width: 980px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 1199px) {
.evaluation-schedule__content {
max-width: 700px;
margin-bottom: 80px;
}
}
@media (max-width: 991px) {
.evaluation-schedule__content {
max-width: 650px;
}
}
@media (max-width: 767px) {
.evaluation-schedule__content {
max-width: 550px;
}
}
@media (max-width: 575px) {
.evaluation-schedule__content {
margin-bottom: 0px;
}
}
.evaluation-schedule__tagline {
font-size: 16px;
color: var(--floens-white, #ffffff);
line-height: normal;
letter-spacing: 3.2px;
text-transform: uppercase;
margin-bottom: 20px;
}
@media (max-width: 575px) {
.evaluation-schedule__tagline {
font-size: 14px;
}
}
.evaluation-schedule__title {
font-size: 50px;
color: var(--floens-white, #ffffff);
letter-spacing: 0.7px;
text-transform: capitalize;
margin-bottom: 23px;
line-height: 65px;
margin-top: 0;
}
@media (max-width: 1399px) {
.evaluation-schedule__title {
font-size: 55px;
}
}
@media (max-width: 1199px) {
.evaluation-schedule__title {
font-size: 50px;
}
}
@media (max-width: 991px) {
.evaluation-schedule__title {
font-size: 45px;
}
}
@media (max-width: 767px) {
.evaluation-schedule__title {
font-size: 40px;
}
}
@media (max-width: 575px) {
.evaluation-schedule__title {
font-size: 35px;
line-height: 40px;
}
}
.evaluation-schedule__btn {
background-color: black;
}
@media (max-width: 412px) {
.evaluation-schedule__btn {
font-size: 12px;
}
}.team-two {
position: relative;
background-color: var(--floens-white2, #f2eeea);
}
.team-two__bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-repeat: no-repeat;
background-position: top;
background-size: cover;
mix-blend-mode: luminosity;
}.team-two__bg::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: #000;
opacity: 50%;
}.team-two .container {
position: relative;
z-index: 1;
}
.team-two__top {
padding-bottom: 29px;
margin-bottom: 60px;
border-bottom: 1px solid var(--floens-border-color, #ded8d3);
}
.team-two__top__right {
position: relative;
top: 5px;
width: 100%;
max-width: 473px;
margin-left: auto;
}
@media (max-width: 991px) {
.team-two__top__right {
top: 0;
margin-left: 0;
}
}
.team-two__top__text {
line-height: 1.875;
margin-bottom: 0;
}
.team-two__item {
position: relative;
margin-right: 70px;
}.team-two__item p {
margin-top: 20px;
font-size: 14px;
opacity: 70%;
}@media (max-width: 1199px) {
.team-two__item {
margin-right: 50px;
}
}
@media (max-width: 767px) {
.team-two__item {
margin-right: 0px;
}
}
.team-two__item:not(:last-child) {
margin-bottom: 26px;
}
@media (max-width: 767px) {
.team-two__item:not(:last-child) {
margin-bottom: 35px;
}
}
.team-two__item .row {
position: relative;
z-index: 1;
}
@media (min-width: 768px) {
.team-two__img-col {
display: none;
}
}
.team-two__img img {
width: 100%;
display: block;
}
.team-two__name {
font-size: 35px;
line-height: 1;
text-transform: capitalize;
margin-bottom: 5px;
margin-top: 0;
}
@media (max-width: 1399px) {
.team-two__name {
font-size: 28px;
}
}
@media (max-width: 1199px) {
.team-two__name {
font-size: 25px;
}
}
@media (max-width: 991px) {
.team-two__name {
font-size: 23px;
}
}
@media (max-width: 430px) {
.team-two__name {
font-size: 22px;
}
}
.team-two__name:hover {
color: var(--floens-base, #3b2a95);
}
.team-two__name a {
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
95%/0px 1px no-repeat;
transition: all 500ms ease;
color: #3b2a95;
}
.team-two__name a:hover {
background-size: 100% 1px;
}
.team-two__designation {
font-size: 14px;
color: var(--floens-base, #3b2a95);
font-weight: 600;
line-height: normal;
text-transform: uppercase;
margin-bottom: 20px;
display: inline-block;
color: white;
}
.team-two__social {
position: relative;
width: 36px;
height: 36px;
cursor: pointer;
margin-left: auto;
}
@media (max-width: 991px) {
.team-two__social {
margin-left: 0;
}
}
.team-two__social__share {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background-color: var(--floens-white, #ffffff);
font-size: 14px;
color: var(--floens-text, #7a736a);
z-index: 1;
overflow: hidden;
transition: all 400ms ease;
}
.team-two__social__share::after {
content: "";
z-index: -1;
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
width: 150%;
height: 150%;
background-color: var(--floens-base2, #3b2a95);
transition-duration: 800ms;
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.team-two__social:hover .team-two__social__share {
color: var(--floens-white, #ffffff);
}
.team-two__social:hover .team-two__social__share::after {
bottom: -50%;
}
.team-two__social__list {
position: absolute;
top: 50%;
right: 100%;
transform: translateY(-50%) scale(0, 1);
display: flex;
align-items: center;
gap: 12px;
margin: 0;
opacity: 0;
transition: 500ms ease;
transform-origin: top right;
}
@media (max-width: 1199px) {
.team-two__social__list {
gap: 10px;
}
}
@media (max-width: 991px) {
.team-two__social__list {
right: auto;
left: 100%;
transform-origin: top left;
}
}
.team-two__social__list a {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
color: var(--floens-text, #7a736a);
font-size: 14px;
border: 1px solid var(--floens-border-color, #ded8d3);
overflow: hidden;
z-index: 1;
transition: all 500ms ease;
}
@media (max-width: 991px) {
.team-two__social__list a:first-child {
margin-left: 10px;
}
}
.team-two__social__list a:last-child {
margin-right: 12px;
}
@media (max-width: 1199px) {
.team-two__social__list a:last-child {
margin-right: 10px;
}
}
@media (max-width: 991px) {
.team-two__social__list a:last-child {
margin-right: 0;
}
}
.team-two__social__list a::after {
content: "";
z-index: -1;
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
width: 150%;
height: 150%;
background-color: var(--floens-base, #3b2a95);
transition-duration: 800ms;
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.team-two__social__list a:hover {
color: var(--floens-white, #ffffff);
border-color: var(--floens-base, #3b2a95);
}
.team-two__social__list a:hover::after {
bottom: -50%;
}
.team-two__social:hover .team-two__social__list {
opacity: 1;
transform: translateY(-50%) scale(1, 1);
}
@media (max-width: 767px) {
.team-two__images-col {
display: none;
}
}
.team-two__images {
margin-top: 1px;
position: relative;
width: 100%;
max-width: 100%;
min-height: 460px !important;
border: solid 6px white;
border-radius: 5px;
}.team-two__images iframe {
width: 100%;
height: 100%;
}@media (max-width: 767px) {
.team-two__images {
display: none;
}
}
.team-two__image {
width: 100%;
height: 100%;
position: relative;
position: absolute;
top: 0;
left: 0;
transform: scale(0.5);
opacity: 0;
transition: all 500ms ease;
}
.team-two__image.active {
opacity: 1;
transform: scale(1);
}
.team-two__image__inner {
position: relative;
}
.team-two__image__inner::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--floens-base, #3b2a95);
transform: rotate(-9.5deg);
}
.team-two__image img {
position: relative;
display: block;
width: 100%;
z-index: 1;
}/* --- MOBİL ŞIKLAŞTIRMA AYARLARI --- */@media (max-width: 991px) {
/* Slider Alanı İyileştirme */
.slider-container {
height: 60vh; /* Mobilde çok uzun olmasın */
}.slide-grid {
display: flex;
flex-direction: column;
justify-content: center;
padding: 20px;
height: 100%;
}.slide-text {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px); /* Modern buzlu cam efekti */
padding: 30px 20px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(255, 255, 255, 0.3);
display: none;
}.title {
font-size: 32px !important;
margin-bottom: 15px;
font-weight: 800;
color: #1f1f1f;
}.description {
font-size: 12px;
line-height: 1.6;
margin-bottom: 25px !important;
}/* Navigasyon Butonlarını Daha Zarif Yap */
.slider-btn {
width: 45px !important;
height: 45px !important;
bottom: 20px !important;
border-radius: 50%; /* Yuvarlak daha şık durur */
}.prev-btn {
right: 75px !important;
}
.next-btn {
right: 20px !important;
}/* Hakkımızda & Reliable Bölümü */
.about-one__image-grid,
.reliable-one__image {
display: none; /* Mobilde karmaşayı önlemek için */
}.about-one__content,
.reliable-one__content {
padding: 0 15px;
text-align: center;
}.sec-title {
flex-direction: column;
align-items: center;
text-align: center;
gap: 10px;
}.sec-title__tagline {
writing-mode: horizontal-tb;
transform: rotate(0deg);
top: 0;
margin-bottom: 10px;
}.sec-title__tagline::before,
.sec-title__tagline::after {
display: none; /* Mobilde çizgileri temizle */
}/* Hizmet Kartları Grid Yapısı (2'li yan yana mobilde daha iyi durabilir) */
.service-card-two {
margin-bottom: 20px;
border-radius: 12px;
}/* Team Bölümü - Mobilde İsimleri Öne Çıkar */
.team-two__item {
margin-right: 0;
text-align: center;
padding: 25px 15px;
background: #fff;
border-radius: 10px;
border-bottom: none;
margin-bottom: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}.team-two__designation {
color: #3b2a95;
background: #f2eee9;
padding: 4px 12px;
border-radius: 4px;
font-size: 12px;
}/* Alt Başlıklar */
.sec-title__title {
font-size: 28px !important;
letter-spacing: -0.5px;
margin-bottom: 20px;
}
}.floens-btn svg {
width: 20px;
height: auto;
overflow: inherit;
fill: #fff;
margin-left: 0;
}@media (max-width: 575px) {
/* Butonları Tam Genişlik Yap (Opsiyonel - Daha kolay tıklanır) */
.floens-btn {
width: 100%;
justify-content: center;
padding: 16px 20px;
border-radius: 8px;
}/* Section Boşluklarını Mobilde Daralt (Daha kompakt görünüm) */
.section-space,
.section-space-two {
padding-top: 60px !important;
padding-bottom: 60px !important;
}/* Ürün Listeleme Resimleri */
.image-container {
border-radius: 10px;
border: solid 4px white;
}/* Tab Butonları (Offer Section) */
.offer-one__main-tab-box .tab-buttons .tab-btn__inner {
font-size: 15px;
padding: 12px 0 12px 35px;
}
}/* Dokunmatik Ekranlar İçin Hover İyileştirmesi */
@media (hover: none) {
.page-urunler-listele-resimler:active {
transform: scale(0.98);
}.zoom {
opacity: 1 !important; /* Mobilde zoom ikonu hep görünsün */
background: rgba(0, 0, 0, 0.2) !important;
}
}@media (max-width: 1024px) {
.projects-one__container {
display: none;
}.offer-one__text {
text-align: center;
}.reliable-one--home .reliable-one__content {
padding: 0;
}.reliable-one__text {
margin-bottom: 0px;
}.slide-grid {
margin-top: 40px;
}.section-space,
.section-space-two {
display: none;
}
}.kategoriSwiper {
padding-bottom: 50px !important;
}/* Noktaların genel (pasif) stili */
.kategoriSwiper .swiper-pagination-bullet {
width: 10px;
height: 10px;
background-color: #c4c4c4; /* Pasif nokta rengi (Gri) */
opacity: 1;
border-radius: 50%;
transition: all 0.4s ease-in-out; /* Yumuşak geçiş animasyonu */
margin: 0 5px !important;
}/* Aktif (Seçili) noktanın stili */
.kategoriSwiper .swiper-pagination-bullet-active {
width: 30px; /* Aktifken uzar (hap görünümü) */
border-radius: 10px;
background-color: #0ca3ce; /* BURAYI SİTENİZİN ANA RENGİ İLE DEĞİŞTİREBİLİRSİNİZ */
}/* Ana Kutu (Arka plan tamamen kaldırıldı) */
.home-iletisim {
background: transparent;
color: #ffffff;
width: 100%;
max-width: 650px; /* Yan yana sığması için genişletildi */
}/* İletişim Detayları Alanı */
.home-iletisim .iletisim-detaylari {
display: flex;
flex-direction: column;
gap: 15px; /* Satırlar arası boşluk */
margin-bottom: 40px;
margin-top: 40px;
}/* Telefon ve Maili Yan Yana Tutan Alan */
.home-iletisim .iletisim-yan-yana {
display: flex;
flex-wrap: wrap; /* Küçük ekranlarda alt alta düşmesini sağlar */
gap: 30px; /* Telefon ve mail arasındaki boşluk */
}/* Standart İletişim Satırı */
.home-iletisim .iletisim-satiri {
display: flex;
align-items: center;
gap: 15px; /* İkon ile metin arası boşluk */
}/* Adres satırı metni üstten hizalamak için (çift satır olduğu için) */
.home-iletisim .adres-satiri {
align-items: flex-start;
}/* İkon Kutusu */
.home-iletisim .ikon-kutu {
background-color: rgba(
255,
255,
255,
0.1
); /* Çok hafif şık bir transparanlık */
padding: 10px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
transition:
transform 0.3s ease,
background-color 0.3s ease;
}/* Hover'da ikon hafif zıplasın ve parlaklığı artsın */
.home-iletisim .iletisim-satiri:hover .ikon-kutu {
transform: translateY(-3px);
background-color: rgba(255, 255, 255, 0.2);
}.home-iletisim .ikon-kutu svg {
width: 22px;
height: 22px;
color: #ffffff;
}/* Metin Ayarları */
.home-iletisim .metin {
display: flex;
align-items: center;
}/* Adres metninin yüksekliği ikon kutusuyla dengelensin */
.home-iletisim .adres-satiri .metin {
min-height: 42px;
}.home-iletisim .metin span,
.home-iletisim .metin a {
color: rgba(255, 255, 255, 0.9); /* Göz yormayan, neredeyse tam beyaz */
font-size: 15px;
line-height: 1.6;
text-decoration: none;
transition: color 0.3s ease;
}/* Link Hover */
.home-iletisim .metin a:hover {
color: #ffffff;
text-decoration: underline; /* Tıklanabilir olduğu belli olsun */
}/* --- Sosyal Medya Alanı --- */
.home-iletisim .sosyal-medya-alani {
border-top: 1px solid rgba(255, 255, 255, 0.2); /* Ayrıştırıcı ince çizgi */
padding-top: 20px;
padding-bottom: 20px;
align-items: center;
}
.home-iletisim .sosyal-medya-alani .projects-one__btn{
margin-left: 15px;
}.home-iletisim .sosyal-medya-alani h3 {
font-size: 18px;
font-weight: 500;
margin: 0 20px 0px 0;
color: #ffffff;
letter-spacing: 0.5px;
}/* Sosyal İkon Kutuları */
.home-iletisim .sosyal-ikonlar {
display: flex;
gap: 15px;
}.home-iletisim .sosyal-ikonlar li {
list-style: none;
}.home-iletisim .sosyal-ikonlar a {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border-radius: 50%; /* Tam yuvarlak */
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
text-decoration: none;
transition: all 0.3s ease;
}.home-iletisim .sosyal-ikonlar a svg {
width: 20px;
height: 20px;
fill: #fff;
}/* Sosyal İkon Hover Efekti (Zıt Renk Geçişi) */
.home-iletisim .sosyal-ikonlar a:hover {
background-color: #ffffff;
color: #000000; /* İkon rengi siyaha döner (şık bir kontrast) */
transform: translateY(-5px); /* Biraz yukarı zıplar */
box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3); /* Etrafına beyaz parlama verir */
}.home-iletisim .sosyal-ikonlar a:hover svg {
fill: #000000; /* İkon rengi siyaha döner (şık bir kontrast) */
}