<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */ 
:root {
  --pc: #219195;
  --sc: #282B38;
  --p-blue: #2B2E45;
  --trans: all 0.5s ease;
  --p-font: 'Noto Sans Hebrew', sans-serif;
  --fa: 'Font Awesome 6 Free';
  --wc: #fff;
}
body {
  font-family: var(--p-font) !important;
  color: var(--sc);
  font-size: 1em;
  overflow-x: hidden;
}
img{
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover{
	cursor: pointer
}
li{
  list-style: none;
}
[type=email], [type=number], [type=tel], [type=url] {
  direction: ltr;
}
.container{
	padding-left: var(--bs-gutter-x,.75rem);
    padding-right: var(--bs-gutter-x,.75rem);
	max-width:100%;
}
.form-check-input:checked{
	background-color:var(--p-blue) ;
    border-color: var(--p-blue);
}
.form-check-input:focus{
	box-shadow: 0 0 0 0.25rem rgb(15 187 175 / 25%)
}

.breadcrumb{
	margin-bottom: 0.5rem;
}
input[type="checkbox"], input[type="radio"]{
	height: 20px !important;
    line-height: normal !important;
    padding: 0 !important;
    width: 20px !important;
}
.btn-check:focus + .btn, .btn:focus, .btn:active {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(15 187 175 / 27%);
  border-color: var(--pc)
}
.form-control {
  height: 40px;
  line-height: 35px;
  border-radius: 5px !important;
  border-color: #e8e8e8;
}
.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgb(15 187 175 / 27%)
}
.form-control::placeholder {
  font-weight: normal;
  opacity: 0.5;
  color: var(--pc)
}
label {
  color: var(--pc);
  font-weight: 500;
  margin: 0 0 5px;
  font-size: 14px;
}
.btn-primary{
border-radius: 100rem;
  padding: 1rem;
  font-family: var(--p-font);
  font-size: 1rem;
  padding: .5rem 3rem;
  color: var(--sc);
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 2px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #8BCFD1, #282B38);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.btn-primary:hover{
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #8BCFD1, #282B38);
  box-shadow: none;
  border-color:var(--pc);
}
.social-btn{
	height:40px;
	width:40px;
  background:url('../images/social-icon/email.svg') no-repeat center;
  display: inline-block;
  transition: var(--trans);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.social-btn:hover{
  transform: scale(1.2);
}
.facebookIco{
  background-image:url('../images/social-icon/facebook-icon.svg')
}
.callIco{
  background-image:url('../images/social-icon/phone-ico.svg')
}
.secHeading{
  text-align: center;
  margin: 0 0 3.5em;
}
.secHeading strong{
display: block;
color:var(--pc);
font-size: 26px;
}
.secHeading h3{
  font-size: 36px;
  color: var(--sc);
  font-weight: 600;
}
.secHeading p{
  font-size: 16px;
}
/*--header--*/
header{
  -webkit-transition: var(--trans);
  transition: var(--trans);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(1px);
}
header.affix{
  background-color:var(--pc)
}
header nav{
	background-color:transparent;
 
}
header nav .nav-link{
	color:#fff;
}
.nav-link:focus, .nav-link:hover{
	color:#f2ffff
}
.navbar-expand-lg .navbar-nav .nav-link{
	padding-left: 0.8rem;
    padding-right: 0.8rem;
	font-size:18px;
}
header nav .btn{
	height:50px;
	width:150px;
	line-height:38px;
	font-weight:700;
}

.navbar-nav .nav-link.active, .navbar-nav .show&gt;.nav-link{
  font-weight: bold;
  color: #f2ffff; /*var(--pc);*/
}
.left-nav {display: flex;align-items: center;gap: 10px;}
/*--hero-sec--*/
.heroSec{
  background:url('../images/banner1.jpg') no-repeat center;
  background-size:cover;
  height: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color:#fff;
}
.heroSec .heroText{
  max-width: 850px;
  padding: 0 15px;
}
.heroSec .heroText h1{
  font-size: 60px;
  font-weight: 800;
  margin: 0 0 20px;
min-height: 72px;}
.heroSec .heroText p{
  max-width: 85%;
  text-align: center;
  margin: auto ;
  font-weight: normal;
  font-size: 1em;
}
.heroSec .heroText .btn {
  font-size: 1.4rem;
  font-weight: 500;
}
.typed::after, .teamName:after {
	content: '|';
	display: inline;
	-webkit-animation: blink 0.7s infinite;
	-moz-animation: blink 0.7s infinite;
	animation: blink 0.7s infinite;
}
/*Removes cursor that comes with typed.js*/
.typed-cursor{
  opacity: 0;
 display: none;
}
/*Custom cursor animation*/
@keyframes blink{
   0% { opacity:1; }
   50% { opacity:0; }
   100% { opacity:1; }
}
@-webkit-keyframes blink{
   0% { opacity:1; }
   50% { opacity:0; }
   100% { opacity:1; }
}
@-moz-keyframes blink{
   0% { opacity:1; }
   50% { opacity:0; }
   100% { opacity:1; }
}
/*--about-sec--*/
.py-5{
  padding:5em 0 !important;
}
.aboutSec h2, .contactSec h4, .essayBanner h2{
font-size:1.8em;
font-weight: 700;
color:var(--sc);
position:relative;
padding-right: 120px;
margin: 0 0 15px;
}
.aboutSec h2:after, .contactSec h4::after, .essayBanner h2:after{
  content:'';
  height: 3px;
  border-radius: 5px;
  background-color: var(--pc);
  width:95px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.aboutSec p{
  font-size: 14px;
}
span.overlayDots{
  position: absolute;
  right: 21px;
  bottom: -24px;
  height: 65px;
  width: 200px;
  background: url(../images/dots.svg) no-repeat;
  z-index: -1;
}
/*--servicesSec--*/
.servicesSec{
  background: url('../images/services-bg.jpg') no-repeat top;
  background-size:cover;
  background-attachment: fixed;
}
.servicesSec figure{
  background: #FFFFFF;
  border-top: 3px solid #53ACAF;
  border-radius: 10px;
  padding:25px 15px;
  text-align: center;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  box-shadow:0 10px 15px rgba(0,0,0,0.0);
  min-height: 240px;
}
.servicesSec figure img{
  transform: scale(1);
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.servicesSec figure:hover img{
  transform: scale(1.2);
}
.servicesSec figure:hover{
  box-shadow:0 10px 15px rgba(0,0,0,0.05)
}
.servicesSec figure figcaption strong{
  font-size:20px;
  margin:15px 0 10px;
  display: block;
  color:var(--pc)
}
.servicesSec figure figcaption p{
  font-size: 14px;
}
.swiper-pagination{
  bottom: 0px !important;
}
.swiper-pagination-bullet{
  width: 2px !important;
  height:15px !important;
  background: var(--sc) !important;
  border-radius: 0px !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active{
  background-color:var(--pc) !important;
  height: 25px !important;
  width: 3px !important;
}
.swiperButtons &gt;  div {
  width:50px
}

.swiperButtons &gt;  div:after {
  font-size: 20px;
  background:
  rgba(255,255,255,0.8);
  backdrop-filter:
  blur(1px);
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100px;
  text-align: center;
  color: var(--pc);
}
.servicesSec  .swiperButtons &gt;  div:after{
	position:relative;
	background-color:#219195;
	color:#fff;
	
}

/* .servicesSec .mySwiper{
  height: 320px;
} */
/*--teamSec--*/
.teamSec{
  background: url('../images/team-banner.jpg') no-repeat top;
  background-size:cover;
  background-attachment: fixed;
}
.teamName{
  color: var(--pc);
}
.teamCard{
  position: relative ;
}
.teamCard img {width: 100%;}

.teamCard .teamBody {background: rgba(0,0,0,0.5);position: absolute;bottom: 0;width: 100%;padding: 15px;text-align: center;font-size: 18px;color: #fff;backdrop-filter: blur(3px);border-radius: 0 0 10px 10px;}

.teamCard {border-radius: 10px;overflow: hidden;}
/* .teamSec  .mySwiper {
  height: 450px;
} */
/*--bloc--*/
.blogSec{
  background:#f3f3f3
}
.blogSec .container-md .text-center .btn{
  font-size: 20px;
}
.blogCard{
  background:#fff;
  padding:25px;
  border-radius: 10px;
  border:1px solid rgb(221, 221, 221,0);
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.blogCard:hover{
  border:1px solid rgb(221, 221, 221,1)
}
.blogCard:hover a.blogTitle{
  color: var(--pc);
  text-decoration: underline;
}
.blogCard a.blogTitle{
  font-size: 18px;
  font-weight: 700;
  color: var(--sc);
  margin: 10px 0;
  display: inline-block;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.blogCard img{
  width: 100%;
  margin:0 0 10px
}
/*--contact/sec--*/
.contactSec{
  background: url('../images/contact-bg.jpg ') no-repeat top;
  background-size:cover;
  background-attachment: fixed;
  position: relative;
}
.contactSec:after{
  content:'';
  background:rgba(40,45,56,0.9);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  z-index: 1;
}
.contactSec .container-md{
  position: relative;
  z-index: 9;
}

.contactSec h4{
  color:#fff;
}
.contactSec ul{
  padding:0;
  color:#fff;
}
.contactSec ul li{
  position: relative;
  padding-right: 65px;
  padding-top: 10px;
  margin: 0 0 50px;
}
.contactSec ul li:after{
  content:'';
  height: 51px;
  width: 51px;
  background: url('../images/social-icon/map-ico.svg') no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.contactSec ul li:nth-last-of-type(2n):after{
  background-image: url('../images/social-icon/phone.svg');
}
.contactSec ul li:last-of-type:after{
  background-image: url('../images/social-icon/at.svg');
}
.contactSec ul li small{
  display: block;
}
.contactSec ul li strong{
  font-size:20px
}
.contactSec .form-group{
  position: relative;
}
.contactSec .form-group i{
  position: absolute;
  top:42px;
  left: 12px;
  color: #fff;
  font-size: 14px;
}
.contactSec .form-control{
  background-color:rgba(255,255,255,0.2);
  backdrop-filter: blur(2ps);
  border:1px solid rgba(255,255,255,0.5);
  color:#fff;
}
.contactSec .form-group label{
  color: #fff;
  font-weight: normal;
}
.contactSec .form-title:after{
  display: none;
}
.contactSec .form-title{
  font-size: 22px;
  padding: 0;
  margin: 0 0 35px;
}
.contactSec textarea.form-control{
  height: 75px;
}
/*--footer--*/
footer{
  background: url('../images/foot-bg.jpg') no-repeat top;
  background-size:cover;
  position: relative;
  color: #fff;
    padding: 15px 0 40px;
    font-weight: normal;
}
.grecaptcha-badge
{
	visibility: hidden;
}
header.affix .navbar-nav .nav-link.active, header.affix  .navbar-nav .show&gt;.nav-link{
  color:#fff 
}
/*--inner-pages--*/
.innerPage{
  padding-top: 68px;
}
.innerPage header{
background-color:var(--pc)
}
.innerPage .pageHead{
  background:#f2ffff;
  margin: 0 0 25px;
  border-bottom:1px solid  #d3e7e8
}
.innerPage .pageHead h1{
  color:var(--sc);
  font-size:28px;
  font-weight: 600;
}
.breadcrumb a{
  color:var(--sc)
}

/*--essayBanner--*/

.essayDetail .essayBanner{
  position:relative
}
.essayDetail .essayBanner img.bannerthumb{
width:100%;
height:480px;
object-fit: cover;
border-radius:5px;
}
.essayDetail .essayBanner h2{
  
  margin: 0;
  border-radius:0 0 5px 5px; 
  font-size:2rem;
  font-weight:700;
  color:#fff;
  padding: 0;

}
.essayDetail .essayBanner .article-head {
  position:absolute;
  width: 100%;
  right:0;
  bottom:0;
  padding: 28px 15px; 
  background: rgb(0,0,0);
background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,139,222,0) 100%);
background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,139,222,0) 100%);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,139,222,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#008bde",GradientType=1);
border-radius: 0 0 10px 10px;
}
.essayDetail .essayBanner h2:after{
  display: none;
}
.article-head span{
color:#fff;
}
.lawyerBody {border: 1px solid #ddd;border-radius: 15px;padding: 25px;}
.lawThumb img {width: 100%;}

.lawThumb {    position: sticky;
  top: 100px;}

.lawIno {position: absolute;background: rgba(0,0,0,0.5);backdrop-filter: blur(1px);bottom: 0;color: #fff;padding: 10px;text-align: center;width: 100%;border-radius: 0 0 10px 10px;}

.lawThumb img {height: 370px;object-fit: cover;text-align: center; border-radius: 10px;}

.lawIno h2 {display: block;text-align: center;width: 100%;font-size: 22px;}

.lawIno a {color: var(--pc);font-size: 16px;transition: var(--trans);transform: scale(1);}

.shareIocn {display: flex;justify-content: center;gap: 10px;}

.lawIno a:hover {transform: scale(1.3);color: #fff;}
.linkCard a {color: var(--pc); border-bottom:1px solid rgba(0,0,0,0)}

.linkCard p {margin: 5px 0 10px;}

.linkCard {margin: 0 0 10px;border-bottom: 1px solid #daeced;padding: 10px;transition: var(--trans);box-shadow: 0 10px 10px rgba(0,0,0,0.0);border-radius: 10px;}
.linkCard:hover{
  box-shadow: 0 10px 10px rgba(0,0,0,0.1)
}
.linkCard:hover a{
  border-bottom:1px solid var(--pc)
}
.gallery-container{
  flex-wrap: wrap;
  gap: 20px;
}
.gallery-container a{
  width:23.2%;
  position: relative;
  overflow: hidden;
}
.gallery-container a:after{
  opacity: 0;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  -webkit-transition: var(--trans);
  transition: var(--trans);
  border-radius: 10px;
}
.gallery-container a:before{
  opacity: 0;
  content:'';
  background:url('../images/zoom.svg') no-repeat center;
  height: 40px;
  width: 40px;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: 5;
  -webkit-transition: var(--trans);
  transition: var(--trans);

}
.gallery-container a:hover:after, .gallery-container a:hover:before{
  opacity: 1;
}
.gallery-container a img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.servicesSec  .swiper-slide a{
  color: var(--p-blue);
}
.swiper-button-disabled{
  opacity: 0 !important;
}</pre></body></html>