/*
Theme Name:   Robins & Gardner, PLLC 
Theme URI:    https://underscores.me/
Description:  A child theme for the Underscores theme
Author:       GrowthLab Seo
Author URI:   https://growthlabseo.com/
Template:     underscores
Version:      1.0.0
*/




@font-face {
    font-display: swap;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    src: url('./fonts/manrope-v20-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/manrope-v20-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/manrope-v20-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/manrope-v20-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/manrope-v20-latin-700.woff2') format('woff2');
}



:root {
    --blue: #1e90ff;
    --white: #ffffff;
    --placeholdercolor: currentColor;
    --headingFont: 'Manrope';
    --bodyFont: 'Manrope';
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    /* will-change: auto; */
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--bodyFont);
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.clear {
    clear: both;
}

body.layout-full {
    background-color: #fff;
}

.alignleft,
.alignright,
.aligncenter,
.alignnone {
    margin-bottom: 10px;
}

.alignleft,
.alignright,
.aligncenter {
    display: block;
    margin: 0 auto 20px auto;
}

@media screen and (min-width: 1025px) {
    .alignleft {
        float: left;
        margin-right: 20px;
    }

    .alignright {
        float: right;
        margin-left: 20px;
    }

    .alignleft,
    .alignright {
        max-width: 50%;
        margin-top: 0;
    }
}

@media screen and (max-width:1024px) {

    .alignright,
    .alignleft {
        width: 100%;
        max-width: 600px;
        float: none;
        margin: 20px auto;
    }

}

iframe,
img {
    max-width: 100%;
    border: none;
    vertical-align: middle;
}

img {
    border: 0;
    height: auto;
    font-size: 0;
    display: block;
}

a {
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    color: inherit;
    text-decoration: none;
    transition: 0.5s;
}

a:focus {
    outline: 0 !important;
}

.widget {
    margin: 0;
}

.post,
.page {
    margin: 0 !important;
}

html {
    margin-top: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope';
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: normal;
}

p,
li,
ul,
ol,
blockquote {
    font-family: 'Manrope';
    font-weight: normal;
    margin: 0 0 10px 0;
    padding: 0;
}

p:empty {
    display: none;
}

ul,
li {
    list-style: none;
}

a:visited {
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.w100p,
.wrapper {
    width: 100%;
}

.container {
    max-width: 1500px;
    width: 100%;
    margin: auto;
}


@media screen and (max-width:1800px) {}

@media screen and (max-width:1680px) {}

@media screen and (max-width:1550px) {}

@media screen and (max-width:1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {}

@media screen and (max-width:1024px) {
    .container {
        max-width: 720px;
    }
}

@media screen and (max-width:768px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
}


/* Header Section Starts */

.header-sec {
    padding: 25px 0 20px;
    position: absolute;
    z-index: 9;
    width: 100%;
}

.header-sec .logo {
    max-width: 214px;
}

.header-sec .logo img {
    width: 100%;
    display: block;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    padding-right: 110px;
}

.menu-bar-tab {
    display: none;
}

.top-menu {
    padding: 20px 0 0;
}

.top-menu ul li {
    display: inline-block;
    position: relative;
    margin: 0 28px;
}

.top-menu ul {
    list-style: none;
    font-size: 0;
    margin: 0;
}

.top-menu ul li a {
    font-family: 'Manrope';
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    margin: 0;
}

.top-menu ul li:first-child {
    margin-left: 0;
}

.top-menu ul li:last-child {
    margin-right: 0;
}

.top-menu ul li.current-menu-item>a,
.top-menu ul li:hover>a {
    color: #dfb214;
}

.top-menu ul li ul.sub-menu {
    display: none;
    width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    background-color: #00234a;
    padding: 0px 0;
    z-index: 999;
}

.top-menu ul li:hover ul.sub-menu {
    display: block;
}

.top-menu ul li:hover ul.sub-menu ul {
    display: none;
}

.top-menu ul li:hover ul.sub-menu li {
    position: relative;
}

.top-menu ul li:hover ul.sub-menu li:hover>ul {
    display: block;
    top: 0;
    left: 100%;
}

.top-menu .sub-menu li.current-menu-item a {
    color: #fff;
}

.top-menu .sub-menu li a:after {
    display: none;
}

.top-menu .sub-menu li {
    width: 100%;
    float: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    padding: 0;
}

.top-menu .sub-menu li a {
    float: left;
    font-size: 15px;
    width: 100%;
    line-height: normal;
    padding: 9px 12px 8px;
    color: #fff !important;
    display: block;
    text-transform: capitalize;
}

.top-menu .sub-menu li a:hover {
    background-color: #dfb214;
    color: #fff !important;
}

.header-sec.f-nav {
    background-color: #000;
    position: fixed;
    border-bottom: 2px solid #dfb214;
}

.header-sec.f-nav .logo-container {
    align-items: center;
}

.header-sec.f-nav .logo {
    width: 12%;
}

.header-sec.f-nav .top-menu {
    padding: 0px;
}


/* Mobile Menu Starts */

@media screen and (min-width: 1025px) {

    .logo-rit,
    .tab-call {
        display: none;
    }

}

.showhide {
    display: none;
    width: 110px;
    height: 28px;
    cursor: pointer;
    padding: 0;
    position: relative;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .showhide {
        display: block;
    }
}

.mobinav {
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    z-index: 99999995;
    background: #00234a;
    width: 100%;
    max-width: 300px;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    overflow-y: scroll;
    padding: 15px;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    display: flex;
    flex-direction: column;
}

.menu-top-menu-container {
    display: block;
    width: 100%;
}

.mobinav.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.mobinav ul {
    margin: 0 0 0 0;
    padding: 5px 0px;
    width: 100%;
}

.mobinav ul li {
    margin: 0;
    width: 100%;
    list-style: none;
    box-sizing: border-box;
    border: 0;
    margin: 0;
    padding: 0px;
    position: relative;
    font-family: 'Manrope';
}

.mobinav a {
    width: 100%;
    padding: 7px 0;
    display: block;
    line-height: normal;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.5px;
    font-family: 'Manrope';
    border: 0;
    margin: 0 0 0px 0;
    text-decoration: none;
}

.mobinav a:hover {
    color: #9b662a;
}

.mobinav ul li ul {
    padding: 0 0 0 15px;
}

.mobinav ul li ul li a {
    text-transform: capitalize;
}

.mobinav ul li .drop {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 37px;
    z-index: 5;
}

.mobinav ul li .drop.open {
    width: 20px;
}

.mobinav ul li .drop::before,
.mobinav ul li .drop.close::after {
    content: '';
    background-color: #fff;
    position: absolute;
}

.mobinav ul li .drop::before {
    width: 20px;
    height: 2px;
    top: 16px;
    right: 1px;
}

.mobinav ul li .drop.close::after {
    width: 2px;
    height: 20px;
    top: 7px;
    right: 10px;
}

.mobile-menu-button-container {
    display: block;
}

@media screen and (min-width: 769px) {
    .mobile-menu-button-container {
        display: none;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tab-call {
        display: block;
        margin-left: auto;
    }
}

/* Mobile Menu Ends */

/* Common Styling */

a.cmn-btn {
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0;
    color: #010101;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 23px 73px 23px 40px;
    background-image: url(images/btn-img.webp);
    background-position: right 0px center;
    background-repeat: no-repeat;
    background-size: 60px 87%;
    position: relative;
}

a.cmn-btn:before {
    position: absolute;
    content: "";
    background-color: #dfb214;
    width: 99%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    transform: skewX(-17deg);
}

a.cmn-btn:hover {
    color: #fff;
}

.text-heading {
    font-size: 75px;
    line-height: 1.1;
    letter-spacing: 0px;
    font-family: 'Manrope';
    font-weight: 400;
    color: #dfb214;
    margin: 0 0 40px;
    text-transform: uppercase;
    text-align: center;
}

.text-heading strong {
    font-weight: 400;
    color: #000;
    display: block;
}

.sub-heading {
    font-size: 25px;
    line-height: 1;
    letter-spacing: 20px;
    font-family: 'Manrope';
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 20px;
}



/* Footer Section */

.site-footer {
    padding: 225px 0 54px;
}

.footer-sec {
    background-image: url(images/ftr-bg-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    text-align: center;
    clip-path: polygon(0 0, 100% 24%, 100% 100%, 0% 100%);
    position: relative;
    z-index: 1;
    margin: -128px 0 0;
}

.ftr-logo {
    text-align: center;
    width: 22%;
    margin: 0 auto;
}

.ftr-logo img {
    width: 100%;
    display: block;
}

.ftr-logo a {
    display: inline-block;
}

.ftr-sec-txt {
    line-height: 1.06;
    color: #ffffff;
    margin: 0 0 50px;
}

.copyrights {
    background: #dfb214;
    padding: 35px 0 17px;
    text-align: center;
}

.copyrightmenu ul {
    margin: 0;
}

.copyrightmenu ul li {
    display: inline-block;
    margin: 0;
}


.copyrights p,
.copyrightmenu ul {
    margin: 0 0 8px 0;
}

.copyrights p,
.copyrights a {
    font-size: 20px;
    font-family: 'Manrope';
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.4px;
    color: #000000;
    margin: 0 0 10px;
}

.copyrightmenu ul li a {
    line-height: 1;
    border-right: 1px solid #000;
}

.copyrightmenu ul li a:hover {
    color: #fff;
}

.copyrightmenu ul li:last-child a {
    border: none;
}

.copyrights a {
    display: inline-block;
    padding: 0 8px;
    margin: 0px;
}

.growthlab a {
    padding: 0px;
    margin: 0px;
}


.footer-blk {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.footer-blk .map-iframe{
    border: 3px solid #dfb214;
}
.footer-blk .footer-location, .footer-blk .map-iframe{
    width: 48%;
}
.footer-blk .footer-location .choose-title {
    color: #fff;
    font-size: 35px;
}
.contact-desc, .contact-call p {
    font-family: 'Manrope';
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.64px;
    color: #fff;
    margin-bottom: 20px;
}
.contact-call p{
    margin-bottom: 5px !important;
}
.contact-call p a{
    color: #dfb214;
}
.contact-call p a:hover{
    color: #fff;
}
.contact-call.email{
    margin-bottom: 30px !important;
}

/* Responsive */


@media screen and (max-width: 1680px) {

    .container {
        max-width: 1450px;
    }

    .text-heading {
        font-size: 70px;
    }

    .top-menu ul li a {
        font-size: 19px;
    }

    .footer-sec {
        margin: -100px 0 0;
    }

    .site-footer {
        padding: 200px 0 50px;
    }

    .site-footer .text-heading {
        font-size: 60px;
        margin: 0 0 40px;
    }

    .copyrights {
        padding: 30px 0 17px;
    }

    .ftr-logo {
        width: 20%;
    }

    .header-sec .logo {
        max-width: 180px;
    }

}


@media screen and (max-width: 1550px) {

    .container {
        max-width: 1350px;
    }

    .text-heading {
        font-size: 65px;
    }

    .sub-heading {
        letter-spacing: 17px;
    }

    a.cmn-btn {
        font-size: 20px;
        padding: 20px 75px 20px 30px;
        background-size: 55px 87%;
    }

    .logo-container {
        padding-right: 80px;
    }

    .top-menu ul li {
        margin: 0 23px;
    }

    .top-menu ul li a {
        font-size: 18px
    }

    .footer-sec {
        margin: -80px 0 0;
    }

    .site-footer {
        padding: 200px 0 54px;
    }

    .site-footer .text-heading {
        font-size: 55px;
        margin: 0 0 35px;
    }

    .copyrights {
        padding: 25px 0 17px;
    }

    .copyrights p,
    .copyrights a {
        font-size: 19px;
        margin: 0 0 7px;
    }

    .header-sec .logo {
        max-width: 154px;
    }

}

@media screen and (max-width: 1440px) {

    .container {
        max-width: 1250px;
    }

    .sub-heading {
        letter-spacing: 14px;
        font-size: 23px;
    }

    .text-heading {
        font-size: 55px;
        margin: 0 0 30px;
    }

    a.cmn-btn {
        font-size: 18px;
        padding: 18px 72px 18px 25px;
        letter-spacing: 0.4px;
    }

    .header-sec {
        padding: 20px 0 15px;
    }

    .logo-container {
        padding-right: 70px;
    }

    .top-menu ul li {
        margin: 0 20px;
    }

    .top-menu ul li a {
        font-size: 17px;
    }

    .site-footer {
        padding: 170px 0 54px;
    }

    .site-footer .text-heading {
        font-size: 50px;
        margin: 0 0 25px;
    }

    .copyrights p,
    .copyrights a {
        font-size: 18px;
        margin: 0 0 5px;
    }

}

@media screen and (max-width: 1366px) {

    .container {
        max-width: 1150px;
    }

    .sub-heading {
        letter-spacing: 12px;
        font-size: 21px;
    }

    .text-heading {
        font-size: 50px;
        margin: 0 0 25px;
    }

    .top-menu ul li a {
        font-size: 16px;
    }

    .site-footer {
        padding: 160px 0 50px;
    }

    .site-footer .text-heading {
        font-size: 45px;
    }

    .copyrights p,
    .copyrights a {
        font-size: 17px;
    }

    .copyrights {
        padding: 20px 0 17px;
    }
    .footer-blk .footer-location .choose-title {
    font-size: 30px;
}
.contact-desc, .contact-call p {
    font-size: 20px;
    margin-bottom: 16px;
}
.map-iframe iframe {
    height: 270px;
}

}

@media screen and (max-width: 1280px) {

    .container {
        max-width: 960px;
    }

    .sub-heading {
        letter-spacing: 10px;
        font-size: 19px;
    }

    .text-heading {
        font-size: 45px;
    }

    a.cmn-btn {
        font-size: 17px;
        padding: 16px 65px 16px 22px;
    }

    a.cmn-btn:before {
        transform: skewX(-21deg);
    }

    .header-sec {
        padding: 15px 0;
    }

    .logo-container {
        padding-right: 30px;
    }

    .top-menu ul li {
        margin: 0 14px;
    }

    .top-menu ul li a {
        font-size: 15px;
    }

    .footer-sec {
        margin: -60px 0 0;
        clip-path: polygon(0 0, 100% 16%, 100% 100%, 0% 100%);
    }

    .site-footer {
        padding: 110px 0 50px;
    }

    .site-footer .text-heading {
        font-size: 40px;
        margin: 0 0 20px;
    }

    .copyrights p,
    .copyrights a {
        font-size: 16px;
        margin: 0 0 3px;
    }

    .copyrights a {
        padding: 0 5px;
    }

    .growthlab img {
        width: 200px;
    }

}

@media screen and (max-width: 1024px) {

    .container {
        max-width: 720px;
    }

    .text-heading {
        font-size: 40px;
        margin: 0 0 20px;
    }

    a.cmn-btn {
        font-size: 16px;
        padding: 15px 65px 15px 22px;
    }

    .menu-bar-tab {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .top-menu,
    .top-rit {
        display: none;
    }

    .tab-call svg {
        width: 23px;
        height: 23px;
        margin: -2px 0;
    }

    .tab-call span.text {
        color: #fff;
        font-size: 23px;
        letter-spacing: 0.5px;
        font-family: 'Manrope';
        display: inline-block;
    }

    button.showhide {
        background: #dfb214;
        border: none;
        width: 45px;
        height: 40px;
        padding: 0px 10px;
        border-radius: 5px;
    }

    span.menuBar.menuBar-3 {
        margin: 0;
    }

    button.showhide span {
        width: 100%;
        height: 3px;
        background-color: #fff;
        display: block;
        margin-bottom: 5px;
    }

    .header-sec {
        position: fixed;
        padding: 15px 0;
        width: 100%;
    }

    .head-sec .container {
        max-width: 100%;
        width: 100%;
        padding: 0px;
    }

    .mobinav button.menuClose {
        margin-left: auto;
        margin-bottom: 30px;
        width: 30px;
        height: 30px;
        border: none;
        background: #dfb214;
        line-height: 27px;
        font-size: 30px;
        text-align: center;
        color: #fff;
        cursor: pointer;
        padding: 0;
        font-family: 'Manrope';
    }

    .head-sec.f-nav .logo {
        width: 100% !important;
    }

    .logo-container {
        padding-right: 0;
    }

    .header-sec .logo {
        width: 100%;
        max-width: 160px;
    }

    .header-sec.f-nav .logo {
        width: 100%;
    }

    .footer-sec {
        margin: 0;
        clip-path: none;
    }

    .site-footer {
        padding: 50px 0;
    }

    .site-footer .text-heading {
        line-height: 1.15;
    }

    .ftr-logo {
        width: 100%;
        max-width: 210px;
    }

    .site-footer .text-heading {
        font-size: 35px;
        letter-spacing: 1px;
    }

    .copyrights {
        padding: 15px 0;
    }

    .copyrights p,
    .copyrights a {
        font-size: 15px;
    }

    .growthlab img {
        width: 180px;
    }
    .footer-blk .footer-location .choose-title {
    font-size: 26px;
}
.contact-desc, .contact-call p {
    font-size: 17px;
}

}

@media screen and (max-width: 768px) {

    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .sub-heading {
        letter-spacing: 7px;
        font-size: 18px;
    }

    .text-heading {
        font-size: 35px;
    }

    .logo-rit,
    .tab-call {
        display: none;
    }

    .mobile-menu-button-container {
        background: #e2b313;
        margin-top: 10px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-bottom: 1px solid #fff;
    }

    .logo {
        justify-content: center !important;
    }

    .mobile-menu-button-container a.mobi-call {
        width: 50%;
        justify-content: center;
        padding: 8px;
        border-left: 1px solid #fff;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-sec {
        padding: 20px 0 0;
        background-color: #000;
    }

    .mobile-menu-button-container button.mobileMenuToggle {
        border: none;
        background: transparent;
        width: 50%;
        cursor: pointer;
    }

    .mobile-menu-button-container button.mobileMenuToggle svg {
        width: 22px;
        height: 15px;
    }

    .mobile-menu-button-container a.mobi-call span.button-text,
    .mobile-menu-button-container span.menu-text {
        font-family: 'Manrope';
        font-weight: 500;
        font-size: 22px;
        line-height: 1;
        letter-spacing: -0.8px;
        color: #fff;
    }

    .mobile-menu-button-container span.svg-icon svg {
        width: 25px;
    }

    button.showhide {
        display: none;
    }

    .mobile-menu-button-container a.mobi-call svg {
        vertical-align: middle;
    }

    .header-sec .logo {
        margin: auto;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .header-sec.f-nav {
        border: none;
    }

    .site-footer {
        padding: 40px 0;
    }

    .site-footer .text-heading {
        font-size: 32px;
    }

    .copyrights p,
    .copyrights a {
        margin: 0 0 1px;
    }

    .ftr-logo {
        max-width: 180px;
    }
    .footer-blk {
    gap: 20px;
    flex-direction: column-reverse;
}
.site-footer .text-heading br{ display: none;}
.footer-blk .footer-location, .footer-blk .map-iframe {
    width: 100%;
    max-width: 450px;
}

}

@media screen and (max-width: 480px) {

    .sub-heading {
        letter-spacing: 5px;
        font-size: 16px;
    }

    .text-heading {
        font-size: 31px;
    }

    a.cmn-btn {
        font-size: 15px;
        padding: 14px 62px 14px 20px;
    }

    .mobinav a {
        font-size: 17px;
    }

    .mobile-menu-button-container a.mobi-call span.button-text,
    .mobile-menu-button-container span.menu-text {
        font-size: 20px;
    }

    .site-footer {
        padding: 30px 0;
    }

    .site-footer .text-heading {
        font-size: 28px;
    }
        .contact-desc, .contact-call p {
        font-size: 15px;
    }
        .footer-blk .footer-location a.cmn-btn {
        font-size: 14px;
    }

}