/*============= RESETS =============*/

/*-- iPhone X Remove Gutters --*/
html {
   padding: env(safe-area-inset);
}
/*-- Prevent Horizontal Scrolling & Font Style --*/
html, body {
   overflow-x: hidden;
   font-family: 'Lato', sans-serif;
   color: #505962;
}

p {
  
  text-align:justify;
}

.text-nuno {
   color: #1EBBA3;
}

/*--- Nav Scrolling Offset --*/
.offset:before {
   content: "";
   height: 4rem;
   display: block;
   margin-top: -4rem;
}

/*--- Extra Bootstrap Column Padding --*/
[class*="col-"] {
   padding: 1rem;
}

/*============= NAVIGATION =============*/
.navbar-brand  {
   height: 4.5rem;
    color: #1EBBA3 !important;
    font-weight: bolder;
}


.navbar {
   padding: .7rem 1rem;
   text-transform: uppercase;
   font-weight: 700;
   letter-spacing: .1rem;
   font-size: .9rem;
   transition: background-color .5s ease;
}
.navbar-nav li {
   padding-right: .8rem;
}
.navbar-nav .nav-link {
   color: white;
   padding-top: .8rem;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
   color: #1EBBA3;
}
.custom-toggler-icon {
   color: white;
   font-size: 1.6rem;
}
.navbar.solid,
.navbar.solid-toggle {
   background: rgba(0, 0, 0, .7)!important;
   transition: background-color 1s ease;
}

.navbar-brand img {
  width: 100px;
  height: auto;
  display: none; /* hide both by default */
}

/* Default navbar (transparent over hero image = dark background) */
.navbar .logo-light {
  display: inline-block;
}

/* Solid navbar (after scroll, light background) */
.navbar.solid .logo-dark {
  display: inline-block;
}


/*-- Remove Button Outline --*/
button:focus, a:focus, a.btn:focus {
   outline: 0;
   -webkit-appearance: none;
   box-shadow: none;
   transition: all .6s ease;
}
button, a, a.btn,
.svg-inline--fa {
   transition: all .6s ease;
}

/*============= LANDING PAGE =============*/

/*--- Fixed Landing Page Section --*/
.landing {
   position: relative;
   width: 100%;
   height: 100vh;
   display: table;
   z-index: -1;
}
.home-wrap {
   clip: rect(0, auto, auto, 0);
   position: absolute;
   height: 100%;
   width: 100%;
   top: 0;
   left: 0;
}
/* Base styles for all home-inner variations */
.home-inner {
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: fixed;
   height: 100%;
   width: 100%;
   -webkit-transform: translateZ(0);
   transform: translateZ(0);
   will-change: transform;
   display: table;
}

/* Specific instances with their animations */
.home-inner {
   composes: home-inner-base;
   background-image: url('../img/upsidedownbuilding.jpg');
   animation: imageSliderIndex 60s infinite; 
   -webkit-animation: imageSliderIndex 60s infinite;
}

.home-inner-family-law {
   
   background-image: url('../img/upsidedownbuilding.jpg');
   animation: imageSliderFamilyLaw 60s infinite;
   -webkit-animation: imageSliderFamilyLaw 60s infinite;
}

.home-inner-criminal-law {
   
   background-image: url('../img/upsidedownbuilding.jpg');
   animation: imageSliderCriminalLaw 60s infinite;
   -webkit-animation: imageSliderCriminalLaw 60s infinite;
}

.home-inner-immigration-law {
   
   background-image: url('../img/upsidedownbuilding.jpg');
   animation: imageSliderImmigrationLaw 60s infinite;
   -webkit-animation: imageSliderImmigrationLaw 60s infinite;
}

/* Animations */
@keyframes imageSliderIndex {
  0%, 100% {
    background-image: url('../img/upsidedownbuilding.jpg');
  }
  50% {
    background-image: url('../img/fenderbender.png');
  }
}

@keyframes imageSliderFamilyLaw {
  0%, 100% {
    background-image: url('../img/upsidedownbuilding.jpg');
    background-size: cover; /* Ensures consistency */
    background-position: center center; /* Lock position */
    background-repeat: no-repeat; /* Prevent tiling */
  }
  50% {
    background-image: url('../img/family-law-backdrop2.png');
    background-size: cover; /* Ensures consistency */
    background-position: center center; /* Lock position */
    background-repeat: no-repeat; /* Prevent tiling */
  }
}

@keyframes imageSliderCriminalLaw {
  0%, 100% {
    background-image: url('../img/upsidedownbuilding.jpg');
    background-size: cover; /* Ensures consistency */
    background-position: center center; /* Lock position */
    background-repeat: no-repeat; /* Prevent tiling */
  }
  50% {
    background-image: url('../img/criminal-law-backdrop.png');
    background-size: cover; /* Ensures consistency */
    background-position: center center; /* Lock position */
    background-repeat: no-repeat; /* Prevent tiling */
  }
}

@keyframes imageSliderImmigrationLaw {
  0%, 100% {
    background-image: url('../img/upsidedownbuilding.jpg');
  }
  50% {
    background-image: url('../img/immigration-law-backdrop.png');
  }
}


.home-inner-worldmap {
   position: fixed;
   background-image: url('../img/new_clifftop_street.png');
   height: 100%;
   width: 100%;
   background-size: cover;
   background-position: center center;
   -webkit-transform: translateZ(0);
   transform: translateZ(0);
   will-change: transform;
   display: table;
   
}


.home-inner-kenya {
   position: fixed;
   background-image: url('../img/kenya.png');
   height: 100%;
   width: 100%;
   background-size: cover;
   background-position: center center;
   -webkit-transform: translateZ(0);
   transform: translateZ(0);
   will-change: transform;
   display: table;
   
}

.home-inner-congo {
   position: fixed;
   background-image: url('../img/bukavu-river-front.jpg');
   height: 100%;
   width: 100%;
   background-size: cover;
   background-position: center center;
   -webkit-transform: translateZ(0);
   transform: translateZ(0);
   will-change: transform;
   display: table;
   
}

.home-inner-phillipines {
   position: fixed;
   background-image: url('../img/phillipines.jpg');
   height: 100%;
   width: 100%;
   background-size: cover;
   background-position: center center;
   -webkit-transform: translateZ(0);
   transform: translateZ(0);
   will-change: transform;
   display: table;
   
}

.home-inner-southKorea {
   position: fixed;
   background-image: url('../img/seoul.jpg');
   height: 100%;
   width: 100%;
   background-size: cover;
   background-position: center center;
   -webkit-transform: translateZ(0);
   transform: translateZ(0);
   will-change: transform;
   display: table;
   
}

.home-inner-china {
   position: fixed;
   background-image: url('../img/shanghai-flag.png');
   height: 100%;
   width: 100%;
   background-size: cover;
   background-position: center center;
   -webkit-transform: translateZ(0);
   transform: translateZ(0);
   will-change: transform;
   display: table;
   
}
.home-inner-hispanophone {
   position: fixed;
   background-image: url('../img/spanish.jpg');
   height: 100%;
   width: 100%;
   background-size: cover;
   background-position: center center;
   -webkit-transform: translateZ(0);
   transform: translateZ(0);
   will-change: transform;
   display: table;
   
}
/*-- Landing Page Caption --*/
.caption {
   z-index: 1;
   position: absolute;
   top: 38%;
   width: 100%;
   max-width: 100%;
}
.caption h1 {
   font-size: 4.5rem;
   letter-spacing: .3rem;
   text-shadow: .1rem .1rem .8rem black;
   padding-bottom: 1rem;
}
.caption h3 {
   font-size: 2.5rem;
   text-shadow: .1rem .1rem .5rem black;
   padding-bottom: 2rem;
}
.caption .btn-lg {
   border-width: medium;
   padding: .8rem 1.5rem;
   font-size: 1.1rem;
}

/*-- Bouncing Down Arrow --*/
.arrow {
   position: absolute;
   bottom: 0;
   width: 100%;
   animation: bounce 2s infinite;
   -webkit-animation: bounce 2s infinite;
}
.down-arrow .svg-inline--fa {
   color: white;
   font-size: 2.2rem;
   opacity: .3;
}
.down-arrow .svg-inline--fa:hover {
   opacity: .8;
}

/*============= FEATURES SECTION =============*/

.btn-sm {
   border-width: medium;
   border-radius: 0;
   padding: .5rem 1.1rem;
   text-transform: uppercase;
   font-size: .9rem;
   margin: 1rem;
}
.btn-nuno {
   background-color: #1EBBA3;
   color: white;
}
.btn-nuno:hover {
   background-color: #189582;
   color: white;
}
h3.heading {
   text-transform: uppercase;
   font-weight: 700;
   font-size: 1.9rem;
   text-align: center;
   margin-bottom: 1.9rem;
}
.heading-underline {
   width: 3rem;
   height: .2rem;
   background-color: #1EBBA3;
   margin: 0 auto 2rem;
}

.p-underline {
   width: 9rem;
   height: .2rem;
   background-color: #1EBBA3;
   margin: 0 auto 2rem;
}
.feature span {
   color: #C9A04F;
   margin-bottom: .6rem;
}
.feature h3 {
   text-transform: uppercase;
   font-size: 1.3rem;
   padding-bottom: .4rem;
}

.feature-title {
  font-size: 6.2rem;
  font-weight: bold;
  color: #1EBBA3;
  margin: 0;
}

/*===== FIXED BACKGROUND IMG DARK =====*/

/*--- iOS Fixed Background Image --*/
.fixed {
   position: relative;
   width: 100%;
   overflow: hidden;
}
.fixed-wrap {
   clip: rect(0, auto, auto, 0);
   position: absolute;
   height: 100%;
   width: 100%;
   top: 0;
   left: 0;
   z-index: -9999;
}
.fixed-dark {
   background-image: url('../img/fixed/rear-end2.png');
   position: fixed;
   background-attachment: fixed;
   height: 100%;
   width: 100%;
   background-size: cover;
   background-position: center center;
   -webkit-transform: translateZ(0);
   transform: translateZ(0);
   will-change: transform;
   z-index: -1;
   top: 0;
   left: 0;
   display: table;
}
.dark {
   background-color: rgba(0, 0, 0, .7);
   padding: 7rem 0;
   z-index: 1000;
}

.Settlement {
    background: url('../img/settlement2.jpg') no-repeat center center/cover;
    position: relative;
    z-index: 1;
}

.Portrait{
  background: url('../img/team/Firm_Group_Picture.jpg') no-repeat center center/cover;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
}


/*============= REAR END SECTION =============*/

.section {
      font-weight: 300; /* Thin text */
      font-size: 1.5rem; /* Big letters */
      line-height: 1.8;
      margin-bottom: 30px;
    }

.section-title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: uppercase;
    
}
    
.section-mini-title{
 font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
 
}
    

/*============= PORTFOLIO SECTION =============*/

.portfolio-item img:hover {
   transform: scale(1.3);
   cursor: zoom-in;
}
.portfolio-item img {
   transition: transform .4s ease;
}

/*============= PRICING SECTION =============*/

.pricing-column {
   background-color: white;
   background-image: url('../img/fixed/career_background.png');
   height: 100%;
   padding: 1.6rem;
   border-top: .25rem solid #1EBBA3;
   box-shadow: 0 0 .8rem rgba(0, 0, 0, .075);
   transition: transform .7s ease;
   position: relative;
   overflow: hidden;
}
.pricing-column:hover {
   transform: scale(1.1);
}
.pricing-column h4 {
   font-size: 1.1rem;
   font-weight: 700;
}
.ribbon {
   background-color: #6c757d;
   color: white;
   font-size: .8rem;
   font-weight: 700;
   height: 2rem;
   width: 10rem;
   padding-top: .4rem;
   position: absolute;
   transform: rotate(45deg);
   right: -2.8rem;
   top: 1.5rem;
   box-shadow: 0 0 .2rem rgba(0, 0, 0, .25);
}

/*============= TEAM / RIDE SHARE SECTION FIXED BG IMG LIGHT =============*/

/*--- Team Light Background Image --*/
.fixed-light {
   background-image: url('../img/fixed/office-mobile.jpg');
   position: fixed;
   background-attachment: fixed;
   height: 100%;
   width: 100%;
   background-size: cover;
   background-position: center center;
   -webkit-transform: translateZ(0);
   transform: translateZ(0);
   will-change: transform;
   z-index: -1;
   top: 0;
   left: 0;
   display: table;
}
.light {
   background-color: rgba(255, 255, 255, .75);
   padding: 5rem 0;
   z-index: 1000;
}
.owl-stage {
   display: flex;
}
.card {
   height: 100%;
   border-radius: 0;
   text-align: center;
   margin: 0 1rem;
   border: .1rem solid rgba(0, 0, 0, .075);
   box-shadow: 0 0 .8rem rgba(0, 0, 0, .075);
   transition: transform .4s ease;
}
.card:hover {
   transform: scale(.95);
}
button.owl-dot.active span,
button.owl-dot:hover span {
   background: #1EBBA3!important;
}
ul.social {
   list-style: none;
   padding: 0;
   margin: 0;
   font-size: 1.5rem;
}
ul.social li {
   display: inline;
   padding-right: .8rem;
}
ul.social li a {
   color: #1EBBA3;
   transition: all .2s ease;
}
ul.social li a:hover {
   color: #505962;
}

/*============= CONTACT SECTION =============*/
.site-footer__locations {
  font-family: Arial, sans-serif;
  background-color: #1a1a1a; /* Dark background like the image */
  padding: 10px;
}

.site-footer__regions-label {
  color: #7c7c7c;
  font-weight: bold;
  margin-right: 8px;
}

.site-footer__locations-list {
  display: inline;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__locations-list li {
  display: inline;
  margin: 0 5px;
  color: #aaa;
}

.site-footer__locations-list li::before {
  content: "/";
  margin-right: 5px;
  color: white;
}

.site-footer__locations-list li:first-child::before {
  content: "";
  margin-right: 0;
}

.site-footer__locations-list a {
  text-decoration: none;
  color: #aaa;
}

.site-footer__locations-list a:hover {
  color: white;
}



/*============= CLIENTS SECTION =============*/

#clients-carousel {
   max-width: 1200px;
   margin: 0 auto;
}
.clients img {
   border-radius: 50%;
   transition: transform .3s ease;
}
.clients img:hover {
   transform: scale(.95);
}
blockquote .svg-inline--fa {
   margin: 1rem;
   color: #1EBBA3;
}
.clients-hr {
   border-top: .1rem solid #1EBBA3;
}


#bicycle .fixed-dark {
  background-image: url('../img/fixed/bicycle-injury.png'); /* Your new image */
  background-size: cover;
  background-position: center;
}

#rear-end .fixed-dark {
  background-image: url('../img/rear-end.png'); /* Your new image */
  background-size: cover;
  background-position: center;
}


 /*============= PORTRAIT SECTION =============*/
       .Portrait{
          /* Image + overlay */
          background: url('img/team/Firm_Group_Picture.jpg') no-repeat center/cover;
        
          /* Responsive height control */
          min-height: clamp(420px, 1000vh, 1320px);
          /* ^ min 420px, usually 90% of viewport height, never more than 1320px */
        
          
          align-items: center;
          justify-content: center;
          text-align: center;
          color: #fff;
        }
        
        /* If the image is very wide, keep important faces centered */
        .Portrait { background-position: 50% 40%; }
        
        /* Tablets: don’t let it dominate the page height */
        @media (max-width: 991.98px){
          .Portrait{
            min-height: clamp(380px, 75vh, 980px);
            background-position: 50% 45%;
          }
        }
        
        /* Phones: a bit shorter & slightly higher focal point */
        @media (max-width: 575.98px){
          .Portrait{
            min-height: clamp(320px, 50vh, 760px);
            background-position: 50% 35%;
          }
        
          /* Optional: tighter heading text inside */
          .Portrait .heading{
            font-size: clamp(1.25rem, 6vw, 2rem);
          }
        }

/*============= END OF PORTRAIT SECTION =============*/


/*============= CONTACT SECTION =============*/

.footer {
   
   background-size: cover;
   color: white;
   /* background-color: #505962; */
}
.row.outer {
   background-color: rgba(57, 63, 70, .85);
   padding: 1rem 2rem 3rem;
}
.footer img {
   height: 2rem;
   margin: 1.5rem 0;
}
.footer a,
.footer ul.social li a {
   color: white;
}
.footer ul.social li a:hover {
   color: #1EBBA3;
}
.footer h3 {
   text-transform: uppercase;
   margin: 1.5rem 0;
}

/*--- Contact Form --*/
.form-group {
   margin-bottom: 1.3rem;
}
.form-control {
   background-color: #53595f;
   border-radius: 0;
   border: .15rem solid #666b71;
   color: white!important;
   font-size: 1.1rem;
}
.form-control:focus {
   background-color: #53595f;
   border: .15rem solid #666b71;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
   color: #b2b5b8!important;
}
hr.socket {
   border-top: .2rem solid #666b71;
   width: 100%;
}

.rule{
  rule-h: 10px;
  border:0;
  height: var(--rule-h);
  margin: 1.25rem 0 0 0;
  background:
    radial-gradient(closest-side, var(--accent) 99%, #0000) left    / 10px var(--rule-h) no-repeat,
    linear-gradient(90deg, #0000, var(--accent), #0000);
  mask:
    linear-gradient(#000 0 0) center/ calc(100% - 16px) 2px no-repeat,
    radial-gradient(closest-side, #000 99%, #0000) left/10px var(--rule-h) no-repeat;
  opacity:.85;
  border-radius:999px;
}

/*============= TOP SCROLL =============*/

a.top-scroll {
   right: 1.2rem;
   bottom: 1.2rem;
   position: fixed;
   opacity: .3;
   z-index: 1000;
   display: none;
}
a.top-scroll:hover {
   opacity: .5;
}
.top-scroll .svg-inline--fa {
   background: white;
   color: #53595f;
   font-size: 3rem;
   height: 1.7rem;
}

/*============= MEDIA QUERIES =============*/

/* Devices under 992px (lg) */
@media (max-width: 991.98px) {
   .caption h1 {
      font-size: 3.5rem;
      letter-spacing: .2rem;
      padding-bottom: .8rem;
   }
   .caption h3 {
      font-size: 2.2rem;
      padding-bottom: 1.7rem;
   }
   .caption .btn-lg {
      padding: .7rem 1.2rem;
      font-size: 1rem;
   }
   .clients img {
      max-width: 50%;
      margin: 0 auto;
   }
   .feature-title {
    font-size: 4.5rem;
  }
   
   
}

/* Devices under 768px (md) */
@media (max-width: 767.98px) {
   .caption h1 {
      font-size: 2.7rem;
      letter-spacing: .15rem;
      padding-bottom: .5rem;
   }
   .caption h3 {
      font-size: 1.7rem;
      padding-bottom: 1.2rem;
   }
   .caption .btn-lg {
      padding: .6rem 1.1rem;
   }
   #features h1 {
      font-size: 2rem;
   }
   .fixed-dark {
      background-image: url('../img/fixed/apple-mobile.jpg')
   }
   .fixed-light {
      background-image: url('../img/fixed/office-mobile.jpg')
   }
   .footer {
      background: url('../img/footer/footer-mobile.jpg') no-repeat;
   }
   .top-scroll {
      display: none!important;
   }
   
   .feature-title {
    font-size: 3rem;
  }
   
}

/* Devices under 576px (sm) */
@media (max-width: 575.98px) {
   .caption h1 {
      font-size: 1.9rem;
      letter-spacing: .1rem;
      padding-bottom: .4rem;
   }
   .caption h3 {
      font-size: 1.2rem;
      padding-bottom: 1rem;
   }
   .caption .btn-lg {
      padding: .4rem .9rem;
      font-size: .9rem;
   }
   .feature-title {
    font-size: 2.2rem;
  }
   
}


/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/
