/* 
============================================
                  COMMON
============================================
*/

/* FONT */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Proxima Nova Alt Bold, serif';
    src: url(../font/Proxima_Nova_Alt_Bold.otf);
}

@font-face {
    font-family: 'Proxima Nova Alt Light, serif';
    src: url(../font/Proxima_Nova_Alt_Light.otf);
}

@font-face {
    font-family: 'Proxima Nova Alt Thin, serif';
    src: url(../font/Proxima_Nova_Alt_Thin.otf);
}

@font-face {
    font-family: 'Proxima Nova Black, serif';
    src: url(../font/Proxima_Nova_Black.otf);
}

@font-face {
    font-family: 'Proxima Nova Bold, serif';
    src: url(../font/Proxima_Nova_Bold.otf);
    
}

@font-face {
    font-family: 'Proxima Nova Extrabold, serif';
    src: url(../font/Proxima_Nova_Extrabold.otf);
    
}
@font-face {
    font-family: 'Proxima Nova samibold, serif';
    src: url(../font/Proxima_Nova_samibold.ttf);
    
}
@font-face {
    font-family: 'Proxima Nova samibold 2, serif';
    src: url(../font/Proxima_Nova_samibold_2.ttf);
    
}
@font-face {
    font-family: 'Proxima Nova sami, serif';
    src: url(../font/Proxima_Nova_sami.ttf);
    
}

@font-face {
    font-family: 'Proxima Nova Regular, serif';
    src: url(../font/Proxima_Nova_Regular.otf);
    
}

@font-face {
    font-family: 'Proxima Nova Thin, serif';
    src: url(../font/Proxima_Nova_Thin.otf);
    
}



/* GENERAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6{
	line-height: 140%;
}

html,
body {
    font-family: 'Proxima Nova Regular, serif';
    overflow-x: hidden !important;
}

a {
    color: #0056b3;
}

:root {
    --custom-black: #000000;
    --custom-black-2: #252A38;
    --custom-grey-1: #222222;
    --custom-grey-2: #606060;
    --custom-grey-3: #707070;
    --custom-grey-4:#E4E4E4;
    --custom-grey-5: #CED6F4;
    --custom-grey-6: #4C505E;
    --custom-white-1: #F3F4F8;
    --custom-white-2: #FFFFFF;
    --custom-white-3: #FBFBFF;
    --custom-white-4:#EFEFEF;
    --custom-white-5:#FBFCFE;
    --custom-blue-1: #001322;
    --custom-blue-2: #23293A;
    --custom-blue-3: #003D71;
    --custom-blue-4: #0A4476;
    --custom-blue-5: #547CA0;
    --custom-blue-6: #A4ACB4;
    --custom-blue-7: #ABD0F0;
    
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.header ul {
    font-family: 'Roboto', sans-serif;
}

.container-one {
    max-width: 1670px !important;
	margin: auto !important ;
}
/* COLOR */

.cb {
    color: var(--custom-black) !important;
}
.cb-2 {
    color: var(--custom-black-2) !important;
}
.cg1 {
    color: var(--custom-grey-1) !important;
}

.cg2 {
    color: var(--custom-grey-2) !important;
}

.cg3 {
    color: var(--custom-grey-3) !important;
}
.cg4 {
    color: var(--custom-grey-4) !important;
}
.cg5 {
    color: var(--custom-grey-5) !important;
}
.cg6 {
    color: var(--custom-grey-6) !important;
}
.cw1 {
    color: var(--custom-white-1) !important;
}

.cw2 {
    color: var(--custom-white-2) !important;
}
.cw3 {
    color: var(--custom-white-3) !important;
}
.cw4 {
    color: var(--custom-white-4) !important;
}
.cw5 {
    color: var(--custom-white-5) !important;
}
.cb1 {
    color: var(--custom-blue-1) !important;
}

.cb2 {
    color: var(--custom-blue-2) !important;
}

.cb3 {
    color: var(--custom-blue-3) !important;
}

.cb4 {
    color: var(--custom-blue-4) !important;
}

.cb5 {
    color: var(--custom-blue-5) !important;
}

.cb6 {
    color: var(--custom-blue-6) !important;
}

.cb7 {
    color: var(--custom-blue-7) !important;
}

/* BACKGROUND */

.bg-cb {
    background-color: var(--custom-black) !important;
}
.bg-cb-2 {
    background-color: var(--custom-black-2) !important;
}
.bg-cg1 {
    background-color: var(--custom-grey-1) !important;
}

.bg-cg2 {
    background-color: var(--custom-grey-2) !important;
}

.bg-cg3 {
    background-color: var(--custom-grey-3) !important;
}
.bg-cg4 {
    background-color: var(--custom-grey-4) !important;
}
.bg-cg5 {
    background-color: var(--custom-grey-5) !important;
}

.bg-cw1 {
    background-color: var(--custom-white-1) !important;
}

.bg-cw2 {
    background-color: var(--custom-white-2) !important;
}
.bg-cw3 {
    background-color: var(--custom-white-3) !important;
}
.bg-cw4 {
    background-color: var(--custom-white-4) !important;
}
.bg-cw5 {
    background-color: var(--custom-white-5) !important;
}
.bg-cb1 {
    background-color: var(--custom-blue-1) !important;
}

.bg-cb2 {
    background-color: var(--custom-blue-2) !important;
}

.bg-cb3 {
    background-color: var(--custom-blue-3) !important;
}

.bg-cb4 {
    background-color: var(--custom-blue-4) !important;
}

.bg-cb5 {
    background-color: var(--custom-blue-5) !important;
}
.bg-cb6 {
    background-color: var(--custom-blue-6) !important;
}

/* FONT SIZE */

.fs-8 {
    font-size: 8px;
}

.fs-9 {
    font-size: 9px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-19 {
    font-size: 19px;
}

.fs-20 {
    font-size: 20px;
}

.fs-21 {
    font-size: 21px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}
.fs-26 {
    font-size: 26px;
}
.fs-28 {
    font-size: 28px;
}
.fs-32{
    font-size: 32px;
}
.fs-44{
    font-size: 44px;
}
.fs-54{
    font-size: 54px;
}


/* FONT WEIGHT */

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

/* FONT FAMILY */

.roboto {
    font-family: 'Roboto', sans-serif !important;
}

.playfair {
    font-family: 'Playfair Display', serif !important;
}

.proxima {
    font-family: 'Proxima Nova, serif' !important;
}
.Regular{
    font-family: 'Proxima Nova Regular, serif' !important;
}

.extrabold{
    font-family: 'Proxima Nova Extrabold, serif' !important;
}
.samibold{
    font-family: 'Proxima Nova samibold, serif' !important;
}
.samibold-2{
    font-family: 'Proxima Nova samibold 2, serif' !important;
}
.sami{
    font-family: 'Proxima Nova sami, serif' !important;
}
.nova-thin{
    font-family: 'Proxima Nova Thin, serif' !important;
}
.nova-bold{
    font-family: 'Proxima Nova Bold, serif'!important;
}
.nova-black{
    font-family: 'Proxima Nova Black, serif' !important;
}

nav.navigation.pagination {
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
    margin-top: 3rem;
}

nav.navigation.pagination .nav-links a, .nav-links span {
    display: inline-block;
    padding: 5px 15px;
    color: #000;
    color: #FFFFFF;
    border: 1px solid var(--custom-grey-0);
    background-color: #FFFFFF;
    margin-left: -5px;
    font-size: 14px;
}

nav.navigation.pagination a.prev.page-numbers, a.next.page-numbers {
    position: relative;
}

nav.navigation.pagination a.prev.page-numbers {
    padding-left: 25px !important;
}

nav.navigation.pagination a.next.page-numbers {
    padding-right: 25px !important;
}

nav.navigation.pagination .nav-links a.next::after, a.prev::before {
    content: "";
    border: 2px solid;
    height: 8px;
    width: 8px;
    display: inline-block;
    border-right: transparent;
    border-bottom: transparent;
    position: relative;
}
nav.navigation.pagination .nav-links a.next::after {
    transform: rotate(136deg);
    top: -1px;
    left: 10px;
}
nav.navigation.pagination .nav-links a.prev::before {
    transform: rotate(-45deg);
    top: -1px;
    right: 10px;
}

nav.navigation.pagination .current {
    background-color: #e2e2e2 !important;
}

/* BUTTON PADDING */

.btn-padding-1 {
    padding: 12px 29px 14px;
    border-radius: 3px;
}
.btn-padding-2 {
    padding: 14px 34px 14px;
    border-radius: 5px;
}
.btn-padding-3 {
    padding: 12px 45px 14px;
    border-radius: 3px;
}
.btn-padding-4 {
    padding: 14px 60px 14px;
    border-radius: 5px;
}
/* IMAGE RESPONSIVE */
.img-object{
    object-fit: cover;
    object-position: center;
}
.whiteSpacePreWrap
{
    white-space: pre-wrap;
}
/* 
======================
------- NAVE START -------
======================
*/
.header-main{
    box-shadow: -5px 5px 5px -5px var(--custom-blue-6);
    position: relative;
    z-index: 999;
}
 .navbar{
   padding-top: 0;
   padding-bottom: 0;
   padding: 0px;
   height: auto;
   background-color: #FFFFFF;
   display: flex;
  
} 
.navbar .logo-img{
    clip-path: polygon(0% 0%, 100% 0, 99% 79%, 51% 100%, 0 79%);
    max-width: 166px;
    position: relative;
    top:23px;
    box-shadow: 0 6px 6px rgb(0 0 0 / 10%);
    z-index: 999;
    
}
.navbar img{
   width: 100%;
    height: 146px;
    padding: 16px 25px 20px;
	position: relative;
	top: -3px !important;
}
.navbar .btn-services{
    padding: 8px 38px 8px;
    border-radius: 5px;
    font-size: 18px;
}
.navbar .btn-services:hover{
   background-color: transparent !important;
   color: var(--custom-blue-3) !important;
   transition: all .2s;
   
}

.navbar ul li a i{
    font-size: 18px;
}
.navbar ul li a span:hover{
    color: var(--custom-blue-3) !important;
}
.navbar-collapse{
    background-color: transparent;
}
.navbar ul li a span{
    font-size: 22px;
}
.navbar ul li a{
   text-decoration: none;
   font-family: 'Roboto', sans-serif;
   font-weight: 400;
   text-transform: uppercase;
   color: var(--custom-blue-1);
   font-size: 18px;
}
.navbar ul li a:hover, .navbar ul li.current_page_item a {
    color: #003D71;
 }
.navbar .menu-item i{
    transform: rotate(18deg);
}

.navbar .menu-item {
    padding: 31px 0px;
}

.menu-menu-1-container {
    width: 55%;
}
.menu-menu-1-container .navbar-nav:first-child li.menu-item:first-child {
    padding-left: 30px;
}

.menu-menu-1-container + .navbar-nav li {
    padding: 30px 15px;
    align-items: center;
    display: flex;
}

.navbar ul li a {
    font-size: 17px;
}
/* 
======================
------- NAVE END -------
======================
*/

/* 
========================================
-------SECTIONS START -------
========================================
*/
/* SECTION CONTENT START */
.section-content{
    position: relative;
    padding-bottom: 134px;
    overflow: hidden;
    background-color: #FFFFFF;
}
.section-content h1{
   padding-top: 130px;
}

.section-content p{
    padding: 25px 0;
 }
 .btn-services{
     width: 230px;
     text-align: center;
     padding: 10px 0px;
     border-radius: 5px;
     border: 2px solid var(--custom-blue-3);
     font-family: 'Proxima Nova Regular, serif' !important;
 }
 .btn-services-2{
    width: 198px;
    text-align: center;
    padding: 10px 0px;
    border-radius: 5px;
    border: 2px solid var(--custom-blue-3);
    margin-left: 17px;
    transition: .3s ease all;
 }
 .btn-services-2:hover{
    background-color: var(--custom-blue-3) !important;
    color: var(--custom-white-2) !important;
 }
 .btn-services:hover{
    background-color: transparent!important;
    color: var(--custom-blue-3) !important;
    transition: all .2s;
    border-width: 2px;
 }

 .section-content .img-main{
    height: 100%;
   width: 51.5%;
   position: absolute;
   top: 0;
   right: 0;
}
.section-content img{
   height: 100%;
   clip-path: circle(81.8% at 83% 76%);
   width: 100%;
}

 /* SECTION CONTENT END */

/* SECTION SERVICES START */
.section-services{
    padding: 75px 0px;
	background-color: #FFFFFF;
}
.section-services .post-right p{
    padding-top: 13px;
    max-width: 100% !important;
}
.section-services img{
    padding-top: 80px;
}
.section-services h3{
    padding-top: 21px;
}
.section-services p{
    padding-top: 22px;
    max-width: 395px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--custom-grey-2);
}
/* SECTION SERVICES END */

/* SECTION WE CAN HELP START */
   .we-can-help {
	padding-top: 75px;
	padding-bottom: 5px;
  	overflow: hidden;
  	background-color: #F3F4F8;
   }
    .we-can-help .smart-card {
    max-width: 500px;
   }
   .we-can-help-bg{
    background-image: url(../img/we-can-bg2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
   }
   #we-can-help-bg .tab{
    box-shadow: 0px 3px 99px rgb(69 69 69 / 13%);
   }
   .we-can-help .tab{ 
	 box-shadow: 0px 3px 99px rgb(69 69 69 / 13%);
   }
   .we-can-help .nav-item{
       flex-grow:1;
   }
   .we-can-help .nav-link{
    font-size: 19px;
    padding: 17px 0;
    text-align: center;
   }
   .we-can-help .tab-img{
       max-width: 700px;
       height: 387px;
   }
   .we-can-help .tab-img img{
    width: 100%;
    border-radius: 0px 0px 0px 211px;
    margin-right: 50px;
    max-height: 333px;
   }
   .we-can-help .tab .tab-content{
	padding: 60px 50px 95px ;
   }
   .we-can-help .tab-content .img-content{
   }
   .we-can-help .tab-content h5{
    padding: 20px 15px;
  }
   .we-can-help .tab .tab-content a{
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid var(--custom-grey-3);
}
.smart-card {
    padding: 35px 42px 45px;
    box-shadow: 0 0 6px rgb(0 0 0 / 6%);
    margin-bottom: 44px;
}
   .nav-pills .nav-link {
    border-radius: 0;
}
   .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color:var(--custom-white-2) !important;
    background-color: var(--custom-blue-3);
}
   .we-can-help .tab ul li{
    box-shadow: 0 0 2px var(--custom-grey-4);
   }
   .we-can-help .tab ul li a{
    color: var(--custom-black-2);
  }
  .we-can-help .post-right p{
      padding-bottom: 70px;
  }
/* SECTION WE CAN HELP END */

/* SECTION What We Do START */

.section-strategies h2 a {
    color: var(--custom-blue-1) !important;
}

.section-strategies:nth-child(3) h2 a, .section-strategies:nth-child(7) h2 a {
    color: #FFFFFF !important;
}
section.section-strategies h2 {
    text-transform: capitalize;
}
.what-we-do{
    padding-top: 75px;
    padding-bottom: 5px;
	background-color: #F3F4F8;
}
.section-strategies{
    padding: 70px 60px;  
}
.section-strategies p{
    font-size: 18px;
    color: var(--custom-grey-2);
	max-width: 584px;
}
 .post-right{
   text-align: center;
   margin: 0 auto;
   max-width: 640px;
   padding-bottom: 70px;
  
}
.post-right span{
    font-family: 'Proxima Nova Bold, serif';
    text-transform: uppercase;
	line-height: 32px;
}
.section-strategies .post-right p{
	padding: 13px 0 70px;
 }
 .section-strategies .line{
   width: 152px;
   height: 3px;
   display: block;
   background-color: var(--custom-blue-4);
   margin-top: 21px;
 }
 .section-strategies:nth-child(3) .line,
 .section-strategies:nth-child(7) .line{
    background-color: var(--custom-white-2);
  }
.section-strategies p{
    padding-top: 20px;
    white-space: pre-wrap;
}
.section-strategies .img-main{
    max-width: 572px;
}
 .section-strategies img{
    width: 100%;
    height: 383px;
    object-fit: cover;
    object-position: top;
    border-radius: 0px 0px 0px 211px;
    box-shadow: 0 3px 50px rgb(206 214 244) !important;
}
.section-strategies:nth-child(3) .img-main img,
.section-strategies:nth-child(7) .img-main img{
    box-shadow: 0 3px 50px rgb(245 245 245 / 16%) !important;
}
.section-strategies:nth-child(even) .img-main{
    margin-left: auto;
}
.section-strategies:nth-child(odd) .img-main{
    margin-right: auto;
}
.section-strategies:nth-child(odd) img{
    object-fit: cover;
    object-position: top;
    border-radius: 0px 0px 211px 0px;
}
.section-strategies:nth-child(odd) .row{
   flex-direction: row-reverse;
}
.section-strategies:nth-child(2),
.section-strategies:nth-child(4),
.section-strategies:nth-child(5),
.section-strategies:nth-child(6),
.section-strategies:nth-child(8),
.section-strategies:nth-child(9){
    color: var(--custom-blue-1) !important;
}
.section-strategies:nth-child(2),
.section-strategies:nth-child(6),
.section-strategies:nth-child(9){
    background-color: #FFFFFF !important;
}
.section-strategies:nth-child(3) p,
.section-strategies:nth-child(7) p{
   color: #FFFFFF;
   font-size: 18px;
}
.section-strategies:nth-child(3),
.section-strategies:nth-child(7){
    background-image: url(https://www.ilglegal.com/wp-content/uploads/2023/10/Screenshot-2023-10-18-160021.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--custom-white-1) !important;
}
.section-strategies:nth-child(4){
    background-color: #F3F4F8;
}
.section-strategies:nth-child(5),
.section-strategies:nth-child(8){
    background-color: #F3F5F9;
}
/* SECTION STRATEGIES END */

/* SECTION SOLUTION START */
.solution{
  padding: 75px 0px;
  background-color: #FFFFFF;
}
.solution .post-right p{
    padding-bottom: 75px;
}
.solution  p{
    display:-webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.card-big .card {
    max-width: 540px;
    border: none;
}

.card-big .card img{
    height: 281px;
    
}

.card-body {
    padding-bottom: 34px !important;
}
/* SECTION SOLUTION END */
/* SECTION TESTIMONIALS START */
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://www.ilglegal.com/screenshot-2023-10-18-160021/');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.testimonials {
  position: relative;  /* Make sure to set this */
  padding: 50px 0px 30px;
}
.testimonials .client-slider{
    max-width: 572px;
    margin: 64px auto;
    padding: 26px 67px;
    text-align: center;
    border-radius: 5px;
    position: relative;
	height: 181px;
}
.testimonials .client-slider .item .line::after{
    content: '';
    width: 44px;
    height: 2px;
    display: block;
    margin: 17px auto 0;
    background-color: var(--custom-grey-2);
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    border-radius: 50%;
    border: 1px solid var(--custom-grey-3);
    padding: 5px!important;
    margin: 5px;
    height: 10px;
    outline: none;
}
button.owl-dot.active {
   	background: var(--custom-grey-3);
}
.owl-dots {
    position: absolute;
    bottom: -62px;
    left: 192px;
}
/* SECTION TESTIMONIALS END */
/* SECTION ARTICLES START */
.articles{
    padding: 75px 0px;
	background-image: url(../img/article-bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.articles .card-main:not(:last-child){
    margin-right: 90px;
}
.article-blog{
    background-image: url(../img/article-bg2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.articles .post-right h1{
    padding: 2px 0px 74px;
}
.articles .post-right p{
    padding-bottom: 75px;
}
.card-small .card .card-body h3{
    padding-top: 5px;
    display:-webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.card-small .card .card-body p{
      padding-top: 13px;
      display:-webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;  
    overflow: hidden;
	font-size: 18px;
	color: #606060;
}
.card-small .card {
    max-width: 446px;
    border: none;
    background-color: transparent;
    margin: auto;
}
.card-small .card img{
    height: 305px;
	object-fit:cover;
    border: none;
	border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
/* SECTION ARTICLES END */
/* SECTION ABOUT US START */
.about-us{
    padding-bottom: 100px;
    background-image: url(../img/content-bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.about-us-services{
    padding-bottom: 85px;
}
.about-us h1{
padding-top: 100px;
padding-bottom: 15px;
}
.about-us a{
  margin-top: 30px;
}
.about-us p{
    font-size: 18px;
    color:var(--custom-grey-2);
    white-space: pre-wrap;
    }
.about-us img{
   width: 45.3%;
   height: 100%;
    position: absolute;
    border-radius: 0px 0px 0px 450px;
    top: 0;
    right: 0;
}
/* SECTION ABOUT US END */
/* SECTION AWARDS START */
.awards{
    padding: 85px 0px;
    background-image: url(../img/awards-bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.awards h1{
    padding-bottom: 75px;
}
.awards .awards-img{
    max-width: 265;
    height: 300px;
    margin-bottom: 50px;
}
/* SECTION AWARDS END */

/* SECTION CONTACT US START */
.contact-us{
  padding:75px 0;
}
.contact-us a{
  text-decoration: none !important;
}
.contact-us h1{
   padding: 40px 0px 10px;
}
.contact-us p{
    font-size: 18;
    color: var(--custom-grey-2);
 }
.contact-us a .fa-phone-alt{
    transform: rotate(21deg);
}
.contact-us a .fa-envelope{
    margin-left: 58px;
}
.contact-us .mapouter{
    position:relative;
    text-align:right;
    height:556px;
    max-width:620px;
    box-shadow: 0px 0px 50px var(--custom-grey-5);
}
.contact-us .gmap_canvas {
     overflow:hidden;
     background:none!important;
     height:556px;
     max-width:620px;
    }
    #gmap_canvas{
        width: 100%;
    }
    .contact-us .input{
        border: none;
        outline: none;
        max-width: 300px;
        height: 44px;   
        padding-left: 10px;
        color: var(--custom-grey-2);
    }
    .contact-us input[type='text'],
    .contact-us input[type='number'],
    .contact-us input[type='email']{
      width: 100%;
      border: none;
    outline: none;
    max-width: 300px;
    height: 44px;
    padding-left: 10px;
    color: var(--custom-grey-2);
    border:1px solid transparent;
    transition: .3x ease all;
    }
    .contact-us input[type='text']:focus, .contact-us input[type='number']:focus, .contact-us input[type='email']:focus
    {
        border:1px solid #0a72ca;
    }
    .contact-us .textarea{
        width: 100%;
    }
    .contact-us textarea{
        border: none;
        outline: none;
        max-width: 648px;
        height: 157px;
        padding: 10px 10px;
        color: var(--custom-grey-2);
        width:100%;
    }
    .contact-us input.wpcf7-form-control.wpcf7-submit
    {
        border-radius: 5px;
        padding: 14px 50px;
        font-size: 18px;
        background-color: var(--custom-blue-3) !important;
        color: var(--custom-white-2) !important;
        max-width: 156px;
        padding-top: 10px;
        border: none;
        padding-bottom: 11px;
		margin-left: 7px;
    }
    .contact-us .wpcf7-not-valid-tip {
        padding: 0px !important;
    }
    .contact-us span.wpcf7-form-control.wpcf7-radio label {
        padding: 25px 0px;
		display: flex;
		align-items: center;
        
    }
    .contact-us span.wpcf7-form-control.wpcf7-radio span 
    { padding: 0px;
        margin:0px;
        margin-right:10px;
		margin-left: 7px;
    
    }
    .contact-us label{
       padding: 23px 20px 34px 0px;
       font-size: 14px;
       color: var(--custom-grey-2);
    }
    .contact-us .checkbox{
    margin-right: 5px;
     }
     .contact-us .checkbox input{
        width: auto;
     
         }
     .contact-us span{
         padding: 23px 0px 6px;
     }
     .contact-us .btn-submit{
         border-radius: 5px;
         padding: 14px 50px;
     }
    .contact-us h2 {
    margin-bottom: 20px;
   }
/* SECTION CONTACT US END */
/* SECTION CEO START */
.ceo{
    padding: 100px 0px;
    position: relative;
    background-image: url(../img/content-bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ceo h1{
    padding-bottom: 18px;
}
.ceo p{
    font-size: 18px;
    color: var(--custom-grey-2);
	white-space: pre-wrap;
}
.ceo img{
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    border-radius: 0px 0px 0px 324px;
 }

/* SECTION CEO END */
/* SECTION LAWSUITS START */
.discrimination p{
  font-size: 18px;
  color: var(--custom-grey-2);
}
.discrimination h1{
    padding: 97px 0px 18px;
    font-size: 44px;
    color: var(--custom-grey-1);
    font-weight: 700;
  }
.lawsuits{
    padding: 80px 0px;
}
.lawsuits:nth-child(1){
    position: relative;
    background-image: url(../img/content-bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
   
}
.lawsuits:nth-child(1) img{
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    border-radius: 0px 0px 0px 324px;
 }
.lawsuits:nth-child(2){
    background-image: url(../img/coe-bg2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.lawsuits:nth-child(even) .row{
    flex-direction: row-reverse;
}
.lawsuits:nth-child(2) img{
    border-radius: 0px 0px 324px 0px;
    width: 79%;
}
/* SECTION LAWSUITS END */
/* SECTION CIVIL START */
.civil{
    padding: 77px 0px;
    
}
.civil .blog-img{
    max-width: 1016px;
    margin: 0 auto;
}
.civil .blog-discrapition{
    font-size: 18px;
    color: var(--custom-grey-2);
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0px;
    white-space: pre-wrap;
	position: relative;
}
.civil img{
    width: 100%;
}
.civil .blog-discrapition{
    padding: 50px 0px;
}
.civil h1{
    padding-bottom: 50px;
}

.civil .form span{
    padding: 10px 0 12px;
}
input.input {
    max-width: 288px;
    height: 42px;
}
.civil .form input{
    padding: 5px 5px;
    outline: none !important;
    color: var(--custom-grey-2);
    border: none !important;
    width: 100%;
    
}
.civil .form a{
    text-decoration: none;
    text-transform: uppercase;
    margin: inherit;
}
.civil .form .btn-form{
    padding: 15px 30px;
    border-radius: 5px;
}
.civil .textarea{
    max-width: 407px;
    height: 133px;
}
.civil .form textarea{
    padding: 10px 10px;
    outline: none !important;
    color: var(--custom-grey-2);
    border: none !important;
    width: 100%;
    margin-bottom: 25px;
}

/* SECTION CIVIL END */
/* SECTION BLOG START*/
.blogInside{
 padding-bottom: 70px;
}
.blogInside .content{
    padding-bottom: 100px;
}
.blogInside h3{
    display:-webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.blogInside p{
    display:-webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
	font-size: 18px;
    color: var(--custom-grey-2) !important;
	padding-top: 15px;
}
.blogInside .new-content{
    padding-top:90px;
}
.blogInside .new-content .new-img{
    max-width: 170px;
    height: 170px;
}
.blogInside .new-content .new-img img{
    width: 100%;
    border-radius: 5px;
    box-shadow: -1px 1px 9px 4px rgb(0 0 0 / 14%);
    height: 170px;
}
.blogInside h1{
    padding: 63px 0px;
   }
/* SECTION BLOG END */
/* SECTION MAP START */

.map .mapouter{
   position:relative;
   text-align:right;
   height:487px;
   max-width:1920px;
 
}
.map .gmap_canvas{
    overflow:hidden;
    background:none!important;
    height:487px;
    max-width:1920px;
}
/* SECTION MAPEND */

/* FOOTER START */

footer a:hover {
    color: var(--custom-blue-3) !important;
}

.contact-info{
   padding: 63px 0px 56px;
}
.contact-info a{
    text-decoration: none;
    display: inline-block;
}
.contact-info h6{
    max-width: 251px;
    padding-top: 4px;
	text-transform: capitalize;
}
.contact-info ul li{
    list-style: none;
    margin-bottom: 3px;
}
.contact-info .row .col-sm-12:not(:last-child) {
    border-right: 1px solid var(--custom-white-4);
}

.contact-info .row .col-sm-12:nth-child(1) .footer-description {
    max-width: 300px;
    
}
.contact-info .row .col-sm-12:nth-child(2) .footer-description {
    max-width: 79px;
    
}
.contact-info .row .col-sm-12:nth-child(3) .footer-description {
    max-width: 246px;
    
}
.contact-info .row .col-sm-12:nth-child(4) .footer-description {
    max-width: 297px;

}
.footer-description h4 {
    text-transform: uppercase;
}
.footer-description i.fab.fa-facebook-f.fs-16.cb3 {
    position: relative;
    bottom: 2px;
}
/* FOOTER END */

.civil h3#reply-title {
    max-width: 769px;
    margin-left: auto;
    margin-right: auto;
}

.civil form {
    max-width: 769px;
    margin-left: auto;
    margin-right: auto;
}

.civil form p {
    margin-bottom: 23px;
	position: relative;
}

.civil form p::after {
    content: "";
    display: table;
    clear: both;
}

.civil form p.comment-form-comment {
    float: left;
    width: fit-content;
    margin-right: 25px;
}

.civil form p.comment-form-author {
    float: left;
    width: fit-content;
}

.civil form p.comment-form-email {
    float: left;
    width: fit-content;
}

.civil form p.comment-form-email input {
    margin-bottom: 10px;
}

.civil form label {
    display: block;
    padding: 10px 0 12px;
    margin-bottom: 0;
}

.civil form input, textarea {
    padding: 5px 5px;
    outline: none !important;
    color: var(--custom-grey-2);
    border: none !important;
}

.civil form input {
    height: 42px;
}

.civil form textarea {
    height: 220px;
    width: 482px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.civil form p.comment-form-cookies-consent input, p.comment-form-cookies-consent label {
    display: inline;
    height: fit-content;
    margin-right: 10px;
}

.civil form p.comment-form-cookies-consent {
    margin: 12px 0px !important;
}

.civil form p.form-submit input {
background-color: var(--custom-blue-3) !important;
    color: var(--custom-white-2) !important;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    left: 0px;
    bottom: -44px;
}
.comment-meta img {
    width: fit-content;
    width: -moz-fit-content;
    margin-right: 10px;
    margin-bottom: 10px;
}
ol.comment-list {
    margin-top: 30px;
    list-style: none;
}
.comment-content p {
    padding-bottom: 6px !important;
    margin-bottom: 9px;
    border-bottom: none !important;
}
ol.comment-list .children {
    list-style: none;
    margin-top: 20px;
}
nav.navigation.pagination span.page-numbers.current {
    background-color: #F4F4F4 !important;
}
nav.navigation.pagination .nav-links a, .nav-links span {
    border: 1px solid #EBEBEB;
}
nav.navigation.pagination .nav-links a.next::after, a.prev::before {
    border-top: 1px solid;
    border-left: 1px solid;
}
nav.navigation.pagination .nav-links a.prev::before {
    right: -4px;
}
nav.navigation.pagination a.prev.page-numbers, nav.navigation.pagination a.next.page-numbers {
    padding: 5px 15px !important;
}
nav.navigation.pagination .nav-links a.next::after {
    left: 0px;
}
.articles h2 {
    margin-bottom: 72px;
}
.card-body {
    padding-bottom: 34px !important;
    border-radius: 5px;
    box-shadow: -20px 20px 99px #f2f4fd;
}
.civil img {
    width: 100%;
    height: 610px;
    object-position: top !important;
}
.civil img {
    max-width: 1400px !important;
    max-height: 1400px !important;
    margin-right: auto;
    margin-left: 0;
}
.card-title {
    margin-bottom: 2px;
    font-family: 'Proxima Nova Regular, serif';
    opacity: 48%;
}
.item p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
section.articles.article-blog h2 {
    margin-bottom: 20px;
}
section.awards h2 {
    margin-bottom: 72px;
}
.new-content h3 {
    max-width: 538px;
}
section.no-results.not-found h1 {
    text-align: center;
    font-size: 50px;
}
section.no-results.not-found {
    padding: 70px 0px 20px;
}
section.no-results.not-found .page-content {
    text-align: center;
    margin-top: 30px;
}
section.no-results.not-found .page-content p {
    margin-bottom: 25px;
}
section.no-results.not-found .page-content label span {
    display: block;
    margin-bottom: 10px;
}
section.no-results.not-found .page-content label input.search-field {
    padding: 5px 11px;
    display: inline-block;
    max-width: 320px;
    min-width: 320px;
    margin: 10px auto 20px;
}
input.search-field {
    padding: 0 5px;
    font-size: 16px;
    color: #797777;
    width: 200px;
    border: none;
    box-shadow: 0px 0px 4px -1px #00000063;
	outline: none;
}
input.search-submit {
    margin-left: 10px;
    padding: 4px 10px;
    border: 1px solid #ccc;
}

.civil img {
    max-width: 400px;
    height: 400px;
    margin-right: auto;
    margin-left: 0;
    margin-bottom: 50px;
}

.new-content p {
    max-width: 538px;
}

/*    */

.new-content .content a {
    text-transform: uppercase;
}
input.wpcf7-form-control.wpcf7-submit {
    text-transform: uppercase;
}
.civil .blog-discrapition p::after {
    content: '';
    display: block;
    width: 900px;
    height: 1px;
    background-color: #E6E6E6;
	position: absolute;
	bottom: -22px;
	left: 0;
	right: 0;
}
section.articles.article-blog .card a {
    text-transform: uppercase;
}
.we-can-help .tab-content .img-content h5 {
    text-transform: capitalize;
}
.tab-content .smart-card h4 {
    padding-bottom: 10px;
    text-transform: capitalize;
	max-width: 414px;
}
.we-can-help .tab-content .img-content a {
    border-bottom: unset !important;
}
.card-big .card-body .card-title {
    text-transform: capitalize !important;
    font-family: 'Playfair Display', serif;
    color: #001322 !important;
	opacity: 1;
}
.card-body h3 {
    text-transform: capitalize !important;
}
.post-right h2 {
    text-transform: capitalize !important;
}
a.btn-services {
    width: 200px;
}
ul {
	list-style-position: inside;
}
li {
	color: var(--custom-grey-2);
	font-size: 18px;
}
.hero-content .btn-services:not(:last-child) {
    box-shadow: 0px 3px 6px rgb(0 0 0 / 12%) !important;
}
.solution .card-body .btn-services {
    box-shadow: 0px 3px 6px rgb(0 0 0 / 12%) !important;
}
.menu-menu-1-container + .navbar-nav li:first-child {
    padding-left: 15px;
}
.menu-menu-1-container + .navbar-nav li:last-child {
    padding-right: 0px;
}
.menu-menu-1-container {
    max-width: 700px;
    width: 100%;
}
.menu-menu-1-container + .navbar-nav {
    min-width: 407px !important;
}

.formatting {
  position: relative;
  color: var(--custom-grey-2);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto; 
 }
  .formatting::after {
    content: "";
    display: table;
    clear: both; }
  .formatting h1 {
    font-size: 45px;
    margin-block: 40px 20px; }
  .formatting h2 {
    font-size: 35px;
    margin-block: 35px 25px; }
  .formatting h3 {
    font-size: 28px;
    margin-block: 30px 20px; }
  .formatting h4 {
    font-size: 24px;
    margin-block: 25px 13px; }
  .formatting h5 {
    font-size: 20px;
    margin-block: 20px 10px; }
  .formatting h6 {
    font-size: 17px;
    margin-block: 15px 7px; }
  .formatting :is(h1,
  h2,
  h3,
  h4,
  h5,
  h6) {
    line-height: 1.8; }
  .formatting :is(h1, h2, h3, h4, h5, h5):first-child,
  .formatting hr + :is(h1,
  h2,
  h3,
  h4,
  h5,
  h6) {
    margin-top: 0px !important; }
  .formatting :is(img, figure, :not(figure) picture):is(.alignnone, .aligncenter) {
    display: block;
    margin: 30px auto;
  }
  .formatting figure img {
    margin: 0px !important; }
  .formatting figure picture {
    display: block; }
  .formatting :is(img, figure, picture) {
    height: auto;
    max-width: 100%; }
  .formatting figure figcaption {
    font-size: 12px;
    padding: 3px 15px;
    text-align: center;
    background: #eee; }
  .formatting :is(figure, picture) img {
    display: block; }
  .formatting :is(img, figure, :not(figure) picture).alignright {
    float: right;
    margin: 15px 0px 15px 20px; }
  .formatting :is(img, figure, :not(figure) picture).alignleft {
    float: left;
    margin: 15px 20px 15px 0px; }
  .formatting hr {
    margin: 15px 0px; }
  .formatting .table-container {
    overflow: auto; }
    .formatting .table-container::-webkit-scrollbar {
      width: 2px;
      height: 2px; }
      .formatting .table-container::-webkit-scrollbar-track {
        background: #f1f1f1; }
      .formatting .table-container::-webkit-scrollbar-thumb {
        background: #888; }
    .formatting .table-container table {
      border-collapse: collapse; }
    .formatting .table-container :is(th, td) {
      text-align: start;
      border: 1px solid #d4d4d4;
      padding: 10px; }
  .formatting :is(ul, ol) {
    padding-left: 20px; }
  .formatting b,
  .formatting strong {
    font-weight: 700; }
  .formatting blockquote {
    background: #eee;
    padding: 8px 8px 8px 30px;
    margin: 10px 0px;
    position: relative; }
    .formatting blockquote::after {
      background: var(--custom-blue-3);
      content: "";
      position: absolute;
      top: 0;
      left: 0px;
      width: 3px;
      height: 100%; }
.contact-info ul li a {
    color: var(--custom-grey-2) !important;
    font-size: 14px;
}

.page-sitemap {
    margin-top: 100px;
}

.page-sitemap li ul{
	margin-left: 35px;
}
.page-sitemap li {
	margin-bottom: 10px;
}
.ceo-black {
    color: black !important;
}
/* Hide the mobile menu on larger screens */
.mobile-navigation {
    display: none;
}

/* Show the mobile menu on screens smaller than 768px (common breakpoint for tablets) */
@media (max-width: 768px) {
    .mobile-navigation {
        display: block;
    }
}
/* Hide the toggle button on larger screens */
.mobile-menu-toggle {
    display: none;
}

/* Show the toggle button on small screens */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block; /* or inline-block, depending on your design */
    }

    /* Hide the desktop menu on small screens */

}