*{
  margin:0px;
  padding:0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color:#252424;
  font-size:16px;
  margin: 0px;
}

h1{
  margin-bottom: 40px;
  margin-top: 0px;
/*  font-family: 'Abril Fatface', cursive;*/
  font-size: 2.5em;
  font-weight: 900;
}

h2{
  margin-top: 0;
  text-transform: uppercase;
  text-align: center;
  font-weight: 200;
  font-size: 1.75em;
  margin-bottom: 40px;
  color: #b8a175;
}

h3{
  margin: 0 0 20px 0;
  font-family: 'Montserrat', sans-serif;
}

p{
  margin: 0 0 20px 0;
  line-height: 1.5em;
}

a{
  text-decoration: none;
  transition: .4s;
}

.center-text{
  text-align: center;
}

ul{
  padding-left: 40px;
  margin-bottom: 20px;
}

ul li{
  margin-bottom: 5px;
}

.subpage-hero h1{
  font-family: 'Montserrat', sans-serif;
}

a.footer-home-link:hover{
  border-bottom: none;
}

p.text-coming-soon{
  text-align: center;
  font-size: 1.15em;
  font-weight: bold;
}

/***FAQ STYLES (same for desktop and mobile)***/

  .accordion {
    width: 100%;
    margin-bottom: 60px;
  }
  .accordion input {
    display: none;
  }
  .box {
    position: relative;
    background: white;
    min-height: 54px;
    transition: all .4s ease-in-out;
    margin-bottom: 15px;
  }
  .box::before {
      content: '';
      /*position: absolute;*/
      display: block;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      pointer-events: none;
      /*box-shadow: 0 -1px 0 #e5e5e5,0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);*/
  }
  .box-title {
    width: 100%;
    min-height: 54px;
    line-height: 1.5em;
    padding: 0 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;
    border: 1px solid #cdcdcd;
    color: #7da7ad;
    font-weight: bold;
  }
  .box-content {
    /*width: 100%;*/
    padding: 20px 20px 0;
    line-height: 1.5em;
    display: none;
  }
  .box-close {
    position: absolute;
    height: 64px;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
  }
  input:checked + .box {
    height: auto;
    margin: 16px 0;
     /* box-shadow: 0 0 6px rgba(0,0,0,.16),0 6px 12px rgba(0,0,0,.32);*/
  }
  input:checked + .box .box-content{
    transition: .4s;
  }
  input:checked + .box .box-content,
  input:checked + .box .box-close {
    display: inline-block;
  }
  .arrows section .box-title {
    padding: 10px 20px;
    width: calc(100% - 44px);
    font-size: 1.05em;
  }
  .arrows section .box-title:before {
    /*position: absolute;*/
    display: block;
    content: '\203a';
    font-size: 25pt;
    margin:0 20px 6px 0;
    /*left: 20px;
    top: -3px;*/
    transition: transform .4s ease-in-out;
    color: rgba(0,0,0,.7);
  }
  input:checked + section.box .box-title:before {
    transform: rotate(90deg);
    margin-bottom: 0px;
  }
  .box-hidden {
      animation: fadeIn .5s;
      -webkit-animation: fadeIn .5s;
      -moz-animation: fadeIn .5s;
      -o-animation: fadeIn .5s;
      -ms-animation: fadeIn .5s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    /*.subpage-hero2{
      background: url(images/city-hero1.jpg) no-repeat center;
      background-size: cover;
    }
    .subpage-hero3{
      background: url(images/city-hero2.jpg) no-repeat 50% 60%;
      background-size: cover;
    }
    .subpage-hero4, 
    .blog-hero{
      background: url(images/city-hero3.jpg) no-repeat 50% 50%;
      background-size: cover;
    }
    .subpage-hero5{
      background: url(images/city-hero4.jpg) no-repeat 50% 20%;
      background-size: cover;
    }*/



@media (min-width: 1100px) {

  .container {
    width:1100px;
    margin:0 auto;
  }

  .content{
    padding: 80px 0;
  }

  /*** HEADER DESKTOP STYLES ***/

  header{
    width: 100%;
    position: fixed;
    top: 0;
    min-height: fit-content;
    z-index: 100;
    transition: .6s;
    background: #252424;
    border-bottom: 1px solid #7da7ad;
  }

  #navContainer .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
/*    padding: 15px 0;*/
  }

  #navContainer img{
    width: 220px;
    height: auto;
    margin-top:2px;
  }

  .topnav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 800px;
    font-size: .9em;
  }

  .topnav a{
    color: #fff;
    padding: 8px 16px;
    /*font-weight: bold;*/
  }

  .topnav a:hover{
    background-color: #7da7ad;
    color: #fff;
  }

  a.header-tel{
    color: #7da7ad;
    margin-right: 10px;
  }

  a.header-appointment{
    border: 1px solid #7da7ad;
  }

  #myTopnav a.icon{
    display: none;
  }

  /*dropdown menu styles*/

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .hidden {
    display: none;
    position: absolute !important;
    z-index: 1;
    padding-top: 10px;
  }

  .hidden a {
    color: #fff;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    background: rgba(125, 167, 173, .9);
    background: rgba(37, 36, 36, .9);
    border-bottom: none;
    font-size: .9em;
    width: 180px;
    transition: .4s ;
  }

  .hidden a:hover{
    background-color: #7da7ad;
    color: #fff;
    border-bottom: none;
    display: block;
    opacity: 1;
  }

  .dropdown:hover .hidden {
    display: block;
  }

  .dropbtn{
    cursor: default;
  }

  a.dropbtn:hover{
    color:#fff;
    background-color:transparent;
  }

  .hidden:hover{
      opacity: 1;
  }

  .hidden {
      animation: fadeIn .5s;
      -webkit-animation: fadeIn .5s;
      -moz-animation: fadeIn .5s;
      -o-animation: fadeIn .5s;
      -ms-animation: fadeIn .5s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

  /***HERO DEKSTOP STYLES***/

  #homepage-hero{
/*    height: 550px;*/
    background:linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/home-hero.webp');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 100px;
  }

  #homepage-hero .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }

  #hero-text{
    width: 500px;
    color: white;
  }

  #hero-text h1{
    color: #7da7ad;
    margin-bottom: 20px;
  }

  #hero-text .second-title {
    font-size: 1.75em;
    color: white;
    font-weight: 700;
  }

  #hero-text img{
    width: 250px;
    height: auto;
    border:1px solid white;
  }

  #hero-text a{
    color: white;
    border: 2px solid #7da7ad;
    padding: 10px 20px;
    width: 200px;
    display: block;
    margin-top: 40px;
    text-align: center;
    text-transform: uppercase;
  }

  #hero-text a:hover{
    background: #7da7ad;
  }

  .contact-form{
    width: 500px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .contact-form input{
    background: transparent;
    width: 44%;
    padding: 10px;
    height: 20px;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #7da7ad;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  input#subject{
    width: 100%;
  }

  .contact-form textarea{
    width: 100%;
    padding: 10px;
    height: 200px;
    border: 2px solid #7da7ad;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
  }

  ::placeholder {
    color: white;
  }

  .contact-form #send-mail{
    width: 160px;
    color: white;
    border: 2px solid #7da7ad;
    padding: 10px 20px;
    height: 40px;
    transition: .4s;
  }

  #send-mail:hover{
    background: #7da7ad;
    cursor: pointer;
  }

  /***MAIN BODY DESKTOP STYLES***/

  #legal-practice-home{
    background: url(images/legal-practice-background.jpg) no-repeat center;background-size: cover;
    padding: 100px 0px;
  }

  #legal-practice-home h2{
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .border-container{
    margin-bottom: 20px;
    text-align: center;
  }

  #legal-practice-home .center-text{
    margin: 0 auto 60px;
    max-width: 600px;
  }

  .practice-area-container{
    margin-bottom: 20px;
  }

  .practice-area{
    width: 1000px;
/*    height: 340px;*/
    border-radius: 10px;
    background-color: #7da7ad;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .4s;
    padding: 20px;
    margin:10px auto;
    z-index: 2;
    position: relative;
  }

  .practice-area h3{
    text-align: center;
    text-transform: uppercase;
  }

  .practice-area:hover{
    background: #b8a175;
  }

  .practice-area img{
    margin-bottom: 20px;
  }

  img.area-icon{
    height: 50px;
    width: 50px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid white;
  }

  .practice-area i{
    height: 50px;
    width: 50px;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 20px;
  }

  .practice-area p{
    height: 48px;
    text-align: center;
  }

  .practice-area-testimony{
    margin:20px auto 60px;
    width: 800px;
    padding:20px 20px 40px; 
    border:1px solid transparent;   
    text-align: center;
    font-size: .9em;
    transition: .6s;
    z-index: 0;
    display: block;
    border-left:1px solid #252424;
    border-right:1px solid #252424;
  }


  a.show-testimony:hover + .practice-area-testimony{
    transform: rotateY(360deg);
    /*-webkit-transform: scaleX(-1);
      transform: scaleX(-1);*/
  }

  .practice-area-testimony h3,
  .practice-area-testimony p {
    margin-bottom: 15px;
  }

  .practice-area-testimony span{
    color: #b8a175;
  }

  /*@keyframes fadeInDown {
    from {
      opacity: .5;
      transform: translate3d(0, -70%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }*/

  #raji-toggle{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    background: #b8a175;
    display: none;
  }

  #raji-toggle h3{
    text-transform: uppercase;
  }

  #rajiTitle{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    min-height: 800px;
  }

  .textLeft{
    padding:40px 60px 20px 160px;
    transition: .4s;
  }

  .text-active, .textLeft:hover
  {
    background: #7da7ad;
    cursor: pointer;
  }

  #raji-description{
    width: 50%;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #b8a175;
  }

  .text-right{
    padding:0 160px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: .4s;
  }

  #textRight2, #textRight3{
    display: none;
  }

  #attorney-home{
    background: url(images/attorney-background-home.jpg) no-repeat center;background-size: cover;
    color: #b8a175;
    text-align: center;
  }

  #attorney-home h2{
    max-width: 800px;
    margin: 0 auto;
    font-weight: 200;
  }

  #team-container-home{
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }

  .team-member{
    position: relative;
/*    height: 283px;*/
    width:  210px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /*adjust opacity for overlay and img when we get images in*/

  .team-member img{
    width: 100%;
    height: auto;
    opacity: 0;
  }

  .team-member:hover{
    cursor: pointer;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: .5s ease;
    background-color: #7da7ad;
  }

  .team-member:hover .overlay {
/*    opacity: 1;*/
    background-color: #b8a175;
  }

  .overlay img{
    width: 18px;
    height: auto;
    margin-bottom: 20px;
  }

  .text {
    color: white;
    position: absolute;
    font-size: 1em;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .text h4{
    text-transform: uppercase;
  }

  .text span{
    font-size: .9em;
    color: #252424;
  }

  .text p{
    padding: 0 20px;
  }

  .text img:nth-of-type(2){
    display: none;
  }

  #team-link {
    margin-top:60px;
    text-align: center;
  }

  #team-link a{
    padding:10px 30px;
    color: white;
    background: #7da7ad;
    border:2px solid #7da7ad;
  }

  #team-link a:hover{
    background: white;
    color: #7da7ad;
  }

  /*client slideshow container*/
  .client-slideshow-container{
    position: relative;
    margin: 120px auto 0;
  }

  /* Hide the images by default */
  .clientSlides {
    display: none;
    flex-direction: column;
    align-items: center;
    border: 1px solid #cdcdcd;
    margin: 0 auto;
    width: 400px;
    padding: 20px 40px 40px;
  }

  .clientSlides img{
    margin-top: -70px;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: none;
  }

  .clientSlides h3{
    text-transform: uppercase;
  }

  .clientSlides span{
    color: #b8a175;
    text-transform: uppercase;
  }

  .clientSlides a{
    text-transform: uppercase;
    color: #b8a175;
    display: none;
  }

  .star-container{
    display: flex;
    justify-content: center;
    color: #b8a175;
  }

  /* Next & previous buttons */
   .prev-client, .next-client {
    cursor: pointer;
    position: absolute;
    width: auto;
    top: 140px;
    padding: 10px;
    background-color: #b8a175;
    color: white;
    border: 2px solid #b8a175;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next-client {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  .prev-client:hover, .next-client:hover{
    color: #b8a175;
    background-color: white;
  }

  #dots{
    text-align: center;
    padding-top: 40px;
  }

  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #fff;
    border: 2px solid #b8a175;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: #b8a175;
  }

  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1s;
    animation-name: fade;
    animation-duration: 1s;
  }

  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }

  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }


  /***SUBPAGE DESKTOP STYLES***/

  .subpage-hero{
    height: 200px;
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/education-advocacy-hero.webp');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    margin-top: 100px;
    color: white;
  }

  .subpage-hero .container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
  }

  .subpage-hero h1{
    margin-bottom: 0px;
  }

  .subpage-content{
    border-bottom: 1px solid #b8a175;
  }

  .subpage-content a{
    color: #252424;
    border-bottom: 1px solid #7da7ad;
    font-weight: bold;
  }

  .subpage-content a:hover{
    color: #7da7ad;
  }

  /***MEET OUR TEAM DESKTOP STYLES***/

  #team-content h1{
    text-align: center;
    text-transform: uppercase;
    font-size: 2em;
  }

  .team-individual{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #cdcdcd;
  }

  .team-individual:nth-of-type(1){
    margin-top: 80px;
  }

  .team-individual:nth-of-type(even){
    flex-direction: row-reverse;
  }

  .team-individual:last-of-type{
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .team-individual img{
    width: 300px;
    height: auto;
  }

  .coming-soon{
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:1px solid;
    color: #7da7ad;
  }

  .team-text{
    width: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .team-text span{
    font-weight: bold;
  }

  .team-text h3{
    margin-bottom: 10px;
  }

  .team-text a{
    color: white;
    padding: 10px 20px;
    background: #b8a175;
    border: 2px solid #b8a175;
    display: block;
    width: 150px;
    margin-top: 20px;
    text-align: center;
  }

  .team-text a:hover{
    background: white;
    color: #b8a175;
  }

  /***PRACTICE AREA INDEX DESKTOP STYLES***/

  .practice-area-links{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-bottom: 60px;
  }

  .practice-area-links:last-of-type{
    margin-bottom: 0px;
  }

  a.full-width-practice{
    width: 100%;
    border-bottom: 1px solid #b8a175;
    margin-bottom: 40px;
  }

  a.full-width-practice:hover{
    color: #b8a175;
  }

  .practice-area-links h3{
    margin-bottom: 0px;
    text-align: center;
  }

  /*.practice-area-links p{
    text-align: center;
    width: 33%;
  }*/

  .practice-area-links p a{
    padding:8px 10px;
    color: white;
    border-bottom: none;
    background: #7da7ad;
    text-align: center;
    display: inline-block;
    width: 230px;
    margin:0 10px;
    font-size: .9em;
  }

  .practice-area-links p a:hover{
    background: #b8a175;
    color: white;
  }

  /***CONTACT DESKTOP STYLES***/

  #contact-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
  }

  .contact-form-container{
    width: 500px;
  }

  .contact-form{
    width: 500px;
  }

  #contact-container input{
    color: #252424;
  }

  #contact-container textarea{
    color: #252424;
  }

  #contact-container ::placeholder {
    color: #252424;
  }

  #contact-container #send-mail{
    color: #7da7ad;
    font-weight: bold;
  }

  #contact-container #send-mail:hover{
    color: white;
  }

  .contact-map{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 600px;
  }

  .contact-map a{
    font-weight: normal;
  }

  .contact-map iframe{
    width: 400px;
    height: 300px;
  }

  /***BLOG INDEX DESKTOP STYLES***/

  .blog-post{
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #7da7ad;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .blog-post:last-child{
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 20px;
  }

  .blog-post img{
    width: 300px;
    height: auto;
  }

  .blog-description{
    margin-left: 60px;
  }

  .blog-description a{
    color: white;
    padding: 10px 16px;
    background: #7da7ad;
    border: 2px solid #7da7ad;
    display: block;
    width: 150px;
    text-align: center;
  }

  .blog-description a:hover{
    color: #7da7ad;
    background: white;
  }

  /*BLOG INDIVIDUAL POST DESKTOP STYLES*/

  .blog-hero{
    text-align: center;
    color: white;
  }

  .blog-hero .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .blog-hero h1{
    margin-bottom: 5px;
  }

  .blog-hero h2{
    font-size: 1.5em;
    margin-bottom: 5px;
  }

  .blog-hero h4{
    color: #b8a175;
  }

  .blog-post-content img{
    margin: 0 auto 40px;
    display: block;
  }

  .back-to-blog{
    margin-top: 60px;
  }

  .back-to-blog a{
    border-bottom: 1px solid #b8a175;
  }

  .back-to-blog a:hover{
    color: #b8a175;
  }

  /***FOOTER DEKSTOP STYLES***/

  footer{
    background: #252424;
    padding: 40px 0 0;
    color: white;
  }

  footer a{
    color: white;
    border-bottom: 1px solid transparent;
  }

  footer a:hover{
    color: #b8a175;
    border-bottom: 1px solid #b8a175;
  }

  .footer-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
  }

  .footer-col:first-child{
    width: 420px;
  }

  /*.footer-col:first-child p{
    font-size: .9em;
  }*/

  .footer-col:nth-child(2){
    width: 230px;
  }

  .footer-col2{
    display: flex;
    justify-content: space-between;
  }

  .footer-col i{
    color: #b8a175;
  }

  .footer-col h4{
    text-transform: uppercase;
    border-bottom: 1px solid #b8a175;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }

  .footer-col span{
    color: #b8a175;
  }

  #sub-footer{
    background: #141414;
    padding: 20px 0;
    font-size: .9em;
  }

  #sub-footer .container{
    display: flex;
    justify-content: space-between;
  }

  #sub-footer p{
    margin-bottom: 0px;
  }

  #sub-footer i{
    margin: 0 10px;
    font-size: 1.5em;
  }

  #sub-footer a:hover{
    color: #7da7ad;
  }
 
}

 @media (max-width: 1099px) {

  .content {
    padding: 60px 20px;
  }

  .container {
    width: 100%;
    margin: 0 auto;
  }

  h2{
    font-size: 1.5em;
  }

  /***** HEADER MOBILE STYLES *****/

  header{
    width: 100%;
    transition: 0.4s;
    position: fixed;
    top: 0;
    z-index: 100;
    background: #252424;
  }

  #navContainer{
    width: 100%;
    border-bottom: 1px solid #7da7ad;
    background: #252424 !important;
  }

  #navContainer img{
    width: 170px;
    height: auto;
    padding-top:4px;
    margin-left: 20px;
  }

  /* Links inside the navbar */
  .topnav a { 
    float: left;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

  /* Add a background color to navbar links on hover */
  .topnav a:hover{
    background-color: #7da7ad;
    color:#fff;
  }

  /* When the screen is less than 1099 pixels wide, hide all links. 
  Show the link that should open and close the topnav (.icon) */
  .topnav a{
    display:none;
  }

  .topnav a.icon {
    display: block;
    position: absolute;
    font-size: 34px;
    top: 0px;
    right: 3px;
    float: right;
    margin: 0px 10px 10px 0;
    color: #fff;
    transition: unset;
  }

  .topnav a.icon:hover{
    background-color:transparent;
    color: #fff;
  }

   /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. 
  This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  .topnav.responsive {
    position: relative; 
    clear:both;
    margin-top: 10px;
    padding: 0 15px 10px;
  }
    .topnav.responsive a.icon {
      position: absolute;
      right:3px;
      top: -92px;
      border-bottom:none;
      transition: unset;
    }

    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
      border-bottom:1px solid #7da7ad;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      text-align: left;
    }

    /* DROPDOWN MENU */

    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      text-align: left;
    }

    /* Dropdown Content */
    .hidden{
      display: none;
      margin: 10px 0;
    }

    .hidden a{
      margin-left: 25px !important;
      font-size: .9em;
    }

     /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
    .show {display:block;}

    .topnav.responsive,
    .hidden {
      animation: fadeIn .5s;
      -webkit-animation: fadeIn .5s;
      -moz-animation: fadeIn .5s;
      -o-animation: fadeIn .5s;
      -ms-animation: fadeIn .5s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }


   /***HERO MOBILE STYLES***/

  #homepage-hero{
    /*height: 400px;*/
    background: linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)), url(images/home-hero.webp);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    margin-top: 83px;
    padding-top: 80px;
  }

  #homepage-hero .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }

  #hero-text{
    color: white;
    text-align: center;
    margin-bottom: 80px;
  }

  #hero-text h1{
    color: #7da7ad;
    margin-bottom: 20px;
    font-size: 2em;
  }

  #hero-text .second-title {
    font-size: 1.75em;
    color: white;
    font-weight: 700;
  }

  #hero-text img{
    width: 250px;
    height: auto;
    border:1px solid white;
  }

  #hero-text a{
    color: white;
    background: #7da7ad;
    padding: 10px 20px;
    width: 200px;
    display: block;
    margin: 40px auto 0;
    text-align: center;
    text-transform: uppercase;
  }

  #hero-text a:hover{
    color: #7da7ad;
    background: white;
  }

  .contact-form{
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .contact-form input{
    background: transparent;
    width: 100%;
    padding: 10px;
    height: 20px;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #7da7ad;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  input#subject{
    width: 100%;
  }

  .contact-form textarea{
    width: 100%;
    padding: 10px;
    height: 200px;
    border: 2px solid #7da7ad;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
  }

  ::placeholder {
    color: white;
  }

  .contact-form #send-mail{
    width: 160px;
    color: white;
    border: 2px solid #7da7ad;
    padding: 10px 20px;
    height: 40px;
    transition: .4s;
  }

  #send-mail:hover{
    background: #7da7ad;
    cursor: pointer;
  }

  /***MAIN BODY MOBILE STYLES***/

  #legal-practice-home{
    background: url(images/legal-practice-background.jpg) no-repeat center;background-size: cover;
    padding: 80px 20px;
  }

  #legal-practice-home h2{
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .border-container{
    margin-bottom: 20px;
    text-align: center;
  }

  #legal-practice-home .center-text{
    margin: 0 auto;
    max-width: 600px;
  }

  .practice-area-container{
    margin-top: 60px;
  }

  .practice-area{
    width: 100%;
    /*height: 260px;*/
    border-radius: 10px;
    background-color: #7da7ad;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .4s;
    text-align: center;
    padding: 20px 0;
    margin: 0 auto 20px;
  }

  .practice-area:hover{
    background: #b8a175;
  }

  .practice-area i {
    height: 50px;
    width: 50px;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 20px;
  }

  .practice-area p{
    padding:0 20px;
  }

  .practice-area-testimony{
    text-align: center;
    font-size: .9em;
    border-bottom: 1px solid #252424;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }

  .practice-area img{
    margin-bottom: 20px;
  }

  img.area-icon{
    height: 50px;
    width: 50px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid white;
  }

  #raji-toggle{
    display: none;
  }

  #attorney-home{
    background: url(images/attorney-background-home.jpg) no-repeat center;background-size: cover;
    color: #b8a175;
    text-align: center;
  }

  #attorney-home h2{
    margin: 0 auto;
    font-weight: 200;
  }

  #meet-our-team-home{
    padding-bottom: 0px;
  }

  #team-container-home{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-top: 60px;
  }

  .team-member{
    width:  250px;
    margin: 0 20px 60px;
    padding: 20px;
    border: 1px solid #7da7ad;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team-member img{
    width: 100%;
    height: auto;
    display: none;
  }

  .overlay img{
    width: 18px;
    height: auto;
    margin-bottom: 20px;
  }

  .text {
    font-size: 1em;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .text h4{
    margin-top: 40px;
    text-transform: uppercase;
  }

  .text span{
    font-size: .9em;
    color: #7da7ad;
  }

  .text p{
    padding: 0 20px;
  }

  .text img:nth-of-type(1){
    display: none;
  }

  #team-link {
    margin-bottom: 60px;
    text-align: center;
  }

  #team-link a{
    padding:10px 30px;
    color: white;
    background: #7da7ad;
    border:2px solid #7da7ad;
  }

  #team-link a:hover{
    background: white;
    color: #7da7ad;
  }

  #client-reviews{
    padding-top: 40px;
  }

  .client-slideshow-container{
    position: relative;
    margin: 100px auto 40px;
    max-width: 560px;
  }

  /* Hide the images by default */
  .clientSlides {
    display: none;
    flex-direction: column;
    align-items: center;
    border: 1px solid #cdcdcd;
    margin: 0 auto;
    max-width: 360px;
/*    height: 310px;*/
    padding: 20px 40px 40px;
  }

  .clientSlides img{
    margin-top: -70px;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: none;
  }

  .clientSlides h3{
    text-transform: uppercase;
  }

  .clientSlides span{
    color: #b8a175;
    text-transform: uppercase;
  }

  .clientSlides a{
    text-transform: uppercase;
    color: #b8a175;
    display: none;
  }

  .star-container{
    display: flex;
    justify-content: center;
    color: #b8a175;
  }

  /* Next & previous buttons */
   .prev-client, .next-client {
    cursor: pointer;
    position: absolute;
    width: auto;
    top: 45%;
    padding: 10px;
    color: #fff;
    background-color: #b8a175;
    border: 2px solid #b8a175;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next-client {
    right: -15px;
    border-radius: 3px 0 0 3px;
  }

  .prev-client{
    left: -15px;
  }

  .prev-client:hover, .next-client:hover{
    background-color: #fff;
    color: #b8a175;
  }

  #dots{
    text-align: center;
    padding-top: 60px;
  }

  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #fff;
    border: 2px solid #b8a175;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: #b8a175;
  }

  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1s;
    animation-name: fade;
    animation-duration: 1s;
  }

  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }

  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }

  /***SUBPAGE MOBILE STYLES***/

  .subpage-hero{
    height: 200px;
    background: url(images/subpage-hero.jpg) no-repeat bottom center;
    background-size: cover;
    margin-top: 83px;
    color: white;
  }

  .subpage-hero .container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
  }

  .subpage-hero h1{
    margin-bottom: 0px;
  }

  .subpage-content a{
    color: #252424;
    border-bottom: 1px solid #7da7ad;
    font-weight: bold;
  }

  .subpage-content a:hover{
    color: #7da7ad;
  }

  .subpage-content{
    border-bottom: 1px solid #b8a175;
  }

  .subpage-content h2{
    margin-bottom: 40px;
    color: #b8a175;
  }

   /***MEET OUR TEAM MOBILE STYLES***/

   #team-content{
    padding-bottom: 0px;
   }

   #team-content h1{
    text-align: center;
    text-transform: uppercase;
    font-size: 2em;
  }

  .team-individual{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #cdcdcd;
  }

  .team-individual:nth-of-type(1){
    margin-top: 60px;
  }

  .team-individual:last-of-type{
    border-bottom: none;
  }

  .team-individual img{
    width: 250px;
    height: auto;
    margin-bottom: 20px;
  }

  .team-text{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team-text span{
    font-weight: bold;
  }

  .team-text h3{
    margin-bottom: 10px;
  }

  .team-text a{
    color: white;
    padding: 10px 20px;
    background: #b8a175;
    border: 2px solid #b8a175;
    display: block;
    width: 150px;
    margin-top: 20px;
    text-align: center;
  }

  .team-text a:hover{
    background: white;
    color: #b8a175;
  }

  /***PRACTICE AREA INDEX MOBILE STYLES***/

  .practice-area-links{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-bottom: 60px;
  }

  .practice-area-links:last-of-type{
    margin-bottom: 0px;
  }

  a.full-width-practice{
    width: 100%;
    border-bottom: 1px solid #b8a175;
    margin-bottom: 40px;
  }

  a.full-width-practice:hover{
    color: #b8a175;
  }

  .practice-area-links h3{
    margin-bottom: 0px;
    text-align: center;
  }

  /*.practice-area-links p{
    text-align: center;
    width: 33%;
  }*/

  .practice-area-links p a{
    padding:8px 10px;
    color: white;
    border-bottom: none;
    background: #7da7ad;
    text-align: center;
    display: inline-block;
    width: 230px;
    margin:0 10px;
    font-size: .9em;
  }

  .practice-area-links p a:hover{
    background: #b8a175;
    color: white;
  }


  /***CONTACT MOBILE STYLES***/

  #contact-container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-form-container{
   margin: 40px 0 60px;
   padding-bottom: 40px;
   border-bottom: 1px solid #cdcdcd;
   display: flex;
   flex-direction: column;
   align-items: center;
  }

  #contact-container input{
    color: #252424;
  }

  #contact-container textarea{
    color: #252424;
  }

  #contact-container ::placeholder {
    color: #252424;
  }

  #contact-container #send-mail{
    color: #7da7ad;
    font-weight: bold;
  }

  #contact-container #send-mail:hover{
    color: white;
  }

  .contact-map{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map a{
    font-weight: normal;
  }

  .contact-map iframe{
    width: 330px;
    height: 200px;
    margin-bottom: 20px;
  }

  /***BLOG INDEX MOBILE STYLES***/

  .blog-post{
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #7da7ad;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .blog-post:last-child{
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0px;
  }

  .blog-post img{
    width: 300px;
    height: auto;
    margin-bottom: 30px;
  }

  .blog-description{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .blog-description h3{
    text-align: center;
  }

  .blog-description p{
    width: 100%;
    max-width: 450px;
  }

  .blog-description a{
    color: white;
    padding: 10px 16px;
    background: #7da7ad;
    border: 2px solid #7da7ad;
    display: block;
    width: 150px;
    text-align: center;
    margin-top: 30px;
  }

  .blog-description a:hover{
    color: #7da7ad;
    background: white;
  }

  /*BLOG INDIVIDUAL POST MOBILE STYLES*/

  .blog-hero{
    text-align: center;
    color: white;
  }

  .blog-hero .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .blog-hero h1{
    font-size: 1.75em;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
  }

  .blog-hero h2{
    font-size: 1.25em;
    margin-bottom: 5px;
  }

  .blog-hero h4{
    color: #b8a175;
  }

  .blog-post-content img{
    margin: 0 auto 40px;
    display: block;
    width: 300px;
    height: auto;
  }

  .back-to-blog{
    margin-top: 60px;
  }

  .back-to-blog a{
    border-bottom: 1px solid #b8a175;
  }

  .back-to-blog a:hover{
    color: #b8a175;
  }

  /***FAQ MOBILE STYLES**/

  .arrows section .box-title {
    padding: 10px 20px;
    width: calc(100% - 44px);
    font-size: 1em;
  }

   /***FOOTER MOBILE STYLES***/

  footer{
    background: #252424;
    padding: 40px 0px 0;
    color: white;
  }

  footer a{
    color: white;
    border-bottom: 1px solid transparent;
  }

  footer a:hover{
    color: #b8a175;
    border-bottom: 1px solid #b8a175;
  }

  .footer-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    /*padding: 0 20px;*/
  }

  .footer-col{
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b8a175;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
  }

  .footer-col:nth-child(2){
    /*width: 240px;*/
  }

  .footer-col2{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 360px;
  }

  .footer-col2 p{
    margin: 0 20px;
  }

  .footer-col i{
    color: #b8a175;
  }

  .footer-col h4{
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    color: #b8a175;
  }

  .footer-col span{
    color: #b8a175;
  }

  #sub-footer{
    background: #141414;
    padding: 20px;
    font-size: .9em;
  }

  #sub-footer .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #sub-footer p{
    text-align: center;
  }

  #sub-footer i{
    margin: 0 10px;
    font-size: 1.25em;
  }

  #sub-footer a:hover{
    color: #7da7ad;
  }

}

/*subpage hero styles*/

  #firm-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/about-the-firm-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  #meet-our-team-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/meet-our-team-hero.webp');
    background-size: cover;
    background-position: 50% 35%;
    background-repeat: no-repeat;
  }
  #workers-comp-hero,
  .work-comp-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/workers-comp-hero.webp');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
  #business-litigation-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/business-litigation-hero.webp');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
  #family-law-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/family-law-hero.webp');
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat;
  }
  #education-advocacy-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/education-advocacy-hero.webp');
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat;
  }
  #mediation-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/mediation-hero.webp');
    background-size: cover;
    background-position: 50% 15%;
    background-repeat: no-repeat;
  }
  #personal-injury-hero,
  .personal-injury-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/personal-injury-hero.webp');
    background-size: cover;
    background-position: 50% 25%;
    background-repeat: no-repeat;
  }
  #faq-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/faq-hero.webp');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
  #blog-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .8), rgb(37, 36, 36, .8)),
    url('images/blog-hero.webp');
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat;
  }
  #contact-hero{
    background-image:
    linear-gradient(to bottom, rgb(37, 36, 36, .7), rgb(37, 36, 36, .7)),
    url('images/contact-hero.webp');
    background-size: cover;
    background-position: 50% 85%;
    background-repeat: no-repeat;
  }