/* Regular */
@font-face {
	font-family: 'Almoni Tzar ML v5 AAA';
    src: url('../fonts/almoni-tzar-regular-aaa.woff2') format('woff2'),
         url('../fonts/almoni-tzar-regular-aaa.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* DemiBold */
@font-face {
	font-family: 'Almoni Tzar ML v5 AAA';
    src: url('../fonts/almoni-tzar-demibold-aaa.woff2') format('woff2'),
         url('../fonts/almoni-tzar-demibold-aaa.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
	font-family: 'Almoni Tzar ML v5 AAA';
    src: url('../fonts/almoni-tzar-bold-aaa.woff2') format('woff2'),
         url('../fonts/almoni-tzar-bold-aaa.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body{
	background: #ffffff;
	font-family: 'Almoni Tzar ML v5 AAA';
	/*overflow: hidden;*/
	letter-spacing: -0.02em;
}

input,button{
	font-family: 'Almoni Tzar ML v5 AAA';
}

/* כל הדפדפנים מבוססי WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 12px;               /* עובי scrollbar אנכי */
    height: 12px;              /* עובי scrollbar אופקי */
}

::-webkit-scrollbar-track {
    background: #2fd2ff;       /* צבע הרקע של המסילה */
    border-radius: 6px;        /* פינות מעוגלות */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #151831, #555); /* צבע ה-thumb */
    border-radius: 6px;
    border: 3px solid #f0f0f0;  /* רווח מסביב */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #000, #333); /* צבע hover */
}

/* Firefox */
* {
    scrollbar-width: thin;        /* עובי scrollbar */
    scrollbar-color: #151831 #f0f0f0; /* thumb + track */
}

.header{
	padding: 20px 0;
	gap: 52px;
	position: fixed;
	top: 0px;
	/* background: rgba(3, 1, 21, 0.15); */
	backdrop-filter: blur(8px);
	width: 100%;
	z-index: 1;
	height: auto;
}

.container-header{
	width: 1440px;
	max-width: 100%;
	margin: 0 auto;
}



.header .header-end .list{
	padding: 2px;
	margin: 0 auto;
	width: 290px;
	/* height: 36px; */
	background: rgba(255, 255, 255, 0.09);
	border: 2px #03011526 solid;
	border-radius: 4px;
}


/* =======================
   Primary Button
======================= */
.btn.btn-primary {
    padding: 8px 16px;
    gap: 8px;
    display: flex;
    width: 147.76px;
    height: 36px;
	background: #1CC8F4;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: #151831;
    border: 0;
    text-transform: uppercase;
    transition: all 0.3s ease; /* transition חלק לכל שינוי */
    cursor: pointer;
}

.btn.btn-primary:hover {
    background: #151831;
	color: #fff;
}
.btn.btn-primary path {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.btn.btn-primary:hover path {
	fill: #fff;
}

/* =======================
   Secondary Button
======================= */
.header .btn.btn-secondary {
    padding: 3px 10px;
    width: 143px;
    height: 32px;
    background: #03011526;
    /* box-shadow: 0px 2px 20px rgba(0,0,0,0.26); */
    border-radius: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: #151831;
    text-decoration: none;
}

.header .btn.btn-secondary:hover {
    background: #03011540; /* מעט כהה יותר */
    box-shadow: 0px 4px 24px rgba(0,0,0,0.3);
    cursor: pointer;
}

/* =======================
   White Button
======================= */
.header .btn.btn-white {
    padding: 3px 10px;
    width: 143px;
    height: 32px;
    background: #FFFFFF;
    /* box-shadow: 0px 2px 20px rgba(0,0,0,0.26); */
    border-radius: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: #070424;
    text-decoration: none;
}

.header .btn.btn-white:hover {
    background: #f0f0f0; /* אפקט מעט כהה */
    box-shadow: 0px 4px 24px rgba(0,0,0,0.3);
    cursor: pointer;
}

.header-center .btn-link{
	font-weight: 400;
	font-size: 24px;
	line-height: 38px;
	color: #151831;
	text-decoration: none;
}

.header-end{
    display: flex;
    align-items: center;
    gap: 50px;
}

.header-center .list{
	gap:15px;
}

.section-hero{
	background: #FFFFFF;
	width: 1920px;
	max-width: 100%;
	padding-top: 238px;
	padding-bottom: 40px;
}

.hero-title{
	font-weight: 600;
	font-size: 116px;
	line-height: 104px;
	letter-spacing: 1px;
	color: #151831;
	text-align: center;
}
.hero-text{
	font-weight: 600;
	font-size: 40px;
	line-height: 44px;
	text-align: center;
	letter-spacing: 1px;
	color: #151831;
	opacity: 0.7;
	margin-top: 28px;
}

.subtitle {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #151831;
    width: max-content;
    background: #A2EFFF;
    padding: 3px 6px;
}
.secondary-color{
	color: #0388B7;
}
.secondary-bg-inner {
	position: relative;
	display: inline-block;
	z-index: 0;
}
.secondary-bg-inner::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 100%;
	background-color: #a2efff;
	z-index: -1;
	transition: left 1s ease var(--before-delay, 0s);
}
.secondary-bg.active .secondary-bg-inner::before {
	left: 0;
}
.container-about{
	padding: 1px;
	isolation: isolate;
	width: 1140px;
	max-width: 100%;
	min-height: 378px;
	margin: 85px auto 0;
	position: relative;
	box-shadow: rgb(138 164 239 / 70%) 0 -50px 260px 0;
}
.container-about::before {
	content: "";
	background: url(../../images/top-glow.png) center center / contain no-repeat;
	width: 544px;
	height: 80px;
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin: 0 0 -32px 0;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.container-about-inner {
	display: flex;
	gap: 10px;
	padding: 60px 96px 60px 70px;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.container-about-inner::before {
	content: "";
	background: radial-gradient(ellipse at top, rgba(210,219,245,1) 0%, rgba(255,255,255,1) 70%);
	position: absolute;
	inset: 0;
	z-index: -1;
}
.tiles-Background{
	position: absolute;
	left: 0;
	right: 0;
	top: -33px;
	margin: 0 auto;
	width: 1400px;
	max-width: 100%;
	pointer-events: none;
}
.GlowEffect{
	position: absolute;
	left: 0;
	right: 0;
	top: 90px;
	margin: 0 auto;
	width: 1440px;
	max-width: 100%;
	pointer-events: none;
	display: flex;
	justify-content: center;
}
.container-about-inner1 {
	width: 44%;
}
.container-about-inner2 {
	width: 56%;
}
.about-start{
	gap: 56px;
	max-width: 100%;
}
.about-end{
	max-width: 100%;
	gap: 56px;
	padding-top: 37px;
}
.about-title{
	font-weight: 700;
	font-size: 68px;
	line-height: 68px;
	letter-spacing: -0.02em;
	color: #151831;
	margin-top: 10px;
}
.about-text{
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	color: #151831;
	opacity: 0.9;
}
.about-text p{
	margin: 0;
}
.about-text *{
	margin: 0;
}
.container-services{
	width: 995px;
	max-width: 100%;
	padding-top: 143px;
}

.services-title{
	font-weight: 700;
	font-size: 56px;
	line-height: 56px;
	color: #151831;
	margin-top: 15px;
}

.services-title p{
	margin: 0;
}

.services-text{
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	color: #151831;
	width: 500px;
	max-width: 100%;
	margin-top: 40px;
}


.services-img{
	position: relative;
	top: 6px;
	width: 100%;
	left: -60px;
}

.container-simple{
	margin-top: 140px;
}
.simple-title{
	font-weight: 700;
	font-size: 56px;
	line-height: 56px;
	color: #151831;
	margin-bottom: 0;
}
.simple-text{
	font-weight: 400;
	font-size: 28px;
	line-height: 37px
	color: #151831;
}
.simple-text-end{
	font-weight: 600;
	font-size: 28px;
	line-height: 37px;
	text-align: center;
	color: #151831;
	margin-top: 100px;
}
.simple-list{
	margin-top: 85px;
	width: 90%;
	margin: 0 auto;
	margin-top: 5.7rem;
}
.simple-list-item{
	width: 275px;
	max-width: 100%;
}
.simple-list-item-text{
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	letter-spacing: -0.01em;
	color: #151831;
	margin-top: 6px;
}
.simple-list-item-text p{
	margin-bottom: 0;
}
#simple-vector-1 {
    position: absolute;
    top: 0;
    right: 11.5rem;
    top: 3px;
}
#simple-vector-2 {
    position: absolute;
    top: 0;
    right: 30rem;
    top: 62px;
}
#simple-vector-3 {
    position: absolute;
    top: 0;
    right: 49rem;
    top: 3px;
}
.container-expert{
	margin: 0 auto;
	margin-top: 150px;
	max-width: 1400px;
}

.expert-subtitle{
	text-align: center;
	display: block;
}

.expert-title{
	font-weight: 700;
	font-size: 56px;
	line-height: 56px;
	text-align: center;
	letter-spacing: -0.02em;
	color: #151831;
	margin-top: 10px;
}


.expert-list{
	margin-top: 45px;
	width: 965px;
	margin: 45px auto;
	max-width: 100%;
}

.expert-list .list{
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	padding: 0px;
	isolation: isolate;
	width: 1141px;
	max-width: 100%;
	border: 2px solid #CEF8FF;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(19.8px);
	border: 2px solid transparent;
	background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(
            106.95deg,
            #5261D9 -1.14%,
            rgba(28, 200, 244, 0) 21.7%,
            rgba(28, 200, 244, 0.0665688) 57.11%,
            #343D7B 107.84%
        ) border-box;
}

.expert-img{
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: -24%;
	margin: 0 auto;
	text-align: center;
	z-index: -1;
}

.expert-list-item{
	width: 50%;
}
.expert-list-item .img-fluid{

position: relative;

right: -1.2rem;
}
.expert-lightEffect{
	position: absolute;
	width: 627px;
	height: 361px;
	top: 25%;
	left: 0;
	right: 0;
	margin: 0 auto;
	max-width: 100%;
	background: #8AA4EF;
	opacity: 0.4;
	filter: blur(170px);
}

.expert-list-item {
    border: 1px #CEF8FF solid;
    /* background: red; */
    min-height: 260px;
    padding-top: 25px;
    padding-bottom: 30px;
}
.expert-list-item [class*="col-"] {
    padding-right: 4.5rem;
    padding-left: 4.5rem;
}

.expert-list-item-title{
	font-weight: 600;
	font-size: 42px;
	line-height: 38px;
	letter-spacing: -0.02em;
	color: #151831;
	margin-top: -22px;
}

.expert-list-item-text{
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	letter-spacing: -0.01em;
	color: #151831;
	opacity: 0.7;
}



.container-needed{
	width: 1160px;
	max-width: 100%;
	margin-top: 127px;
}

.needed-start {
    padding-inline-start: 4.5rem;
    padding-top: 3.3rem;
}
.needed-title{
	font-weight: 600;
	font-size: 56px;
	line-height: 60px;
	letter-spacing: -0.02em;
	color: #151831;
	margin-top: 14px;
}

.needed-list{
	margin-top: 47px;
}

.needed-list .list{
	width: 800px;
	gap: 0 20px;
}

.needed-img{

position: relative;
}

.needed-list-item{
	font-weight: 400;
	font-size: 28px;
	line-height: 34px;
	color: #151831;
	width: 369px;
}

.needed-list-item-text {
	font-weight: 600;
	font-size: 28px;
	line-height: 34px;
	color: #063046;
}

.needed-list-item-text p{
	margin: 0;
}

.needed-img2 {
    position: absolute;
    right: -105px;
    width: auto;
    bottom: 30px;
}

#needed-list-item-1 {
    margin-right: 15px;
    margin-top: -5px;
}

#needed-list-item-2 {
    margin-top: 30px;
    margin-right: 12px;
}

#needed-list-item-3 {
    margin-top: 30px;
    margin-right: 15px;
}



.container-contact{
	max-width: 100%;
	width: 1920px;
	height: 815px;
	margin-top: 120px;
}

.contact-start {

padding-inline-end: 8.7rem;

padding-top: 7rem;
}

.contact-end{
	
width: calc(1920px - 1260px);
	
background-color: #00ADDC;
}

.contact-title{
	font-weight: 400;
	font-size: 56px;
	line-height: 60px;
	letter-spacing: -0.02em;
	color: #151831;
	margin-top: 15px;
}

.contact-text{
	font-weight: 400;
	font-size: 28px;
	line-height: 42px;
	letter-spacing: -0.01em;
	color: #CBDCFA;
	margin-top: 22px;
	width: 580px;
	max-width: 100%;
}

.contact-list{
	margin-top: 66px;
}

.contact-list .list{
	width: 800px;
	gap: 0 20px;
}

.contact-img{
	position: relative;
}

.contact-img2 {
    position: absolute;
    bottom: 0;
    left: -35%;
    bottom: 13.5%;
    width: 48%;
}

.contact-triangle{position: absolute;right: -40px;pointer-events: none;bottom: 0;right: -30px;}

.footer{
	margin-top: -70px;
	position: relative;
}

.footer .btn-link{
	font-weight: 700;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0.02em;
	color: #151831;
	text-decoration: none;
}
.footer .btn-link.btn-link-midnight{
	color: #39439A;
}
.contact-form{
	width: 720px;
	max-width: 100%;
	margin-top: 3.7rem;
}
.form-control{
	box-sizing: border-box;
	padding: 24px 25px;
	gap: 4px;
	width: 354px;
	height: 65px;
	border: 3px solid #B8C1C1;
	backdrop-filter: blur(10px);
	border-radius: 2px;
	font-weight: 400;
	font-size: 28px;
	line-height: 34px;
	letter-spacing: 0.02em;
	color: #4D5757;
	direction: rtl;
}

.form-control:focus {
    border-color: #1CC8F4CC;
    box-shadow: 0px 0px 0px;
}

.form-control::placeholder {
    color: #748383;
    opacity: 1;
}

/* למכשירים ישנים (IE 10‑11) */
.form-control:-ms-input-placeholder { 
    color: #748383; 
}
.form-control::-ms-input-placeholder { 
    color: #748383; 
}

.form-check-label {
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	letter-spacing: 0.02em;
	color: #4D5757;
    padding-right: 1rem;
}

.form-check-input[type=checkbox] {
    --bs-form-check-bg: transparent;
    border-radius: 2px;
    width: 1.5em;
    height: 1.5em;
    border-color: #125878;
}

.form-check-input:checked {
    background-color: #ffffff;
    border-color: #125878;
}
.form-check-input:checked[type=checkbox] {
	--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23125878' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.wpcf7 input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1.5em;
    height: 1.5em;
    border: 1px solid #125878;
    border-radius: 2px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
}

.wpcf7 input[type="checkbox"]:checked {
    background-color: #125878;
    border-color: #125878;
}

.wpcf7 input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #fff;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
}

.btn-submit{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 8px 24px;
	gap: 8px;
	width: 348px;
	max-width: 100%;
	height: 53px;
	background: #1CC8F4;
	border-radius: 2px;
	font-weight: 600;
	font-size: 32px;
	line-height: 20px;
	letter-spacing: -0.2px;
	color: #151831;
	cursor: pointer;
}

.btn-submit {
    position: relative;
    overflow: hidden;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s ease;
}



.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background: #2fd2ff;
}

.btn-submit:hover svg {
    transform: translateX(-6px); /* RTL */
}

.btn-submit:active {
    transform: translateY(1px);
    box-shadow:
        0px 3px 6px rgba(0, 0, 0, 0.3),
        inset 0px 3px 8px rgba(0, 0, 0, 0.25);
}

.btn-submit:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(28, 200, 244, 0.35),
        0px 6px 10px rgba(0, 0, 0, 0.25);
}

.section-logos{
	
margin-top: 13rem;
}

.section-logos .row{
	gap:3rem;
}
.logo-item{

height: 44px;
}

.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
    direction: rtl !important;
}

.wpcf7 form.sent .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: red;
    display: inline;
    padding: 0;
    border: 0;
    letter-spacing: .5px;
    margin: 0;
}

.form-check{
	padding: 0;
	display: flex;
}

.form-check br{
	display: none;
}

.wpcf7-list-item{
	margin: 0;
}

.wpcf7-not-valid-tip {
    color: red;
    letter-spacing: .5px;
}

.offcanvas {
    max-width: 90%;
}
.offcanvas .btn-link {
    color: #151831;
    font-size: inherit;
    font-size: 30px;
    text-decoration: none;
}

.logos-swiper-wrapper{
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

.section-logos-blur{
	background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
	backdrop-filter: blur(0);
	transform: matrix(-1, 0, 0, 1, 0, 0);
	position: absolute;
	left: -1px;
	z-index: 4;
	height: 200%;
	top: -100%;
	width: 20%;
}

.contact-end{
	background-image: url('../../images/footer.png');
	background-size: cover;
}

@media(max-width: 1440px){
	.contact-end{
		display: none;
	}
	.footer {
	    margin-top: 0;
	}
	.needed-start {
	    padding-inline-start: 1.5rem;
	}
	.simple-list {
	    width: 100%;
	}
	.simple-list-item {
	    width: 25%;
	}
	#simple-vector-1 {
	    top: 1rem;
	    width: 13rem;
	    right: 14rem;
	}
	#simple-vector-2 {
	    width: 13rem;
	    top: 3rem;
	    right: 34rem;
	}
	#simple-vector-3 {
	    right: 54.5rem;
	    top: 1rem;
	    width: 13rem;
	}
	.services-img {
	    left: -30px;
	}
}
@media(max-width: 1280px){
	#simple-vector-1 {
	    top: 1rem;
	    width: 11rem;
	    right: 12rem;
	}
	#simple-vector-2 {
	    width: 11rem;
	    top: 3rem;
	    right: 29rem;
	}
	#simple-vector-3 {
	    right: 47rem;
	    top: 1rem;
	    width: 11rem;
	}
	.container-about-inner {
		padding: 40px 30px;
	}
	.about-title {
		font-size: 58px;
		line-height: 1;
	}
}
@media(max-width: 1024px){
	#simple-vector-1 {
	    top: 1rem;
	    width: 7rem;
	}
	#simple-vector-2 {
	    width: 7rem;
	    top: 3rem;
	    right: 26rem;
	}
	#simple-vector-3 {
	    right: 40.5rem;
	    top: 1rem;
	    width: 7rem;
	}
}
@media(max-width: 991px) {
	.hero-title{
		font-weight: 400;
		font-size: 74px;
		line-height: 67px;
	}
	.hero-text{
		font-weight: 700;
		font-size: 24px;
		line-height: 28px;
		margin-top: 15px;
	}
	.subtitle{
		font-weight: 700;
		font-size: 14px;
		line-height: 16px;
	}
	.about-title{
		font-weight: 700;
		font-size: 36px;
		line-height: 34px;
		text-align: center;
	}
	.about-text {
	    font-weight: 400;
	    font-size: 20px;
	    line-height: 24px;
	    text-align: center;
	    display: flex;
	    flex-flow: column;
	    gap: 25px;
	}
	.about-text br{
		display: none;
	}
	.about-subtitle{
		margin: 0 auto;
	}
	.services-title{
		font-weight: 700;
		font-size: 36px;
		line-height: 33px;
		margin-top: 7px;
	}
	.services-text{
		font-weight: 400;
		font-size: 20px;
		line-height: 24px;
		padding-left: 3.5rem;
	}

	.expert-title{
		font-weight: 700;
		font-size: 36px;
		line-height: 36px;
		padding: 0 3.5rem;
		margin-top: 0;
	}
	.expert-text{
		font-weight: 400;
		font-size: 20px;
		line-height: 24px;
	}
	.expert-list-item-title {
	    font-weight: 700;
	    font-size: 20px;
	    line-height: 24px;
	    margin-top: -25px;
	    margin-bottom: 0;
	    text-align: center;
	}
	.expert-list-item-text{
		font-weight: 400;
		font-size: 20px;
		line-height: 24px;
		text-align: center;
	}
	.contact-title{
		font-weight: 400;
		font-size: 28px;
		line-height: 28px;
		margin-top: 10px;
	}
	.form-check-label{
		font-weight: 400;
		font-size: 20px;
		line-height: 24px;
	}
	.footer .btn-link{
		font-weight: 700;
		font-size: 12px;
		line-height: 18px;
	}
	.contact-form {
	    width: 335px;
	    margin-top: 1.5rem;
	    margin: 0 auto;
	}
	.contact-start {
	    padding-inline-end: 0;
	    padding-top: 0;
	}
	.contact-triangle {
	    right: 0;
	    left: 0;
	    top: -100px;
	    padding: 0;
	}
	.form-control {
	    width: 335px;
	    height: 44px;
	    font-weight: 400;
	    font-size: 20px;
	    line-height: 24px;
	}
	.footer .list{
		padding: 0 50px;
	}
	.section-hero {
	    max-width: 100%;
	    padding-top: 91px;
	}
	.about-subtitle {
	    margin-bottom: 5px;
	}
	.about-end {
	    padding-top: 0;
	}
	.GlowEffect {
	    top: 424px;
	}
	.container-services {
	    padding-top: 30px;
	}
	.services-subtitle{
		margin-bottom: 15px;
	}
	.services-text {
	    margin-top: 0;
	    max-width: 260px;
	}
	.services-img {
	    position: absolute;
	    left: -16px;
	    bottom: -52px;
	    top: auto;
	    width: 87%;
	}
	.container-expert {
	    margin-top: 30px;
	}
	.expert-subtitle {
		margin-bottom: 0;
	}

	.expert-list-item [class*="col-"] {
	    padding-right: 1.5rem;
	    padding-left: 1.5rem;
	}

	.needed-start {
	    padding-right: 1.5rem;
	    padding-left: 1.5rem;
	    padding-top: 0;
	    margin-top: 2rem;
	}
	.needed-title{
		font-weight: 700;
		font-size: 36px;
		line-height: 36px;
		margin-top: 0;
	}
	.needed-text{
		font-weight: 400;
		font-size: 20px;
		line-height: 24px;
		margin-top: 0;
	}
	.needed-list {
	    margin-top: 15px;
	}
	.needed-list-item-text{
		font-weight: 400;
		font-size: 20px;
		line-height: 24px;
	}
	.needed-img {
	    margin-top: 10px;
	}
	#needed-list-item-1 {
		margin-right: 8px;
		margin-top: 0;
	}
	#needed-list-item-2 {
	    margin-top: 5px;
	    margin-right: 28px;
	}
	#needed-list-item-3 {
	    margin-top: 6px;
	    margin-right: 47px;
	}
	.section-needed .container-fluid{
		padding: 0;
	}
	.section-needed .container-fluid [class*="col-"]{
		padding: 0;
	}
	.container-contact {
	    height: auto;
	    margin-top: 120px;
	}
	.section-contact .container-fluid{
		padding: 0;
	}
	.contact-start {
	    margin-top: 30px;
	}
	.contact-end {
		height: 200px !important;
	}
	.header .header-end .list{
		width: 200px;
		height: 36px;
	}
	.header .btn.btn-white,
	.header .btn.btn-secondary {
		width: 100px;
		height: 36px;
		font-weight: 400;
		font-size: 14px;
		line-height: 17px;
		padding: 0;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.header-logo{
		width: 54px;
		height: auto;
	}
	.header-end {
	    gap: 20px;
	}

	.btn-toggle-menu-mobile{
		padding: 0;
		gap: 8px;
		margin: 0 auto;
		width: 36px;
		height: 36px;
		background: rgba(235, 253, 255, 0.1);
		align-items: center;
		justify-content: center;
	}
	.container-header{
		padding: 0;
	}
	.about-text p{
		margin-bottom: 0;
	}
	.services-title p{
		margin-bottom: 0;
	}
	.simple-title{
		font-weight: 700;
		font-size: 36px;
		line-height: 36px;
		letter-spacing: -0.02em;
		margin-bottom: 7px;
	}
	.simple-text{
		font-weight: 400;
		font-size: 20px;
		line-height: 24px;
		letter-spacing: -0.01em;
	}
	.simple-text-end{
		font-weight: 700;
		font-size: 20px;
		line-height: 24px;
		letter-spacing: -0.01em;
		margin-top: 0;
	}
	.simple-list-item-text{
		font-weight: 400;
		font-size: 24px;
		line-height: 29px;
		letter-spacing: -0.01em;
		margin-top: 0;
	}
	.simple-list .list {
	    gap: 3.2rem;
	}
	#simple-vector-1 {
	    right: 57.5vw;
	    top: 11vw;
	}
	#simple-vector-2 {
	    right: 10vw;
	    top: 69vw;
	}
	#simple-vector-3 {
	    right: 57.5vw;
	    top: 125vw;
	}
	#needed-list-item-1 {
	    margin-right: 0;
	}
	#needed-list-item-2 {
	    margin-right: 0;
	}
	#needed-list-item-3 {
	    margin-right: 0;
	}
	.needed-list-item-text {
		font-weight: 400;
		font-size: 24px;
		line-height: 24px;
		margin-top: 5px;
		margin-right: 5px;
	}
	.section-logos .row{
		gap:3rem 1rem;
	}
	.expert-list {
	    width: 965px;
	    margin: 25px auto;
	}
	.expert-list-item .img-fluid {
	    right: 0;
	    width: 90px;
	    margin: 0 auto;
	    left: 0;
	    right: 0;
	    display: flex;
	    top: -10px;
	}
	.expert-list-item {
	    min-height: 203px;
	    padding-top: 20px;
	    padding-bottom: 20px;
	}
	.expert-list-item-text br{
		display: none;
	}
	.expert-list-item-text p{
		margin: 0;
	}
	.container-needed {
	    margin-top: 20px;
	}
	.section-logos {
	    margin-top: 50px;
	}
	.container-simple {
	    margin-top: 175px;
	}
	.simple-list-item {
	    width: 100%;
	}
	.simple-list {
	    margin-top: 2rem;
	}
	.footer {
	    margin-top: 75px;
	}
	#section-logos-blur-next{
	    left: auto;
	    right: -3%;
	    width: 40%;
	}
}
@media(max-width: 767px) {
	.container-about-inner {
		flex-direction: column;
	}
	.container-about-inner1,
	.container-about-inner2 {
		width: 100%;
	}
	.contact-tirangle-mobile {
		filter: alpha(opacity=20);
		opacity: 0.2;
		-khtml-opacity: 0.2;
	}
}

.floating-whatsapp-link {
    position: fixed;
    left: 40px;
    width: 130px;
    bottom: 40px;
}
@media(max-width: 1024px){
	.floating-whatsapp-link {
	    left: 0;
	    width: 80px;
	    bottom: 0;
	}
}


.swiper-toggle-autoplay {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 10;
    background: #151831;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    right: auto;
    left: 0;
}

.swiper-toggle-autoplay:hover {
    opacity: 0.8;
}

@media(max-width: 768px){
	.swiper-toggle-autoplay {
	    left: 5%;
	}
}




/* Target any element in focus */
:focus {
  /* 2px red dashed border that doesn't affect layout size */
  outline: 2px dashed red !important;
  /* Adds spacing between the element and the outline for better visibility */
  outline-offset: 2px !important;
}

/* Recommended: Apply styles only when using a keyboard (focus-visible).
  This prevents the red outline from appearing on mouse clicks, 
  which can be distracting for some users.
*/
:focus-visible {
  outline: 2px dashed red !important;
  outline-offset: 2px !important;
}
