:root {

  /* Colours */
  --neutral-100: #F4F4F4;
  --neutral-200: #D7D7D7;
  --neutral-300: #818181;
  --neutral-400: #717171;
  --neutral-500: #5C5C5C;
  --neutral-600: #353A40;

  --primary-100: #BDC6E7;
  --primary-200: #425DBB;
  --primary-300: #453AC6;
  --primary-400: #2240AB;
  --primary-500: #112F99;
  --primary-600: #082179;

  --grad-600: rgba(0, 6, 27, 0.5);
  --grad-300: rgba(69,58,198,0);

  --grad-100: rgba(17, 47, 153, .9);
  --grad-200: rgba(69,58,198,.9);

  --success-100: #B4E7DF;
  --success-200: #2AB9A5;

  --danger-100: #E8B4B7;
  --danger-200: #BD2832;

  --white: #ffffff;
  --black: #000000;

  /* Font Weights */
  --regular: 400;
  --medium: 500;


  --semi-bold: 600;
}

html {
  font-size: 62.5%;
}

body {
  background: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: var(--regular);
  font-size: 1.6rem;
  line-height: 2.4rem;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

/*--------------------------BADGE--------------------------*/
.badge {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.badge img {
  width: 250px;
  height: auto;
}

.badge-text-box {
  max-width: 600px;
  padding: 10 20px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.uline {
  width: 200px;
  height: 6px;
  background: var(--primary-400);
  margin-top: 18px;
}

.badge h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
  color: var(--neutral-600);
}

@media(max-width: 768px) {
  .badge {
    flex-direction: column;
    align-items: center;
  }

  .badge h3 {
    font-size: 24px;
  }  
}

@media(max-width: 448px) {
  .badge h3 {
    font-size: 24px;
    line-height: 36px;
    padding-top: 16px;
  }  
}

/*------------------- 00. Helper Class ------------------- */
.position-relative { 
  position: relative;
}

.position-absolute { 
  position: absolute;
}

.mb-0 {
  margin-bottom: 0!important;
}

/*------------------- 01. Navigation Menu ------------------- */

/*1.1 Mobile Navigation*/
  /* Navbar */
  .navbar {
    padding: 14px 0;
    box-shadow: 0 0 40px 0 rgba(92, 92, 92, .2);
    position: fixed;
    background-color: var(--white);
    width: 100%;
    z-index: 9990;
    top: 0;
  }

  @media (min-width: 992px) {
    .navbar {
      display: flex;
      padding: 0;
      top: 30px;
    }
  }
  /* Logo */
  .logo {
    height: 36px;
    width: auto;
  }

  @media (min-width: 992px) {
    .logo {
      height: 48px;
      width: auto;
    }
  }

  /* Hamburger Icon */
  .hamburger-icon {
    margin-top: 2px;
    width: 36px;
    height: 28px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
  }

  .hamburger-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--primary-400);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }

  .hamburger-icon span:nth-child(1) {
    top: 0px;
  }

  .hamburger-icon span:nth-child(2) {
    top: 12px;
  }

  .hamburger-icon span:nth-child(3) {
    top: 24px;
  }

  .hamburger-icon.open span:nth-child(1) {
    top: 12px;
    transform: rotate(135deg);
  }

  .hamburger-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  .hamburger-icon.open span:nth-child(3) {
    top: 12px;
    transform: rotate(-135deg);
  }

  @media (min-width: 992px) {
    .hamburger-icon {
      display: none;
    }
  }

  /* Dropdown Menu */
  .dropdown-menu {
    display: none;
    background-color: var(--white);
    padding: 16px 0;
    position: fixed;
    top: 64px;
    width: 100%;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 0 40px 0 rgba(92, 92, 92, .2);
    z-index: 9980;
  }

  .dropdown-menu.expand {
    display: block;
  }

  ul li a {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: var(--medium);
    padding: 8px 0;
    display: inline-block;
    width: 100%;
  }

  ul li a:hover,
  ul li a:active,
  ul li a:focus {
    color: var(--primary-500);
  }

  .phone_time img {
    margin-bottom: 4px;
  }

  @media (min-width: 992px) {
    .dropdown-menu {
      display: none;
    }
  }

/*1.2 Desktop Navigation*/
/* Before nav */
.before-nav {
  background-color: var(--primary-400);
  position: fixed;
  top: 0;
  width: 100%;
  display: none;
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: var(--white);
  padding: 4px 0;
  z-index: 9999;
}

.before-nav a {
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: var(--white);
  padding: 0;
}

@media (min-width: 992px) {
  .before-nav {
    display: flex;
  }
}

.desk-phone_time {
  width: 390px;
}

.desk-phone_time li a:hover {
  color: var(--primary-100);
  transition: .3s ease-in-out;
}

.desk-phone_time img {
  height: 18px;
  width: auto;
  margin-bottom: 3px;
  padding-right: 4px;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

.desktop-nav li a {
  padding: 28px 16px 24px;
  display: block;
  font-weight: var(--medium);
  border-bottom: 4px solid var(--white);
}

.desktop-nav li a:hover {
  border-bottom: 4px solid var(--primary-400);
  transition: .5s ease-in-out;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
  }
}

/* Display active nav item */
.nav-active {
  border-bottom: 4px solid var(--primary-400) !important;
}

/*------------------- 02. Buttons ------------------- */
.btn {
  color: var(--white);
  border-radius: 4px;
  font-weight: var(--medium);
  border: none!important;
  text-decoration: none;
  display: inline-block;
}

.btn-link {
  color: var(--primary-400);
  text-decoration: none;
  font-weight: var(--medium);
}

.btn-small {
  padding: 9px 20px !important;
  font-size: 1.6rem;
  line-height: 2.2rem;
}

.btn-medium {
  padding: 10px 20px !important;
  font-size: 1.8rem;
  line-height: 2.5rem;
}

.btn-large {
  padding: 15px 30px !important;
  font-size: 2.0rem;
  line-height: 2.6rem;
}

.btn-primary {
  background: var(--primary-400);
}

.btn-white {
  background: var(--white);
  color: var(--primary-600);
}

.btn-primary:hover {
  background: var(--primary-600);
  color: var(--white);
  transition: .3s ease-in-out;
}

/*------------------- 03. Main ------------------- */
.main {
  margin-top: 64px;
  position: relative;
}

@media (min-width: 992px) {
  .main {
    margin-top: 110px;
  }
}

/*------------------- 04. Hero ------------------- */

.hero-section {
  background-image: linear-gradient(45deg, var(--grad-600), var(--grad-300)),
  url('../images/hero-bg.jpg');
}
/* Left Item */
.item-left {
  padding: 76px 0 66px;
  width: 100%;
}

@media (min-width: 768px) {
  .item-left {
    width: 370px;
  }
}

@media (min-width: 992px) {
  .item-left {
    width: 500px;
  }
}

@media (min-width: 1200px) {
  .item-left {
    width: px;
  }
}

.hero-section h1 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: var(--semi-bold);
  margin-bottom: 11px;
  color: var(--white);
}

@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 4.8rem;
    line-height: 6.3rem;
  }
}

@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 4.8rem;
    line-height: 6.3rem;
  }
}

.hero-section p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-family: "Manrope", sans-serif;
  font-weight: var(--regular);
  margin-bottom: 28px;
  color: var(--white);
}

@media (min-width: 992px) {
  .hero-section p {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

/* Right Item */
.item-right {
  bottom: 0;
  right: 0;
}

.item-right img {
  display: none;
}

@media (min-width: 768px) {
  .item-right img {
    display: block;
    width: 311px;
    height: auto;
  }
}

@media (min-width: 992px) {
  .item-right img {
    width: 355px;
  }
}

@media (min-width: 1200px) {
  .item-right img {
    width: 375px;
  }
}

/* Section Title */
.section-container {
  max-width: 992px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--semi-bold);
  color: var(--neutral-600);
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
    line-height: 4.5rem;
    margin-top: 40px;
    margin-bottom: 8px;
  }
}

@media (min-width: 992px) {
  .section-title {
    font-size: 4rem;
    line-height: 6rem;
    margin-top: 40px;
    margin-bottom: 8px;
  }
}

/* Section Sub-title */
.section-sub {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--medium);
  color: var(--neutral-400);
  font-family: "Manrope", sans-serif;
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .section-sub {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .section-sub {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

/*------------------- 05. Cards ------------------- */
.cards-section {
  flex-direction: column;
}

@media (min-width: 768px) {
  .cards-section {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* Card-1 */
.card-1 {
  margin-bottom: 24px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .card-1 {
    margin-bottom: 36px;
  }
}

.card-1:hover .card-banner img {
  transform: scale(1.1);
  cursor: pointer;
  transition: .3s ease-in-out;
}

@media (min-width: 768px) {
  .card-1 {
    width: 48%;
  }
}

@media (min-width: 992px) {
  .card-1 {
    width: 32%;
  }
}

@media (min-width: 1200px) {
  .card-1 {
    width: 349px;
  }
}

.card-banner {
  overflow: hidden;
}

.card-1 .card-banner img {
  width: 100%;
  height: auto;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: .3s ease-in-out;
}

.card-1 .card-body {
  padding: 16px 0 24px;
}

.card-1 .card-title {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: var(--semi-bold);
  color: var(--neutral-600);
  font-family: "Poppins", sans-serif;
  margin-bottom: 4px;
}

.card-1 .card-subtitle {
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: var(--regular);
  color: var(--neutral-300);
  font-family: "Manrope", sans-serif;
  margin-bottom: 16px;
  display: none;
}

.card-1 .card-desc {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--regular);
  color: var(--neutral-400);
  font-family: "Manrope", sans-serif;
  margin-bottom: 16px;
}
/*--------------- NEW BOX ---------------*/
.experience {
  display: flex;
  flex-direction: column;
  padding: 24px 0 48px;
  margin-top: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .experience {
    flex-direction: row;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .experience {
    padding: 24px 0 80px;
  }
}

@media (min-width: 1200px) {
  .experience {
    padding: 24px 0 120px;
  }
}

.box1 {
  height: 260px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .box1,
  .box2 {
    width: 50%;
    height: auto;
  }
}

.cont {
  height: 100%;
  width: calc(50% - 6px);
}

.cont:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.img-box {
  width: 100%;
  height: calc(50% - 6px);
  background-size: cover;
  border-radius: 4px;
}

.img-box:first-of-type {
  background-image: url('../images/exp/c_exp02.jpg');
}

.img-box:last-of-type {
  background-image: url('../images/exp/c_exp03.jpg');
}

.expertise .img-box:first-of-type {
  background-image: url('../images/us-flag.jpg');
}

.expertise .img-box:last-of-type {
  background-image: url('../images/flyer.jpg');
}

.box2 {
  margin-top: 8px;
}

@media (min-width: 768px) {
  .box2 {
    padding-left: 24px;
    margin-top: 0;
  }
}

.img1 {
  width: 100%;
  height: 100%;
  object-fit:cover;
  border-radius: 4px;
}

.img2 {
  width: 100%;
  height: 40%;
  object-fit:cover;
}

.heading2 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: var(--semi-bold);
  color: var(--neutral-600);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .heading2 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
}

@media (min-width: 992px) {
  .heading2 {
    font-size: 3.6rem;
    line-height: 5.4rem;
  }
}

@media (min-width: 1200px) {
  .heading2 {
    font-size: 4rem;
    line-height: 6rem;
  }
}
/*----------------------------------------- TRESTCODE -----------------------------------------*/
/*----------------------------------------- TRESTCODE -----------------------------------------*/
.expertise .experience {
  padding-bottom: 0;
}

.attorney-profile .experience {
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .attorney-profile .experience {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.attorney-profile .box1 {
  max-height: 100%;
}

@media (min-width: 992px) {
  .attorney-profile .box1 {
    max-height: 350px;
  }
}

.attorney-profile .heading2 {
  margin-bottom: 10px;
}

.attorney-profile .box2 p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-family: "Manrope", sans-serif;
  font-weight: var(--regular);
  color: var(--neutral-600);
}

@media (min-width: 992px) {
  .attorney-profile .box2 p {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.attorney-profile .box2 p:last-of-type {
  margin-bottom: 0;
}

/*----------------------------------------- TRESTCODEEnD -----------------------------------------*/
/*----------------------------------------- TRESTCODEEnD -----------------------------------------*/
.box2 p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-family: "Manrope", sans-serif;
  font-weight: var(--regular);
  color: var(--neutral-600);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .box2 p {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

@media (min-width: 768px) {
  .box2 p {
    font-size: 1.8rem;
    line-height: 2.7rem;
    margin-bottom: 28px;
  }
}

@media (min-width: 1200px) {
  .box2 p {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 48px;
  }
}

/*--------------- Papwerwork section ---------------*/
.paperwork {
  display: flex;
  margin-bottom: 48px;
}

@media (min-width: 1200px) {
  .paperwork {
    margin-bottom: 80px;
  }
}

.paperwork .p-sec {
  width: 100%;
}

@media (min-width: 768px) {
  .paperwork .p-sec {
    width: 50%;
  }
}

.paperwork .p-sec:first-of-type {
  background-size: cover;
  border-radius: 4px 0 0 4px;
  background-image: url('../images/paperwork.jpg');
  background-position:  center center;
  display: none;
}

.about-lawrence.paperwork .p-sec:first-of-type {
  background-image: url('../images/Lawrence-Fong-Photo2.png');
}

@media (min-width: 768px) {
  .paperwork .p-sec:first-of-type {
    display: block;
  }
}

.paperwork .p-sec:last-of-type {
  background: linear-gradient(100deg, var(--primary-300), var(--primary-500));
  padding: 24px;
  border-radius: 0 4px 4px 0;
}

.about-lawrence.paperwork .p-sec:last-of-type {
  background: linear-gradient(100deg, var(--neutral-500), var(--neutral-600));
}

@media (min-width: 768px) {
  .paperwork .p-sec:last-of-type {
    padding: 64px 40px;
  }
}

.paperwork h2 {
  color: var(--white);
}

.paperwork p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--white);
}

.paperwork p:first-of-type {
  margin-bottom: 24px;
}

.paperwork p:last-of-type {
  margin-bottom: 32px;
}

/*--------------- Seminar section ---------------*/
.seminar {
  background-color: var(--neutral-100);
}

.seminar .container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .seminar .container {
    flex-direction: row;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .seminar .container {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.video {
  width: 100%;
  height: auto;
  order: 4;
  margin-bottom: 38px;
}

@media (min-width: 768px) {
  .video {
    margin-bottom: 0;
  }
}

.video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .video,
  .video-desc {
    width: 50%;
  }
}

.video-desc {
  order: 3;
  margin-bottom: 21px;
}

@media (min-width: 768px) {
  .video-desc {
    order: 5;
    margin-left: 20px;
    margin-bottom: 0;
  }
}

.video-desc h3 {
  font-family: "Poppins", sans-serif;
  font-weight: var(--semi-bold);
  font-size: 2rem;
  line-height: 3rem;
  color: var(--neutral-600);
  margin-bottom: 10px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .video-desc h3 {
    font-size: 2.2rem;
    line-height: 3.3rem;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .video-desc h3 {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }
}

.video-desc p {
  font-family: "Manrope", sans-serif;
  font-weight: var(--regular);
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--neutral-600);
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .video-desc p {
    font-size: 2rem;
    line-height: 3rem;
  }
}

/*--------------- Testimonial section ---------------*/
.testimonial {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .testimonial {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .testimonial {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (min-width: 1200px) {
  .testimonial {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.text-container {
  background-image: linear-gradient(100deg, var(--grad-200), var(--grad-100)),
  url('../images/testimonial-bg.jpg');
  padding: 24px;
  border-radius: 4px;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 768px) {
  .text-container {
    padding: 56px 0;
  }
}

@media (min-width: 992px) {
  .text-container {
    padding: 80px 0;
  }
}

.text-container h3 {
  font-family: "Poppins",sans-serif;
  font-weight: var(--semi-bold);
  font-size: 2.2rem;
  line-height: 3.3rem;
  color: var(--white);
  margin-bottom: 4px;
  text-align: center;
}

@media (min-width: 768px) {
  .text-container h3 {
    font-size: 2.4rem;
    line-height: 3.6rem;
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .text-container h3 {
    font-size: 4rem;
    line-height: 6rem;
    margin-bottom: 10px;
  }
}

.text-container p {
  font-family: "Manrope",sans-serif;
  font-weight: var(--regular);
  font-size: 1.5rem;
  line-height: 2.1rem;
  color: var(--white);
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .text-container p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin: 0 auto 4px;
    max-width: 560px;
  }
}

@media (min-width: 768px) {
  .text-container p {
    font-size: 1.8rem;
    line-height: 2.7rem;
    margin: 0 auto 4px;
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .text-container p {
    font-size: 2.2rem;
    line-height: 3.3rem;
    max-width: 950px;
  }
}

/*--------------- Footer section ---------------*/
.footer {
  background: var(--neutral-100)
}

.footer-main {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}

@media (min-width: 768px) {
  .footer-main {
    padding-top: 40px;
  }
}

@media (min-width: 992px) {
  .footer-main {
    padding-top: 56px;
  }
}

@media (min-width: 1200px) {
  .footer-main {
    padding-top: 76px;
  }
}

.footer-main p,
.footer-main a {
  color: var(--neutral-500);
  text-decoration: none;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-main h4,
.footer-main a,
.footer-main p {
  font-size: 1.4rem;
  line-height: 2.1rem;
}

@media (min-width: 992px) {
  .footer-main h4,
  .footer-main a,
  .footer-main p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

.about img {
  width: 180px;
  height: auto;
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .about img {
    width: 220px;
    margin-bottom: 24px;
  }
}

.about p {
  margin-bottom: 10px;
}

.about h4 {
  font-family: "Poppins", sans-serif;
  font-weight: var(--semi-bold);
}

.site-links {
  display: flex;
  flex-direction: column;
}

.external-links {
  display: flex;
  flex-direction: column;
}

.about,
.contact,
.site-links,
.external-links {
  width: 100%;
  padding-bottom: 32px;
}

.footer-main a {
  padding-bottom: 5px;
}

.footer-main a:hover {
  color: var(--primary-600);
}

@media (min-width: 768px) {
  .about {
    width: 194px;
  }
}

@media (min-width: 992px) {
  .about {
    width: 322px;
  }
}

@media (min-width: 768px) {
  .contact {
    width: 207px;
  }
}

@media (min-width: 992px) {
  .contact {
    width: 244px;
  }
}

@media (min-width: 768px) {
  .site-links {
    width: 101px;
  }
}

@media (min-width: 992px) {
  .site-links {
    width: 108px;
  }
}

@media (min-width: 768px) {
  .external-links {
    width: 101px;
  }
}

@media (min-width: 992px) {
  .external-links {
    width: 108px;
  }
}

.address,
.phone,
.email,
.time {
  display: flex;
  align-items: flex-start;
}

.contact img {
  width: 20px;
  height: auto;
  margin-right: 8px;
}

@media (min-width: 992px) {
  .contact img {
    width: 24px;
  }
}

/*--------------- Secondary Footer section ---------------*/
.footer-secondary {
  font-size: 1.4rem;
  text-align: center;
  background-color: var(--neutral-100);
  padding: 20px 0;
  border-top: 1px solid var(--neutral-200);
}

.footer-secondary a {
  color: var(--primary-500);
  text-decoration: none;
}

.footer-secondary a:hover {
  color: var(--primary-600);
}

@media (min-width: 992px) {
  .footer-secondary {
    font-size: 1.6rem;
  }
}
/*--------------- Page Banner ---------------*/
.page-banner {
  background: linear-gradient(100deg, var(--primary-300), var(--primary-500));
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .page-banner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (min-width: 992px) {
  .page-banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .page-banner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.banner-title {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: var(--semi-bold);
  margin-bottom: 10px;
  text-align: center;
  color: var(--white);
}

@media (min-width: 768px) {
  .banner-title {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
}

@media (min-width: 992px) {
  .banner-title {
    font-size: 3.6rem;
    line-height: 5.4rem;
  }
}

@media (min-width: 1200px) {
  .banner-title {
    font-size: 4.8rem;
    line-height: 7.2rem;
  }
}

.banner-sub-title {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-family: "Manrope", sans-serif;
  font-weight: var(--regular);
  text-align: center;
  color: var(--white);
}

@media (min-width: 768px) {
  .banner-sub-title {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

@media (min-width: 992px) {
  .banner-sub-title {
    font-size: 2rem;
    line-height: 3rem;
  }
}

@media (min-width: 1200px) {
  .banner-sub-title {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}

/*--------------------- PRACTICE AREAS PAGE ---------------------*/
.practice-areas {
  padding-top: 32px;
}

@media (min-width: 768px) {
  .practice-areas {
    padding-top: 48px;
  }
}

@media (min-width: 992px) {
  .practice-areas {
    padding-top: 56px;
  }
}

@media (min-width: 1200px) {
  .practice-areas {
    padding-top: 80px;
  }
}

/*--------------------- QUERY BANNER ---------------------*/
.query-banner {
  background: linear-gradient(100deg, var(--primary-300), var(--primary-500));
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .query-banner {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 48px;
  }
}

@media (min-width: 992px) {
  .query-banner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1200px) {
  .query-banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.query-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lead-big {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--white);
  margin-bottom: 0;
}

@media(min-width: 768px) {
  .lead-big {
    font-size: 2rem;
    line-height: 3rem;
  }
}

@media(min-width: 992px) {
  .lead-big {
    font-size: 2.2rem;
    line-height: 3.3rem;
  }
}

@media(min-width: 1200px) {
  .lead-big {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}

.button {
  min-width: 130px;
  margin-left: 10px;
}

/*--------------------- CARD 2 ---------------------*/
.resource-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 0;
}

@media (min-width: 768px) {
  .resource-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0;
  }
}

@media (min-width: 992px) {
  .resource-cards {
    padding: 56px 0;
  }
}

.card-2 {
  width: 100%;
  border: 1px solid var(--neutral-200);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .card-2 {
    width: calc(50% - 10px);
  }
}

@media (min-width: 992px) {
  .card-2 {
    width: calc(33.33% - 8px);
  }
}

@media (min-width: 1200px) {
  .card-2 {
    width: calc(25% - 16px);
  }
}

.card-2 .card-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  color: var(--neutral-600);
  font-weight: var(--semi-bold);
  margin-bottom: 8px;
}

.card-2 .card-sub {
  font-family: "Manrope",sans-serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--neutral-300);
  font-weight: var(--regular);
}

.card-2 .btn-small {
  padding: 0!important;
}

/*---------------------- CARD ----------------------*/
.card-3 {
  width: 100%;
  border: 1px solid var(--neutral-200);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .card-3 {
    width: calc(50% - 10px);
  }
}

@media (min-width: 992px) {
  .card-3 {
    width: calc(25% - 10px);
  }
}

.card-3 .img-ico {
  width: 60px;
  height: 60px;
  margin-top: 24px;
  opacity: .3;
  margin-bottom: 20px;
}

.card-3 .card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: var(--neutral-600);
  font-weight: var(--semi-bold);
  margin-bottom: 8px;
}

.card-3 .btn-small {
  padding: 0 !important;
}

/*---------------------- CONTACT ----------------------*/
.contact-us {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

@media (min-width: 992px) {
  .contact-us {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (min-width: 1200px) {
  .contact-us {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.address-box {
  background-image: linear-gradient(100deg, var(--grad-100), var(--grad-200)),
  url('../images/address-bg.jpg');
  background-position: center center;
  background-size: cover;
  border-radius: 4px;
  padding: 32px;
}

@media (min-width: 992px) {
  .address-box {
    width: 300px;
    order: 3;
  }
}

.address-box h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  color: var(--white);
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .address-box h2 {
    font-size: 2.8rem;
    line-height: 3.4rem;
    margin-bottom: 40px;
  }
}

.address-box p {
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--white);
}

@media (min-width: 992px) {
  .address-box p {
    margin-bottom: 40px;
  }
}

.address-box hr {
  background-color: var(--white);
  height: 2px;
  margin-top: 0;
}

@media (min-width: 992px) {
  .address-box hr {
     margin-bottom: 40px;
  }
}

.address-box .item {
  display: flex;
  align-items: flex-start;
}

.address-box .item img {
  margin-right: 10px;
}

/*---------------------- FORM ----------------------*/
.form {
  margin-top: 32px;
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .form {
    margin-top: 0;
    margin-bottom: 0;
    width: calc(100% - 320px);
    order: 2;
  }
}

.form h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  line-height: 2.1rem;
  margin-bottom: 18px;
}

@media (min-width: 992px) {
  .form h3 {
    font-size: 3.2rem;
    line-height: 6.3rem;
  }
}

.label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8rem;
  margin-bottom: 8px;
  font-weight: var(--medium);
  color: var(--black);
}

@media (min-width: 992px) {
  .input-row1 {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .input-row2 {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .input-row1 .input-group {
    width: calc(50% - 5px);
  }
}

@media (min-width: 992px) {
  .input-row2 .input-group {
    width: calc(33% - 5px);
  }
}

.input-group {
  margin-bottom: 24px;
}

.input {
  width: 100%;
  border-radius: 4px;
  border: 2px solid var(--neutral-200);
  height: 47px;
}

.input:focus,
.input:active {
  border: 3px solid var(--primary-400);
  outline: none;
}

.text-area {
  width: 100%;
  height: 88px;
  border: 2px solid var(--neutral-200);
  border-radius: 4px;
}

/*---------------------- YOUTUBE VIDEO ----------------------*/
.video-container-wrapper {
  width: 100%;
  height: 100%;
  background: rgba(37, 37, 37, .7);
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: none;
  opacity: 0;
}

.video-container-wrapper:before {
  content: ' ';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.sizewrapper {
  width: 50%;
  /* Would normally be 1920px, limited because codepen's screen is small */
  max-width: 920px;
  vertical-align: middle;
  position: relative;
  background: rgba(255, 255, 255, 0);
  z-index: 51;
  display: none;
}

#videowrapper {
  position: relative;
  padding-top: 25px;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
}

#videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.close {
  position: absolute;
  right: -42px;
  top: 0;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  background-color: var(--danger-200);
  width: 32px;
  height: 32px;
  border-radius: 4px;
}
/*------------------------ p-sec on attonery page ------------------------*/
.about-lawrence {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .about-lawrence {
    flex-direction: row;
    height: 550px;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .about-lawrence {
    flex-direction: row;
    height: 400px;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .portrait {
    height: 100%;
  }
}

.about-lawrence .portrait {
  height: auto;
  width: 100%;
  background-color: var(--neutral-200);
  border-radius: 4px 4px 0 0;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .about-lawrence .portrait {
    width: 400px;
  }
}

@media (min-width: 1200px) {
  .about-lawrence .portrait {
    width: 330px;
  }
}

.about-lawrence .portrait img {
  border-radius: 4px 4px 0 0;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .about-lawrence .portrait img {
    width: auto;
  }
}

@media (min-width: 768px) {
  .about-lawrence .portrait,
  .about-lawrence .portrait img {
    border-radius: 4px 0 0 4px;
  }
}

.about-lawrence .about-sec {
  background-color: var(--neutral-600);
  border-radius: 0 0 4px 4px;
  padding: 24px;
}

@media (min-width: 768px) {
  .about-lawrence .about-sec {
    border-radius: 0 4px 4px 0;
  }
}

@media (min-width: 768px) {
  .about-lawrence .about-sec {
    width: 50%;
  }
}

.about-lawrence .heading2,
.about-lawrence p {
  color: var(--neutral-100);
}

.about-lawrence p:first-of-type {
  margin-bottom: 24px;
}

/*-------------------- FORM VALIDATION --------------------*/
.error {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: var(--regular);
  color: var(--danger-200);
}

.highlight {
  border: 2px solid var(--danger-200);
}

.unhighlight {
  border: 2px solid var(--success-200);
}