* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 62.5%; /* 1rem = 10px */

    --primary-color: #081c35;
    --second-color: #deb452;
    --third-color: #fff5d8;
    --fourth-color: #f3e4c2;
    --light-color: #f9f6ee;
    --shadow: #6c6c6c;
    --paragraph: #484f56;
    --width-auto: auto;   
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Lora", serif;
    background-color: var(--primary-color);
}

body::-webkit-scrollbar {
    width: 7px;
}
  
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0); 
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--second-color); 
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--second-color); 
}

.top {
    display: flex;
    align-items: center;
    background-color: #061528;
    width: 100%;
    height: 5rem;
    font-size: 1.3rem;
}

.top-box {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    margin: 0 auto;
}

.top-box-left {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    font-size: 2rem;
}

.top-box-left a {
    text-decoration: none;
}

.top-box-left p {
    display: none;
}

.top-box a {
    color: var(--light-color);
}

/* Menu */

#navigation {
    padding-top: 15px;
    padding-bottom: 15px;
}

#navigation button.open-menu path[stroke*="#00856F"],
#contact li path {
    stroke: var(--second-color);
}

#navigation.scroll button.open-menu path[stroke*="#00856F"] {
    stroke: var(--light-color);
}

nav {
    background-color: var(--primary-color);
    display: flex;
    height: var(--nav-height);
    position: fixed;
    top: 5rem;
    z-index: 100;
    width: 100vw;
}

nav .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

nav .wrapper i {
    color: var(--second-color);
    font-size: 3rem;
}

.logo img {
    width: 120px;
}


nav.scroll {
    background: var(--primary-color);
    top: calc(var(--nav-height) - 2*(var(--nav-height)));
    z-index: 1;
    -moz-box-shadow: 0 10px 10px -10px var(--shadow);
    -webkit-box-shadow: 0 10px 10px -10px var(--shadow);
    box-shadow: 0 10px 10px -10px #031327;
    height: var(--nav-height);
    animation: smooth-appear 0s ease forwards;
    border-bottom: 0px solid var(--second-color);
}

@keyframes smooth-appear {
    to{
      top: 0;
      opacity:1;
    }
}

nav button {
    background: none;
    border: none;
    cursor: pointer;
}

nav .menu,
nav .close-menu {
    position: fixed;
}

/* Menu Expanded */
.menu,
.close-menu,
body.menu-expanded .open-menu {
    opacity: 0;
    visibility: hidden;
}

body.menu-expanded .menu,
body.menu-expanded .wpp-menu, 
body.menu-expanded .close-menu {
    opacity: 1;
    visibility: visible;
}

body.menu-expanded .logo {
    visibility: visible;
    animation: logoappear 0.6s ease forwards;
}

@keyframes logoappear {
    from {
        top:-100px;
    }
    to{
      top: 0;
      opacity:1;
    }
}

body.menu-expanded {
    overflow: hidden;
}

body.menu-expanded > :not(nav) {
    visibility: hidden;
}

.menu {
    transform: translateY(-100%);
}

body.menu-expanded .menu {
    top: 0;
    left: 0;
    background: var(--primary-color);
    width: 100vw;
    height: 100vh;
    transition: transform 0ms;
    transform: translateY(0);
}

.menu ul:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 3rem;
    margin-top: 16rem;
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 3.1rem;
}

.menu ul li a {
    font-family: "Josefin Sans", serif;
    color: var(--second-color);
    text-decoration: none;
    padding: 1rem;
    text-transform: uppercase;
    border-left: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
}

.menu ul li{
    border-left: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
}

.menu ul li:hover {
    border-left: 4px solid var(--second-color);
    border-right: 4px solid var(--second-color);
    font-weight: bold;
}

.menu ul li a i{
    font-weight: bold;
    font-size: 2rem;
    padding: 0 4rem;
}

.menu .button {
    background: var(--second-color);
    border-radius: 0;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 2.3rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-color);
    display: inline-flex;
    padding: 16px 32px;
    align-items: center;
    font-family: "Josefin Sans", serif;
}

.button-display {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 3rem;
}

.menu .button i {
    color: var(--primary-color);
}

body.menu-expanded .logo,
body.menu-expanded button,
body.menu-expanded .wpp-menu {
    z-index: 100;
}

/*Header*/

#header .wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: var(--primary-color);
    padding-top: 60px;
}

#header .header-text {
    padding: 100px 60px 60px 60px;
    display: flex;
    flex-direction: column;
    height: auto;
    color: var(--light-color);
    max-width: 700px;
    margin: 0 auto;
}

#header .header-text h5 {
    text-align: left;
    font-size: 1.5rem;
    color: var(--second-color);
    font-family: "Josefin Sans", serif;
}

#header .header-text h2 {
    padding: 10px 0;
    text-align: left;
    font-size: 3rem;
    margin-bottom: 20px;
}

#header .header-text h2 span {
    font-style: italic;
    color: var(--second-color);
}

#header .header-text p {
    font-family: "Josefin Sans", serif;
    color: var(--light-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#header .header-lawyer {
    color: var(--second-color);
    font-weight: bold;
    font-family: "Josefin Sans", serif;
    font-size: 1.8rem;
}

#header .lawyer-header {
    font-family: "Josefin Sans", serif;
    font-size: 1.2rem;
}

#header .button-header {
    margin-top: 25px;
    background: var(--second-color);
    font-family: "Josefin Sans", serif;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--primary-color);
    padding: 10px 20px;
    align-items: center;
    width: 160px;
}

#header .header-img {
    margin: 0 auto -2px auto;
}

/* About */

#about .wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: var(--light-color);
    padding: 50px 0 100px 0;
}

#about .about-section {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: var(--light-color);
}

#about .about-text {
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    height: auto;
    color: var(--light-color);
    max-width: 700px;
    margin: 0 auto;
}

#about .about-text h5 {
    text-align: left;
    font-size: 1.5rem;
    color: var(--second-color);
    font-family: "Josefin Sans", serif;
}

#about .about-text h3 {
    padding: 10px 0;
    text-align: left;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

#about .about-text p {
    font-family: "Josefin Sans", serif;
    color: var(--paragraph);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#about .button-about {
    margin-top: 25px;
    font-family: "Josefin Sans", serif;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--primary-color);
    padding: 10px 20px;
    align-items: center;
    width: 160px;
    border: 1px solid var(--primary-color);
}

#about .about-img {
    margin: 0 auto;
    padding: 0px;
}

#about .about-img img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(16px -16px var(--primary-color));
    padding: 0 40px;
}

/* What we do */

#whatwedo .wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: var(--second-color);
    padding: 100px 0 80px 0;
}

#whatwedo h5 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--light-color);
    font-family: "Josefin Sans", serif;
}

#whatwedo h3 {
    padding: 10px 30px;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

#whatwedo .areas-boxes {
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-columns: 215px;
    margin: 0 auto;
    gap: 10px;
}

#whatwedo .whatwedo-box {
    border: 1px solid var(--primary-color);
    width: 250px;
    height: 250px;
    padding: 25px;
}

#whatwedo .whatwedo-box:hover {
    font-weight: bold;
}

#whatwedo .whatwedo-box-top {
    display: flex;
    flex-direction: row;
    justify-content: left;
    height: 180px;
}

#whatwedo .whatwedo-icon img {
    width: 32px;
}

#whatwedo .whatwedo-box-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

#whatwedo .whatwedo-title h5 {
    color: var(--primary-color);
    text-align: left;
    font-size: 1.5rem;
}

#whatwedo .whatwedo-more i {
    font-size: 1.7rem;
    cursor: pointer;
    font-weight: bold;
}

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.676);
}

dialog {
    background-color: var(--primary-color);
    border: none;
    border-radius: .5rem;
    border: 1px solid var(--second-color);
    box-shadow: 0 0 1em rgb(0 0 0 / .3);
    width: 80%;
    padding: 20px;
    font-size: 1.3rem;
    color: var(--second-color);
    margin: auto auto;
    font-family: "Josefin Sans", serif;
}

dialog h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

dialog p {
    font-size: 2rem;
    font-weight: normal;
}

dialog button {
    color: var(--primary-color);
    background-color: var(--second-color);
    border-radius: 50%;
    padding: 5px 8.5px;
    font-weight: bold;
    position: relative;
    float: right;
    cursor: pointer;
}

/* Lawyer */

#lawyer .wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: var(--light-color);
    padding: 100px 0 80px 0;
    
}

#lawyer .wrapper h5 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--second-color);
    font-family: "Josefin Sans", serif;
}

#lawyer .wrapper h3 {
        padding: 10px 30px;
        text-align: center;
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--primary-color);
}

#lawyer .wrapper img {
    width: 300px;
    filter: drop-shadow(16px -16px var(--primary-color));
    margin: 50px auto 0 auto;
}

#lawyer .lawyer-section {
    display: flex;
    flex-direction: column;
    max-width: 550px;
    margin: 0 auto;
}

#lawyer .lawyer-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 550px;
}

#lawyer .lawyer-details h4 {
    margin-top: 15px;
    font-family: "Josefin Sans", serif;
    color: var(--second-color);
    font-weight: bold;
    font-size: 1.7rem;
    text-align: center;
}

#lawyer .lawyer-details h6 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
}

#lawyer .lawyer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 5px;
}

#lawyer .lawyer-social i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

#lawyer .lawyer-details p {
    padding: 15px 80px;
    color: var(--paragraph);
    font-size: 1.2rem;
    text-align: center;
    font-family: "Josefin Sans", serif;
}

/* Google */

#google .wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    background: linear-gradient(180deg, var(--primary-color) 54%, var(--second-color) 46%);
    padding: 130px 0; 
}

#google .wrapper h5 {
    font-family: "Josefin Sans", serif;
    font-size: 1.5rem;
    color: var(--light-color);
    text-align: center;
}

#google .wrapper h3 {
    font-size: 3rem;
    color: var(--second-color);
    text-align: center;
    padding-bottom: 60px;
}

.swiper {
    user-select: none;
    -webkit-user-select: none;
    width: 365px;
}

#google .google-slider-wrapper {
    overflow: hidden;
    max-width: 300px;
    margin: 0 70px 55px;
    padding: 10px;
    user-select: none;
}

#google .google-slider-wrapper .swiper-slide-button {
    color: var(--light-color);
    margin-top: -40px;
}

#google .google-slider-wrapper .swiper-pagination-bullet {
    background: var(--primary-color);
    height: 12px;
    width: 12px;
  }

#google .google-box {
    background-color: var(--light-color);
    border-radius: 15px;
    margin: 0 auto;
    /*box-shadow: 0 0 2em rgba(0, 0, 0, 0.537);*/
    padding: 12px;
    cursor: pointer;
    transition: 1s;
    user-select: none;
    max-width: 300px;
    height: auto;
}

#google .google-box:hover {
    -xpedu-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

#google .google-top {
    font-size: 5rem;
    color: var(--primary-color);
}

#google .google-text {
    padding: 20px 0;
    font-family: "Josefin Sans", serif;
    font-size: 1.5rem;
    color: var(--paragraph);
    height: 150px;
}

#google .google-text p:nth-child(2) {
    font-weight: bold;
    padding-top: 20px;
    color: var(--primary-color);
}

#google .google-star {
    padding: 20px 0;
    color: var(--second-color);
    font-size: 2rem;
    display: flex;
    justify-content: left;
    gap: 10px;
}

#google .google-img {
    padding: 4px;
    max-width: 70px;
    background: url(/assets/google-bg.svg) no-repeat;
    background-size: 68px;
}

#google .google-img img {
    border-radius: 50%;
    width: 60px;
    padding: 2px;
}

#google .google-bottom {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#google .google-name { 
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: "Josefin Sans", serif;
}

#google .google-svg {
    width: 16px;
}

/* Office */

#office .wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: var(--third-color);
    padding: 100px 0 80px 0;
}

#office .wrapper h5 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--second-color);
    font-family: "Josefin Sans", serif;
}

#office .wrapper h3 {
        padding: 0px 30px;
        text-align: center;
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--primary-color);
}

#office .wrapper p {
    padding: 0 50px 30px 50px;
    text-align: center;
    font-family: "Josefin Sans", serif;
    color: var(--paragraph);
    font-size: 1.7rem;
    margin-bottom: 10px;
    max-width: 780px;
    margin: 0 auto;}

#office .office-section {
    display: flex;
    flex-direction: column;
}

#office .office-section>p:nth-child(4) {
    color: var(--primary-color);
    font-weight: bold;
}

#office iframe {
    max-width: 700px;
}

#office .office-img {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-columns: 215px;
    gap: 15px;
    margin: 0 auto;
}

#office .office-img img {
    width: 300px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.container {
    position: relative;
    width: 100%;
    max-width: 905px;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-height: 550px;
}

.slider {
    position: absolute;
    inset: 40px 40px 200px 40px;
    background: transparent;
    height: 300px;
}

.slider .slides {
    position: absolute;
    top: initial;
    bottom: -170px;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    background: var(--img);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: 0.5s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.slider .slides:nth-child(1) {
    position: absolute;
    top: initial;
    bottom: 0px;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    box-shadow: 0 25px 50px rgba(0,0,0,0);
    background-size: cover;
}

.slider .slides:nth-child(2){
    left: 0;
    background-size: cover;
}

.slider .slides:nth-child(3){
    left: 120px;
    background-size: cover;
    opacity: 1;
}

.slider .slides:nth-child(4){
    left: 240px;
    background-size: cover;
    opacity: 1;
}

.slider .slides:nth-child(5){
    left: 360px;
    background-size: cover;
    opacity: 0;
}

.slider .slides:nth-child(6){
    left: 480px;
    background-size: cover;
    opacity: 0;
}

.slider .slides:nth-child(7){
    left: 600px;
    background-size: cover;
    opacity: 0;
}

.slider .slides:nth-child(8){
    left: 720px;
    background-size: cover;
    opacity: 0;
}

.buttons {
    position: absolute;
    bottom: 0;
    display: flex;
    gap: 20px;
}

.buttons span {
    position: relative;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.buttons span::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 3px solid var(--second-color);
    border-left: 3px solid var(--second-color);
    transform: rotate(315deg) translate(2px,2px);
}

.buttons span:nth-child(2)::before {
    transform: rotate(135deg) translate(2px,2px);
}

.buttons span:active {
    opacity: 0.5;
}

/* Footer */

#footer .wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: var(--primary-color);
    padding: 100px 0 10px 0;
}

#footer img {
    width: 200px;
    margin: 0 auto;
}

#footer .footer-social {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

#footer .footer-social i {
    font-size: 1.8rem;
    color: var(--second-color);
}

#footer p {
    margin-top: 10px;
    color: var(--second-color);
    text-align: center;
}

/* Bsck to top */
#backToTopButton circle {
    fill: var(--primary-color);
}

#backToTopButton path {
    stroke: var(--second-color);
}

#backToTopButton {
    position: fixed;
    bottom: 1rem;
    right: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: 200ms;
}

#backToTopButton.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 344px) {
    body.menu-expanded .menu a {
        font-size: 1.2rem;
    }
    
    #header .header-img img {
        max-width: 300px;
    }

    .swiper {
        max-width: 300px;
    }

    #google .google-text {
        height: 255px;
    }

    #google .google-star {
        gap: 0;
    }    
}

@media (max-width: 375px) {

    body.menu-expanded .menu a {
        font-size: 1.2rem;
    }

    .slider .slides:nth-child(4){
        left: 240px;
        background-size: cover;
        opacity: 0;
    }
}

@media (min-width: 540px) {
    .slider .slides:nth-child(5){
        opacity: 1;
    }
}

@media (min-width: 700px) {

    #whatwedo .areas-boxes {
        grid-template-columns: 1fr 1fr;
    }

    #google .google-slider-wrapper {
        max-width: none;
    }

    .swiper {
        width: 730px;
    }

    .slider .slides:nth-child(5){
        opacity: 1;
    }
    
    .slider .slides:nth-child(6){
        opacity: 1;
    }
    
    .slider .slides:nth-child(7){
        opacity: 1;
    }
    
}

@media (min-width: 912px) {

    #whatwedo .areas-boxes {
        grid-template-columns: 1fr 1fr;
    }

    .slider .slides:nth-child(8){
        opacity: 1;
    }
}

@media (min-width: 1281px) {

    /* Geral */
    body {
        overflow: auto;
    }

    .menu ul li a{
        text-transform: none;
        border-left: 0px solid var(--primary-color);
        border-right: 0px solid var(--primary-color);
    }

    .menu ul li{
        border-left: 0px solid var(--primary-color);
        border-right: 0px solid var(--primary-color);
    }

    .menu ul li:hover {
        border-left: 0px solid var(--primary-color);
        border-right: 0px solid var(--primary-color);
    }

    #navigation {
        padding-top: 0;
        padding-bottom: 0;
        padding: 15px 0px;
    }

    nav .wrapper {
        max-width: 1380px;
        margin: 0 auto;
    }

    /* Reset */
    nav#navigation .wrapper * {
        margin: 0;
        padding: 0;
        visibility: initial;
        display: initial;
        opacity: initial;
        flex-direction: initial;
        position: initial;
        font-size: initial;
        font-weight: initial;
        transform: initial;
        color: initial;
        background: initial;
        filter: initial;
    }

    nav#navigation .wrapper .wpp-menu i{
        display: none;
    }

    /* Navigation Desktop */
    nav#navigation .close-menu,
    nav#navigation .open-menu,
    nav#navigation .social-links {
        display: none;
    }

    nav#navigation .menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 90%;
        padding: 0 px;
        gap: 25px;
    }

    nav#navigation .menu ul:nth-child(1) {
        display: flex;
        justify-content: space-between;
        gap: 3rem;
    }

    nav#navigation .menu ul li a {
        color: var(--second-color);
    }

    nav#navigation .menu a.button {
        background-color: var(--second-color);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.5rem 2.4rem;
        border: 1px solid var(--second-color);
        border-radius: 0;
        font-weight: normal;
        font-size: 14px;
        line-height: 18px;
        text-transform: none;
        color: var(--primary-color);
    }

    nav#navigation .menu a i {
        color: var(--second-color);
        padding-right: 4px;
        font-weight: bold;
    }

    nav#navigation .menu .button-display a i {
        color: var(--primary-color);
        padding-right: 0px;
        font-weight: normal;
    }

    nav#navigation.scroll .menu ul li a {
        color: var(--second-color);
    }

    nav#navigation.scroll .menu a.button {
        background-color: var(--second-color);
        color: var(--primary-color);
    }

    nav#navigation.scroll .menu a i {
        color: var(--second-color);
        padding-right: 4px;
    }

    nav#navigation.scroll .menu .button-display a i {
        color: var(--primary-color);
        padding-right: 0px;
    }

    nav#navigation .menu li a {
        transition: opacity 0.4s;
    }

    nav#navigation .menu li a:hover {
        opacity: 1;
        font-weight: 700;
    }

    nav#navigation .menu li a::after {
        content: '';
        width: 0%;
        height: 2px;
        background-color: var(--primary-color);
        display: block;
        position: relative;
        bottom: -4.2rem;
        left: -0.5rem;
        transition: width 0.2s;

    }

    nav#navigation.scroll .menu li a::after {
        background-color: var(--second-color);
    }

    nav#navigation .menu li a.active::after,
    nav#navigation .menu li a:hover::after {
        padding-inline: 0.8rem;
        width: 100%;
    } 

    nav#navigation .menu li a.active,
    nav#navigation .menu li a:hover {
        opacity: 1;
        font-weight: normal;
    }

    nav#navigation.scroll .menu li a.active,
    nav#navigation.scroll .menu li a:hover {
        opacity: 1;
        font-weight: normal;
    }

    #header .wrapper {
        flex-direction: row;
        max-width: 1380px;
        margin: 0 auto;
    }

    #header .header-text {
        padding: 150px 0px 0px 70px;
    }

    #header .header-img {
        display: flex;
        justify-content: flex-start;
        margin-top: 50px;
        padding-bottom: 2px;
    }

    #about .wrapper {
        flex-direction: row;
        padding: 50px 0 20px 0;
    }

    #about .about-section {
        flex-direction: row;
        margin: 0 auto;
        max-width: 1380px;
        gap: 0px;
    }

    #about .about-text {
        padding: 100px 50px 100px 100px;
    }

    #about .about-img {
        padding: 100px 90px 0 0;
    }

    #about .about-img img {
        padding: 0 0;
    }

    #whatwedo .areas-boxes {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    dialog {
        width: 40%;
    }

    #lawyer .lawyer-section {
        flex-direction: row;
        justify-content: space-around;
        max-width: none;
        align-items: flex-start;
        max-width: 1380px;
    }

    .swiper {
        width: 1000px;
    }

    #google .google-box {
        height: 400px;
        padding: 30px;
    }

    #google .google-slider-wrapper {
        max-width: 1080px;
    }

    .swiper-wrapper {
        max-width: 960px;
    }

    /*
    #google .google-section {
        max-width: 1380px;
        flex-direction: row;
        gap: 70px;
        margin: 0 auto;
    }
*/
    #office .wrapper {
        display: flex;
        padding: 100px 50px 80px 50px;
    }

    #office .office-img {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding-top: 100px;
    }

    .container {
        margin-bottom: 0;
        max-height: 100%;
    }

    .slider .slides {
        width: 105px;
        height: 105px;
    }
    
    .slider {
        max-width: 900px;
        width: auto;
        height: auto;
    }

    .slider .slides:nth-child(5){
        opacity: 1;
    }
    
    .slider .slides:nth-child(6){
        opacity: 1;
    }
    
    .slider .slides:nth-child(7){
        opacity: 1;
    }
    
    .slider .slides:nth-child(8){
        opacity: 1;
    }

    .buttons {
        bottom: 5%;
    }


}

