* {
    padding: 0;
    margin: 0;
}
body {
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #778383;
    background-image: linear-gradient(43deg, #778383 0%, #a8acab 46%, #fcf5eb 100%);
    color: #272c49;

}
a {
    text-decoration: none;
    color: var(--black);
    border-bottom: 1px solid #00899f;
}
:root {
    --grey: #f5f5f7;
    --black: #272c49;
    --white: #ffffff;

}
.wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
h1,h2,h3,h4,h5,h6 {
    font-size: 2rem;
    letter-spacing: -.5px;
    font-family: "IBM Plex Serif", serif;
    font-style: italic;
    line-height: 3rem;
    font-weight: 400;
    margin: 1rem 0 2rem 0;
}
p {
    padding: 0 0 1rem 0;
}
ul {
    padding: 0 0 0 2rem;
}
li {
    padding: 0 0 .8rem 0;
}
img {
    max-width: 100%;
}
blockquote {
    letter-spacing: -.5px;
    font-family: "IBM Plex Serif", serif;
    font-style: italic;
    padding: 2rem 3rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
}
hr {
    border: 1px solid #fff;
    margin: 3rem 0;
}
/* HEADER */
.logo a {
    position: absolute;
    top: 5px;
    font-size: 23px;
    letter-spacing: -.5px;
    font-family: "times new roman", serif;
    font-style: italic;
    line-height: 23px;
    font-weight: 400;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--white);
}
header {
    height: 55px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    background: var(--black);
}
ul.menu {
    float: right;
    display: inline-block;
    margin: 15px 0 0 0;
    padding: 0;
}
ul.menu li {
    display: inline;
    margin: 0 1rem 0 0;
}
ul.menu li a {
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 1px solid #FCF5EB;
}
ul.menu li a:hover {
    border-bottom: 3px solid #FCF5EB;
}
/* MOBILE MENU */

.hamburger {
    position: relative;
    width: 1em;
    height: 1em;
    font-size: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    display: none;
    float: right;
    margin: 10px 0 0 0;
}
.hamburger.is-sm {
    font-size: 1rem;
}
.hamburger.is-md {
    font-size: 1.5rem;
}
.hamburger.is-lg {
    font-size: 2rem;
}
.hamburger-line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 0.125em;
    border-radius: 0.125em;
    background: #FCF5EB;;
    transition: inherit;
}
.hamburger-line:nth-child(1) {
    top: 0.125em;
}
.hamburger.is-active .hamburger-line:nth-child(1), .w-nav-button.w--open .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotateZ(-135deg);
}
.hamburger-line:nth-child(2) {
    top: 0.438em;
}
.hamburger.is-active .hamburger-line:nth-child(2), .w-nav-button.w--open .hamburger-line:nth-child(2) {
    right: 50%;
    width: 0;
}
.hamburger-line:nth-child(3) {
    top: 0.75em;
    width: 0.625em;
}
.hamburger.is-active .hamburger-line:nth-child(3), .w-nav-button.w--open .hamburger-line:nth-child(3) {
    top: 50%;
    width: 100%;
    transform: translateY(-50%) rotateZ(135deg);
}
/* col-md and bigger  */ @media only screen and (max-width: 62em) {
    .hamburger {
        display: block;
    }
    ul.menu {
        display: none;
        background-color: #778383;
        background-image: linear-gradient(43deg, #778383 0%, #a8acab 46%, #fcf5eb 100%);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 50px 0 0 40px;
    }
    ul.menu li {
        display: block;
        margin: 0 0 1rem 0;
        font-size: 1.4rem;
    }
}
/* ------------------------------------------------------------------------------------ HOMEPAGE */
.hero1 {
    background: url(images/hero02.jpg) center center no-repeat;
    background-size: cover;
    height: 55vh;
    padding: 75px 0 0 0;
    color: #fff;
    position: relative;
    margin: 0 0 3rem 0;
}
.hero1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 1;
}
.hero1 .wrapper {
    z-index: 2;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.hero1 h1 {
    font-size: 3rem;
}
.hero1 p {
    font-size: 2rem;
}


@media only screen and (max-width: 48em) {
    .hero1 {
        height: 75vh;
    }
}
.hpIntro P {
font-size: 1.3rem;
line-height: 1.9rem;
}
.hplawyers a {
    border-bottom: none;
}



.bigList p {
}
.bigList p a {
    background-color: #fff;
    padding: 1rem;
    display: block;
    border: none;
    text-transform: capitalize;
}
.bigList p a:hover {
    box-shadow: 0px 0px 10px #778383b5;
}

.hero2 {
    padding: 0 0 5rem 0;
    margin: 105px 0 0 0;
}
.hero2 img {
    position: absolute;
    top: 100px;
    width: 200px;
    height: 200px;
}
.hero2 H1 {
    font-size: 4rem;
    line-height: 4rem;
}

body.grey {
    background: var(--grey);
}
ul.lawyerList li img {
    width: 75px;
    height: 75px;
    border-radius: 9px 210px 9px 9px;
}

ul.lawyerList li {
    background: #fff;
    float: left;
    box-shadow: 0px 0px 25px #0000003b;
    border-radius: 12px;
    width: 32%;
    margin: 0 2% 20px 0;
    list-style: none;
    box-sizing: border-box;
}
ul.lawyerList li:nth-child(3),
ul.lawyerList li:nth-child(6) {
    margin: 0 0 20px 0;
}
ul.lawyerList li a {
    display: block;
    padding: 3rem 2rem;
    border-bottom: 0;
}
ul.lawyerList li:hover {
    box-shadow: 0px 0px 25px #00000066
}
ul.lawyerList li p {
    padding: 26px 0 0 0;
    font-size: 1.3rem;
}


@media only screen and (max-width: 62em) {
    ul.lawyerList li {
        width: 49%;
        margin: 0 2% 20px 0;
    }
    ul.lawyerList li:nth-child(even) {
        margin: 0 0 20px 0;
    }
    ul.lawyerList li:nth-child(3) {
        margin: 0 2% 20px 0;
    }
}
/* col-sm and smaller  */ @media only screen and (max-width: 48em) {

    ul.lawyerList li {
        width: 100%;
        margin: 0 0 20px 0;
    }

}


/* LAWYERS LIST TEMPLATE */

.lawyerListing ul {
    padding: 0;
}
.lawyerListing ul li {
    float: left;
    list-style: none;
}
.lawyerListing ul li:after {
    content: "///";
    color: #ccc;
    padding: 0 4px;
}
.lawyerListing a {
    border-bottom: none;
}
.profilagon {
    width: 100%;
    height: 400px;
    border-radius: 9px 210px 9px 9px;
    object-fit: cover;
    contain: content;
}
.profilagon img {
    width: 100%
}
.areaGap {
    margin: 5rem 0 0 0;
}
/* FOOTER */
footer {
    padding: 4rem 0 2rem 0;
    color: var(--black);
    margin-top: auto;
}
footer p {
    font-family: serif;
    font-style: italic;
    font-size: .8rem;
    padding: 2rem 0 0 0;
}
footer p a {
    border-bottom: none;
}
footer .wrapper {
    border-top: 1px solid #778383;
}

MEDIA QUEER
*/
/* col-lg and bigger */ @media only screen and (min-width: 75em) {}
/* col-md and bigger  */ @media only screen and (min-width: 62em) {}
/* col-sm and bigger  */ @media only screen and (min-width: 48em) {}
/* col-sm and smaller  */ @media only screen and (max-width: 48em) {}
