@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}
@font-face {
    font-family: 'AharoniNew';
    src: url('fonts/Aharoni Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
html, body {
    overflow-x: clip;
    font-family: Outfit, sans-serif;
}
.container{
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 15px;
}
.fade-in,
.fade-in-right,
.fade-in-left,
.counter {
    opacity: 0;
    transition: all .8s ease;
    /* will-change: transform, opacity; */
}

.fade-in {
    transform: translateY(30px);
}

.fade-in-right {
    transform: translate3d(40px, 0, 0);
}

.fade-in-left {
    transform: translate3d(-40px, 0, 0);
}

.fade-in.show,
.fade-in-right.show,
.fade-in-left.show,
.counter.show {
    opacity: 1;
    transform: translate(0, 0);
}
.logo{
    /* background-color: #5BF0FF40; */
    position: relative;
    
}
/* .logo::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 8px;
    width: 60px;
    height: 100%;
    transform: skewX(35deg);
    transform-origin: right top;
    background: #5BF0FF40;
} */

.logo img {
    max-width: 200px;
    height: auto;
}


.nav{
    display: inline-flex;
}
/* ===== Buttons ===== */

a.ntg-pill-btn {
    min-width: 242px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    /* gap: 8px; */
    background: #58dcf1;
    color: #000000;
    border-radius: 25px;
    padding: 5px 20px;
    font-size: 13px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
    /* white-space: nowrap; */
    /* text-align: center; */
    text-decoration: none;
    transition: all .25s ease;
    /* border: 1px #58dcf1 solid; */
    justify-content: center;
}

a.ntg-pill-btn span {
    color: #3C4250;
    text-align: center;
    
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all .25s ease;
    
}

a.ntg-pill-btn:hover,
.ntg-pill-icon:hover{
    background: #3C4250;  
   
}
a.ntg-pill-btn:hover span{    
    color: #fff;
}
/* .ntg-pill-icon:hover, */
.contact-container .contact-content form.contact-form .form-group button.ntg-pill-btn:hover {
    transform: translateY(-1px);
    transform: translateY(-3px);    
    box-shadow: 0 0 0 2px rgba(88,220,241,0.2), 0 10px 30px rgba(88,220,241,0.4);
}
.ntg-pill-icon:hover svg{
   transform: rotate(-360deg);
   transition: transform 0.2s ease;
}

.nav-link{
    color: #000;
}

.nav-link-lang {
    display: inline-block;
    color: #11343b;
    transition: 0.2s ease;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* ===== Hero Section ===== */
.hero-container{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    position: relative;
    height: 750px;
    padding-top: 100px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
   
}
.hero-container::before{
    content: "";
    position: absolute;
    top: -100px;
    left: 0px;
    width: 100%;
    height: 110%;
    background-image: url('../images/hero-bg.png');
    background-repeat: no-repeat;
     background-size: 100% 100%;
    z-index: -1;
}
.hero-container .hero-content h1,
.hero-container .hero-content h3,
.hero-container .hero-content p{
   
    font-style: normal;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.hero-container .hero-content h1{
    color: #3C4250;
    font-size: 80px;
    font-weight: 800;
    font-family: AharoniNew, sans-serif;
}
.hero-container .hero-content h3{
    color: #000;
    font-size: 32px;
    font-weight: 400;
}
.hero-container .hero-content p{
    color: #000;
    font-size: 24px;
    font-weight: 300;    
    max-width: 563px;
    height: 100px;
}
.hero-image img{
    max-width: 500px;
    width: 100%;
    max-height: 500px;
    height: 100%;
    transition: .3s ease;
    animation: floatAnimation 1s ease-in-out infinite alternate;
    /* box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14); */
}
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}


.ntg-header {
    width: 100%;
    position: relative;
    z-index: 999;
}
.ntg-header-fixed {
    /* background-color: #5BF0FF1A; */
    border-radius: 10px;
    background: rgba(91, 240, 255, 0.10);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
    margin-top: 15px;
}
.ntg-header-fixed .row div:last-child{
    justify-content: space-between !important;
}

.ntg-main-nav {
    gap: 8px 14px;
    flex-wrap: wrap;
}
.nav-link{
    position: relative;
}

.nav-link::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #58dcf1;
    transition: .3s;
}
.nav-link.active{
    font-weight: 600;
}

.nav-link:hover::after{
    width: 100%;
}

.ntg-main-nav .nav-link {
    font-size: 15px;
    white-space: nowrap;
}

.pill-btn {
    display: flex;
    align-items: center;
    /* gap: 8px; */
}

.ntg-pill-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #58dcf1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px #58dcf1 solid;
    font-size: 16px;
    line-height: 1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
    cursor: pointer;
}

/*  */
.brand-container{
    align-items: center;
    position: relative;
    height: 400px;
}
.brand-container::before{
    content: "";
    position: absolute;
    top: -90px;
    left: 0;
    width: 100%;
    margin: 0;
    height: 110%;
    background-image: url(../images/brand-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}
.brand-container .brand-content h2{
    font-family: AharoniNew, sans-serif;
    font-size: 43px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    /* background: linear-gradient(270deg, #3C4250 0%, #5BF0FF 15%); */
    background: linear-gradient(90deg, #3C4250 0%, #5BF0FF 15%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-container .brand-content p{
    font-size: 24px;
    width: 40%;
}
.brand-container .brand-content .brand-slider .slick-list .slick-track{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}
.brand-container .brand-content .brand-slider .slick-list .slick-track .optech-brand-item{
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-container .brand-content .brand-slider img{
    width: 150px;
}
/* innovation center */
.innovation-center-header{
    margin-bottom: 50px;
}
.innovation-center-container{
    padding: 50px 0;
}
.title{
    
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-align: left;
    /* background: linear-gradient(270deg, #3C4250 0%, #5BF0FF 15%); */
    background: linear-gradient(90deg, #3C4250 0%, #5BF0FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 50%;
}
/* .title.center{
    text-align: center;
} */
.small-title{
    color: #000;
    text-align: center;
    font-family: AharoniNew, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.small-title::after{
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #54E9FF;
   
}
.small-title.after-center::after{
     margin: 10px auto 0 auto;
}
.small-title.after-left::after{
    margin: 10px 0;
}
.skills-units-container .skills-units-content .skills-units-content-crad{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    background-image: url('../images/card-bg1.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 80px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    height: 500px;
}
.skills-units-container .skills-units-content .skills-units-content-crad::after{
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    top: -30px;
    width: 120px;
    height: 100px;
    /* animation: floatAnimation 1s ease-in-out infinite alternate; */
    background-color: #FFF;
    background-position: 50% 50%;
}
.skills-units-container .skills-units-content .skills-units-content-crad:first-child::after{
    background-image: url('../images/01.svg');
}
.skills-units-container .skills-units-content .skills-units-content-crad:nth-child(2)::after{
    background-image: url('../images/02.svg');
}
.skills-units-container .skills-units-content .skills-units-content-crad:nth-child(3)::after{
    background-image: url('../images/03.svg');
}
.skills-units-container .skills-units-content .skills-units-content-crad p{
    font-size: 22px;
}
.skills-units-container .skills-units-content .skills-units-content-crad h3::after{
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #54E9FF;
    margin: 20px auto 0 auto;
}

.innovation-center-container h4,
.skills-units-container h4{
    text-align: center;    
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    font-family: AharoniNew, sans-serif;
}
.innovation-center-container h4 span,
.skills-units-container h4 span{
    display: inline-block;
    width: 50%; /* רוחב קבוע לכל הכותרות */
    max-width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #3C4250 0%, #5BF0FF 100%);
    /* background: linear-gradient(270deg, #3C4250 0%, #5BF0FF 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.innovation-center-container h4:nth-child(2){
    color: #000;
    text-align: center;
    
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
    padding-bottom: 0;
    background: none;
     -webkit-background-clip: unset;
     -webkit-text-fill-color: #000;
}
.innovation-center-container .innovation-center-content{
    display: flex;    
    padding-top: 50px;
}
.innovation-center-container .innovation-center-content-crad{
    background-image: url('../images/card-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 80px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    height: 500px;
}
.innovation-center-container .innovation-center-content-crad img{
    position: absolute;
    top: -70px;
    left: 38%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    animation: floatAnimation 1s ease-in-out infinite alternate;
}
.innovation-center-container .innovation-center-content-crad h3{
    color: #000;
    text-align: center;
    font-family: AharoniNew, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}
.innovation-center-container .innovation-center-content-crad p{
    color: #000;
    text-align: center;
    
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
    padding: 40px;
}
/* focus-areas */
/* .focus-areas-header h6{
    color: #000;
    
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
    text-align: left;
} */
.focus-areas-content h3{
    font-size: 48px;
}
.focus-areas-content img{
    width: 100%;
    height: auto;
    margin-top: -20px;
}
.focus-areas-content-crad h3 span{
    width: 400px;
}
.focus-areas-content-crad ul{
    list-style: none;
    padding: 50px 20px;
}
.focus-areas-content-crad ul li{
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px #54E9FF solid;
}
.focus-areas-content-crad ul li h4{
    color: #000;    
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    width: 40%;
    text-align: left;
    font-family: AharoniNew, sans-serif;
}
.focus-areas-content-crad ul li p{
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
    width: 33%;
    text-align: left;
}
.focus-areas-content-crad ul li span{
    color: #000;
    border: 1px #000 solid;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 6px;
    font-size: 18px;
}
.focus-areas-content-crad ul li span:hover{
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    transform: rotate(-35deg);
}
.services-for-the-entrepreneur-left{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.services-for-the-entrepreneur-left,
.services-for-the-entrepreneur-right{
   margin-bottom: 100px;
}
.services-for-the-entrepreneur-left h1,
.services-for-the-entrepreneur-left h1 span{
    max-width: 100%;
}
.services-for-the-entrepreneur-header-images{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 0;    
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../images/services-for-the-entrepreneur-image-bg.png');
}
.services-for-the-entrepreneur-header-images {
    position: relative;
    height: 300px;
}

.services-for-the-entrepreneur-header-images img {
    position: absolute;
    /* transform: translateX(-50%); */
    max-width: 55%;
}

.services-for-the-entrepreneur-header-images img:first-child {
    left: 0;
    margin-top: -100px;
}

.services-for-the-entrepreneur-header-images img:last-child {
    right: 0;
}
.services-for-the-entrepreneur-card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 100px 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-image: url('../images/services-for-the-entrepreneur-card-bg1.png');
    margin-bottom: 30px;
}
.services-for-the-entrepreneur-container,
.services-for-the-entrepreneur-header-images {
    overflow: hidden;
}
.services-for-the-entrepreneur-container .services-for-the-entrepreneur-card:nth-child(4){
    background-image: url('../images/services-for-the-entrepreneur-card-bg2.png');
}
.services-for-the-entrepreneur-container .services-for-the-entrepreneur-card:nth-child(5){
    background-image: url('../images/services-for-the-entrepreneur-card-bg3.png');
}
.services-for-the-entrepreneur-container .services-for-the-entrepreneur-card:nth-child(6){
    background-image: url('../images/services-for-the-entrepreneur-card-bg4.png');
}
.services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-left,
.services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-right{
    text-align: left;
    width: 50%;
    max-width: 400px;
}
.services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-left h3,
.services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-right h3{
    color: #000;
    font-family: AharoniNew, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-left p,
.services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-right p{
    color: #000;
    
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
}
.services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-left img,
.services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-right img{
    width: 300px;
    height: 200px;
    border-radius: 15px;
}
.success-stories-header h4,
.contact-container .contact-header h4,
.team-container .team-header h4{
     color: #000;
    margin: 0 auto;
     max-width: 600px;
    text-align: center;
    font-family: AharoniNew, sans-serif;
}
.success-stories-content{
    background-image: url('../images/success-stories-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 100px 50px;

}
.success-stories-content ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.success-stories-content ul li{
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 300px;
}
.success-stories-content ul li span{
    color: #000;
    text-align: center;
    
    font-size: 64px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
.success-stories-content ul li p{
    color: #000;
    text-align: center;
    
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}


.team-header h3{
    margin: 0 auto;
        max-width: 500px;
    text-align: center;
}
.team-content{
 
   
}
.team-content ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.team-content ul.slick-dots{
    display: block;
}
.team-content .optech-brand-item-card{
    /* border-radius: 20px; */
    /* padding: 30px; */
    height: 450px;
    width: 90% !important;
    margin: 0 auto;
    /* max-width: 300px; */
    background-image: url('../images/team-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;  
    padding: 70px 20px 100px;
    
    /* width: 90% !important; */
}
.team-slider .slick-list .slick-track .optech-brand-item{
    height: 550px;
}
.team-slider .slick-track{
    
}
.team-slider .slick-track .optech-brand-item-card{
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
}
.team-slider .slick-track .optech-brand-item-card h3{
    color: #000;
    font-family: AharoniNew, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.team-slider .slick-track .optech-brand-item-card p{
    color: #000;
    text-align: center;    
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    font-family: Outfit, sans-serif;
}
.team-slider .slick-track .optech-brand-item-card img{
    position: absolute;
    bottom: -100px;
    width: 50%;
    left: 25%;
    z-index: 99;
}

.contact-container .contact-content{ 
    margin: 0 auto;
    background-image: url('../images/form-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;  
    padding: 70px 100px;
    position: relative;
    margin-top: 100px;
    text-align: left;
}

.contact-container .contact-content img{
    position: absolute;
    top: -100px;
    right: 150px;
    animation: floatAnimation 1s ease-in-out infinite alternate;
}
.contact-container .contact-content h3{
    color: #000;
    font-family: AharoniNew, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    margin-top: 50px;
}
.contact-container .contact-content form.contact-form{
    padding: 50px 0px;
    display: flex;
    flex-wrap: wrap; /* חשוב מאוד */
    /* gap: 16px; */
}
.contact-container .contact-content form.contact-form .form-group{
    /* width: 25%; */
    flex: 1 1 calc(20% - 16px); /* 4 בשורה */    
    margin-bottom: 20px;
}
.contact-container .contact-content form.contact-form .form-group-full{
    flex: 0 0 100%;
}
.contact-container .contact-content form.contact-form .form-group input,
.contact-container .contact-content form.contact-form .form-group button,
form.signForm-form button.ntg-pill-btn{
    width: 90%;
    padding: 10px 20px;
    border-radius: 4px;
    border-radius: 50px;
    height: 60px;
}
label.form-label{
    color: #000;    
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 5px;
}
.contact-container .contact-content form.contact-form .form-group button.ntg-pill-btn,
form.signForm-form button.ntg-pill-btn{
    background: #3C4250;
    color: #fff;
    border: none;
    margin-top: 30px;
}
/* signForm-form */
.signForm-form .form-control[type="text"],
.signForm-form .form-control[type="email"],
.signForm-form .form-control[type="tel"],
.signForm-form textarea.form-control,
.signForm-form select.form-control{
    width: 100%;
    padding: 10px 20px;
    border-radius: 50px;
    height: 60px;
}
.signForm-form textarea.form-control{
    height: 120px;
    border-radius: 15px;
}
.signForm-form .form-label{
    font-weight: 500;
}
/* Contact Us */
.contact-container .contact-us-content{
    margin: 0 auto;
    background-image: url('../images/contact-us-form-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;  
    padding: 70px 100px;
    position: relative;
    /* margin-top: 100px; */
}
.contact-container .contact-us-details{
    background-image: url('../images/contact-us-details-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}
.contact-container .contact-us-details ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.contact-container .contact-us-details ul li{
    margin-bottom: 20px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}
.contact-container .contact-us-details ul li img{
    margin-bottom: 20px;
    height: 60px;
}
.contact-container .contact-us-details ul li h3{
    color: #000;
    text-align: center;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 30px */
    text-transform: capitalize;
}
.contact-container .contact-us-details ul li p{
    color: #000;
    text-align: center;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    text-transform: lowercase;
}
.contact-container .contact-us-details ul li p a{
    color: #000;
    text-decoration: none;
}
.contact-container .contact-us-content form.contact-us-form{
    padding: 50px 0px;
    display: flex;
    flex-wrap: wrap;    
}

/* .contact-container .contact-us-content form.contact-us-form .form-group{

    flex: 1 1 calc(25% - 16px);
    margin-bottom: 20px;
} */
/* .contact-container .contact-us-content form.contact-us-form .form-group-full{
    flex: 0 0 100%;
} */
.contact-container .contact-us-content form.contact-us-form input:not([type="checkbox"]),
.contact-container .contact-us-content form.contact-us-form button{
    width: 100%;
    padding: 10px 20px;
    border-radius: 4px;
    border-radius: 50px;
    height: 60px;
}
.contact-container .contact-us-content form.contact-us-form input[type="checkbox"]{

}
.contact-container .contact-us-content form.contact-us-form label{
    color: #000;
    
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 5px;
}
label.validation-error-label{
    color: red !important;
    margin: 5px;
    display: block;
}


.contact-container .contact-us-content form.contact-us-form button.ntg-pill-btn{
    background: #3C4250;
    color: #fff;
    border: none;
    margin-top: 38px !important;
}
/* footer */
footer.footer{    
    padding: 50px 0 0 0;
}
footer.footer a{
    color: #000;
    text-decoration: none;
}
footer.footer li{
    margin-bottom: 10px;
}
footer.footer .footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
}
footer.footer .footer-bottom p{
    color: #000;
    
    font-size: 14px;
    margin: 0;
}

footer.footer .footer-bottom > *{
    flex: 1;
}
footer.footer .footer-social li a{
    color: #FFF;
    padding: 10px;
    margin: 5px;
    background-color: #dadada;
    border-radius: 50%;
}



.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
section{
    padding: 0 0 50px 0;
}
/* Breadcrumb */
.ntg-breadcrumb {
    font-size: 14px;
    color: #8c8f96;
    margin-bottom: 10px;
}

.ntg-breadcrumb a {
    color: #8c8f96;
    text-decoration: none;
}

.ntg-breadcrumb a:hover {
    color: #5BF0FF;
}

.ntg-breadcrumb span {
    margin: 0 6px;
}

.ntg-breadcrumb .active {
    color: #3C4250;
    font-weight: 500;
}

/* Title */
.ntg-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #3C4250;
    margin-bottom: 10px;
    font-family: AharoniNew, sans-serif;
}

/* Line under title */
.ntg-title-line {
    width: 60px;
    height: 3px;
    background: #5BF0FF;
    margin: 10px auto 20px;
    border-radius: 2px;
}
.ntg-title-line-start {
    margin: 10px 0 20px;
}

/* Description */
.ntg-page-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}
.ntg-page-desc-content{
    padding: 50px 0;
}

/* back-to-top */
.back-to-top{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #58dcf1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.back-to-top a{
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}
#NagishLiTrigger{
    left: 10px;
    right: unset !important;
}
.nagishli-trigger-icon{
    background-color: #58dcf1 !important;
}
/* 
form.contact-us-form{
    margin: 0 auto;
    background-image: url('../images/contact-us-form-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;  
    padding: 70px 100px;
    position: relative;
    margin-top: 100px;
} */
/* טאבלט ומטה */
@media (max-width: 991.98px) {
    .ntg-header {
        text-align: center;
    }

    .logo {
        text-align: center;
    }

    .ntg-main-nav {
        justify-content: center;
    }

    .pill-btn {
        justify-content: center;
    }
    .title{
        max-width: 100%;
        text-align: center;
    }
    .services-for-the-entrepreneur-header-images img:first-child,
    .services-for-the-entrepreneur-header-images img:last-child{        
        margin-top: 0;
        width: 50%;
    }
    .services-for-the-entrepreneur-header-images img:first-child{

    }
    .services-for-the-entrepreneur-header-images img:last-child{
        
    }
    .success-stories-content{
        background-image: url('../images/success-stories-mbg.png');    
    }
    .success-stories-content ul{
        justify-content: center;
        flex-wrap: wrap;
    }
    .services-for-the-entrepreneur-card{
        flex-wrap: wrap;
        padding: 50px 20px;
    }
    .services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-left, 
    .services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-right{
        width: 90%;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .services-for-the-entrepreneur-container .services-for-the-entrepreneur-card:nth-child(5){
        background-image: url('../images/services-for-the-entrepreneur-card-bg2.png') !important;
    }
    .services-for-the-entrepreneur-container .services-for-the-entrepreneur-card:nth-child(6){
        background-image: url('../images/services-for-the-entrepreneur-card-bg1.png') !important;
    }
}

/* מובייל */
@media (max-width: 575.98px) {   
    .title{
        width: 100%;
        text-align: center;
        font-size: 32px;
    }
    .logo img {
        max-width: 100px; 
    }   
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .ntg-header.px-3{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }


    .ntg-main-nav .nav-link {
        font-size: 14px;
        padding-left: 8px;
        padding-right: 8px;
    }
    a.ntg-pill-btn{
            width: auto;
            min-width: 0;
    }
    a.ntg-pill-btn span {
        font-size: 14px;
        font-weight: 600;
    }

    .ntg-pill-icon {
        width: 38px;
        height: 38px;
    }
    .hero-container{
        height: auto;
        padding: 15px;
        min-height: 750px;
        text-align: center;
    }
    .hero-container::before{   
        top: -80px;      
        background-image: url('../images/hero-mbg.png');      
        height: 110%;
    }
    .hero-container .hero-content h1,
    .hero-container .hero-content h3,
    .hero-container .hero-content p{        
        margin-bottom: 15px;
    }
    .hero-container .hero-content h1{
        font-size: 40px;
    }
    .hero-container .hero-content h3{
        font-size: 24px;
    } 
    .hero-container .hero-content p{      
        font-size: 18px;
    }
    .hero-image img{
        max-width: 250px;
        max-height: 250px;
        height: 100%;
    }

    /* .brand-container {
        padding: 10px !important;
    } */
    .brand-container::before {       
        top: -55px;
        left: 10px;
        height: 110%;
        background-image: url('../images/brand-mbg.png');
    }
    .brand-container .brand-content{
        text-align: center;
        margin-top: 25px;
    }
    .brand-container .brand-content h2{
        font-size: 32px;
    } 
    .brand-container .brand-content p{
        font-size: 18px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .brand-container .brand-content .brand-slider img{
      width: 150px;
    }

    .innovation-center-container h6{       
        font-size: 20px;     
    }
    .innovation-center-container h4{     
        font-size: 32px;       
    }
    .innovation-center-container h4:nth-child(2){      
        font-size: 32px;     
    }
    .innovation-center-container .innovation-center-content{
        display: block;
    }
    .innovation-center-container .innovation-center-content-crad{       
        padding: 80px 50px;
        margin-bottom: 50px;
        height: 400px;
    }
    .innovation-center-container .innovation-center-content-crad img{
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 120px;
    }
    .innovation-center-container .innovation-center-content-crad h3{    
        font-size: 32px;      
    }
    .innovation-center-container .innovation-center-content-crad p{      
        font-size: 18px;
        padding: 50px 0;
    }
    .innovation-center-container h4, .skills-units-container h4{
        font-size: 32px;
    }
    .skills-units-container .skills-units-content .skills-units-content-crad h3{
        font-size: 32px;
        font-weight: 700;
    }
    .skills-units-container .skills-units-content .skills-units-content-crad a.ntg-pill-btn{
        width: 187px;
        height: 38px;
    }
    .skills-units-container .skills-units-content .skills-units-content-crad a.ntg-pill-btn span{
        font-size: 18px;        
        font-weight: 600;
        font-family: Rubik;
    }
    /* .team-slider .slick-list .slick-track .optech-brand-item{
        height: 400px;
    } */
    .team-content .optech-brand-item-card{
        padding: 60px 10px 100px;
    }
    .team-slider .slick-track .optech-brand-item-card h3{
        font-size: 28px;
    }
    .team-slider .slick-track .optech-brand-item-card p{
        font-size: 18px;
    }
    .team-slider .slick-track .optech-brand-item-card img{
        bottom: -100px;
        width: 60%;
        left: 20%;
    }
    .focus-areas-content-crad ul{
        padding: 50px 0;
    }
    .focus-areas-content-crad ul li{
        display: inline-block;       
        position: relative;
        width: 100%;
    }
    .focus-areas-content-crad ul li h4{
        width: 80%;
        margin-bottom: 20px;
    }
    .focus-areas-content-crad ul li p{
        width : 80%;
    }
    .focus-areas-content-crad ul li span{
        position: absolute;
        right: 0;
        top: 40px;
    }
    .focus-areas-header{
        text-align: center;
    }
    .small-title.after-left::after{
        margin: 10px auto;
    }
    .small-title{
        text-align: center;
    }
    .services-for-the-entrepreneur-header-images{
        margin: 0px;
        justify-content: center;
    }
    .services-for-the-entrepreneur-left,
    .services-for-the-entrepreneur-right{
        margin-bottom: 0;
    }
    .services-for-the-entrepreneur-card{
        padding: 80px 0;
        gap: 10px;
    }
    .services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-left h3,
    .services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-right h3{
        font-size: 28px;
    }
    .services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-left p,
    .services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-right p{
        font-size: 18px;
    }
    .success-stories-content{
        padding: 10px;
    }
    .contact-container .contact-content{
        padding: 30px;
        background-image: url('../images/form-mbg-rtl.svg');
    }
    .contact-container .contact-content h3{
        font-size: 24px;
        margin-top: 100px;
    }
    .contact-container .contact-content img{
        left: 20px;
        width: 110px;
        right: unset;
        top: 40px;
    }
    .contact-container .contact-content form.contact-form{
        display: block;
    }
    footer.footer .footer-bottom{ 
        flex-flow: column-reverse;
    }
    .success-stories-content ul li span{
        font-size: 48px;
    }
    .success-stories-content ul li p{
        font-size: 18px;
    }
    .focus-areas-content h3{
        text-align: center;
        font-size: 32px;
    }
    .focus-areas-content img {        
        margin-top: 30px;
        transform: unset !important;
    }
    .services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-right{
        margin-top: 50px;
    }
    .services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-right img{
        width: 80%;
    }
    .contact-container .contact-content form.contact-form .form-group input, .contact-container .contact-content form.contact-form .form-group button{
        width: 100%;
    }  
    .contact-container .contact-us-content{
        background-image: url('../images/form-mbg-rtl.png');
        padding: 0px 30px;
    }
    /* Title */
    .ntg-page-title {
        font-size: 32px;
    }
    .contact-container .contact-us-content form.contact-us-form input:not([type="checkbox"]),
    .contact-container .contact-us-content form.contact-us-form button{
        height: 45px;
    }
    .fade-in-right,
    .fade-in-left {
        transform: translateY(20px);
    }
    .services-for-the-entrepreneur-card .services-for-the-entrepreneur-card-left {
        text-align: center !important;
    }
}