/* 
Theme Name: Drew Group
Description: Drew Group is a child theme of Hello Elementor, created by Rouken
Author: Rouken
Author URI: https://rouken.co/
Template: hello-elementor
Version: 1.0.5
Text Domain: drewgroup
*/




/* -------------------------
--------- GENERAL ----------
------------------------- */

:root {
    --site-primary: #000;
    --site-accent: #000;
    --site-text: #000;
    --site-bg1: #fafafa;
}

::selection {
    background-color: var(--site-accent);
    color: #fff;
}

html {
    font-size: 16px;
}

body {
    color: #000;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6, body .elementor-heading-title {
    line-height: 1.3;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

.grecaptcha-badge {
    display: none !important;
}

ol, ul {
    margin-bottom: 1em;
}

.elementor p:last-child {
    margin-bottom: 0;
}


/* -------------------------
---------- FORMS -----------
------------------------- */

input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    border-radius: 0;
    border-color: var(--site-primary);
    outline: none !important;
    color: var(--site-primary);
    opacity: 1;
}

::placeholder {
    opacity: 1;
    color: var(--site-text);
}

::-webkit-input-placeholder {
    opacity: 1;
    color: var(--site-text);
}

::-ms-input-placeholder {
    opacity: 1;
    color: var(--site-text);
}

input[type=button], input[type=submit], button {
    background-color: var(--site-accent);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 0.75em 2em;
}

input[type=button]:hover, input[type=submit]:hover, button:hover {
    background: none;
    color: var(--site-accent);
}

form textarea {
    height: 150px;
}

form select {
	background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZX0uY2xzLTJ7ZmlsbDojNDQ0O308L3N0eWxlPjwvZGVmcz48dGl0bGU+YXJyb3dzPC90aXRsZT48cmVjdCBjbGFzcz0iY2xzLTEiIHdpZHRoPSI0Ljk1IiBoZWlnaHQ9IjEwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEuNDEgNC42NyAyLjQ4IDMuMTggMy41NCA0LjY3IDEuNDEgNC42NyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzLjU0IDUuMzMgMi40OCA2LjgyIDEuNDEgNS4zMyAzLjU0IDUuMzMiLz48L3N2Zz4=) no-repeat 100% 50%;
	-moz-appearance: none; 
	-webkit-appearance: none; 
	appearance: none;
	background-size: 18px;
	background-position: 97% 50%;
	line-height: 1.8;
}


/* -------------------------
---- MOBILE MENU TOGGLE ----
------------------------- */

.rk-menu-toggle {
    width: 28px;
    height: 18px;
    margin-left: auto;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.rk-menu-toggle span {
    width: 100%;
    height: 2px;
    display: block;
    background-color: var(--site-primary);
    margin-bottom: 6px;
    position: relative;
    transition: all 0.3s ease;
    top: 0;
}

.rk-menu-open .rk-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.rk-menu-open .rk-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.rk-menu-open .rk-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    top: -8px;
}



/* -------------------------
------- MOBILE MENU --------
------------------------- */

.rk-menu-open {
    overflow: hidden;
}

.rk-menu-curtain {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    transition: width 0.6s ease;
    --rk-menu-width: 350px;
}

.rk-menu-open .rk-menu-curtain {
    width: var(--rk-menu-width);
}


.rk-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    background: #eee;
    width: var(--rk-menu-width);
    z-index: 50;
    height: 100%;
    padding: 60px 30px;
    transform: translate(100%, 0);
    transition: transform 0.6s ease;
}

.rk-menu-open .rk-mobile-menu {
    transform: translate(0, 0);
}

.rk-mobile-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 24px;
}

.rk-mobile-menu ul li {
    position: relative;
}

.rk-mobile-menu ul li i {
    position: absolute;
    top: 0.2em;
    right: 0.1em;
    display: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rk-mobile-menu ul .menu-item-has-children > i {
    display: inline-block;
}

.rk-mobile-menu ul li i.flip {
    transform: rotate(180deg);
}

.rk-mobile-menu ul li .sub-menu {
    font-size: 0.8em;
    padding: 0 0 1em 0;
}

@media screen and (min-width: 1024px) {
    .rk-mobile-menu {
        /* display: none; */
    }
}

@media screen and (min-width: 768px) {
    .rk-mobile-menu {
        padding-right: 45px;
    }
}

@media screen and (max-width: 767px) {
    .rk-mobile-menu {
        padding-right: 25px;
    }
    .rk-mobile-menu ul li i {
        right: 0;
    }
}

@media screen and (max-width: 480px) {
    .rk-mobile-menu, .rk-menu-open .rk-menu-curtain {
        width: 100vw;
    }
}

/* -------------------------
--------- FOOTER -----------
------------------------- */

.minor-footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.minor-footer-nav ul li {
    display: inline-block;
}

.minor-footer-nav ul li:not(:last-of-type) {
    margin-right: 2em;
}

@media screen and (min-width: 768px) {
    .minor-footer-nav ul {
        float: right;
    }
}