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




/* -------------------------
--------- 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;
    transition: all 0.3s ease;
}

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,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMy4wMzkiIGhlaWdodD0iMTUuNDE3IiB2aWV3Qm94PSIwIDAgMjMuMDM5IDE1LjQxNyI+CiAgPHBhdGggaWQ9IlBhdGhfNDYxMyIgZGF0YS1uYW1lPSJQYXRoIDQ2MTMiIGQ9Ik0xNzQ1LjgzMyw2NzYuOTE3aC0uMDM1YTIuNSwyLjUsMCwwLDEtMS44NzgtLjg5MWwtOC43NjItMTAuNDE3YTIuNSwyLjUsMCwwLDEsMy44MjYtMy4yMTlsNi45LDguMjA3LDcuMzU2LTguMjZhMi41LDIuNSwwLDEsMSwzLjczNCwzLjMyNUwxNzQ3LjcsNjc2LjA4QTIuNSwyLjUsMCwwLDEsMTc0NS44MzMsNjc2LjkxN1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNzM0LjU3IC02NjEuNSkiIGZpbGw9IiNmMzZkMzEiLz4KPC9zdmc+Cg==) no-repeat 100% 50%;
	-moz-appearance: none; 
	-webkit-appearance: none; 
	appearance: none;
	background-size: 15px;
	background-position: 97% 50%;
	line-height: 1.8;
}


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

.rk-menu-toggle {
    width: 28px;
    height: 18px;
    margin-right: 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;
    }
}





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

body .gform_wrapper.gravity-theme input[type=color], 
body .gform_wrapper.gravity-theme input[type=date], 
body .gform_wrapper.gravity-theme input[type=datetime-local], 
body .gform_wrapper.gravity-theme input[type=datetime], 
body .gform_wrapper.gravity-theme input[type=email], 
body .gform_wrapper.gravity-theme input[type=month], 
body .gform_wrapper.gravity-theme input[type=number], 
body .gform_wrapper.gravity-theme input[type=password], 
body .gform_wrapper.gravity-theme input[type=search], 
body .gform_wrapper.gravity-theme input[type=tel], 
body .gform_wrapper.gravity-theme input[type=text], 
body .gform_wrapper.gravity-theme input[type=time], 
body .gform_wrapper.gravity-theme input[type=url], 
body .gform_wrapper.gravity-theme input[type=week], 
body .gform_wrapper.gravity-theme select, 
body .gform_wrapper.gravity-theme textarea {
    background-color: #fff;
    border-radius: 8px;
    border-color: #fff;
    padding: 12px;
}


body .gform_wrapper.gravity-theme .gform_footer, 
body .gform_wrapper.gravity-theme .gform_page_footer {
    margin-bottom: 0;
    padding-bottom: 0;
}


body .gform_wrapper.gravity-theme .gform_footer button, 
body .gform_wrapper.gravity-theme .gform_footer input, 
body .gform_wrapper.gravity-theme .gform_page_footer button, 
body .gform_wrapper.gravity-theme .gform_page_footer input {
    color: #fff;
    border-radius: 0 10px 0 10px;
    border: none;
    font-weight: 700;
    padding: 8px 50px 8px 20px;
    font-size: 19px;
    margin-bottom: -30px;
    position: relative;
    overflow: hidden;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNS41ODMiIGhlaWdodD0iMTUuOCIgdmlld0JveD0iMCAwIDE1LjU4MyAxNS44Ij4KICA8ZyBpZD0iR3JvdXBfMTA3OTQiIGRhdGEtbmFtZT0iR3JvdXAgMTA3OTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00MzAuMjYyIC0xMDM1LjY1MykiPgogICAgPGcgaWQ9Ikdyb3VwXzU0IiBkYXRhLW5hbWU9Ikdyb3VwIDU0Ij4KICAgICAgPHBhdGggaWQ9IlVuaW9uXzEiIGRhdGEtbmFtZT0iVW5pb24gMSIgZD0iTS01Mjk0LjkzOS05OC41MTVhMS41LDEuNSwwLDAsMSwwLTIuMTIxbDkuOTkzLTkuOTkzLTguMTM4LjU0MWExLjUsMS41LDAsMCwxLTEuNi0xLjQsMS41LDEuNSwwLDAsMSwxLjQtMS42bDExLjg4Ni0uNzg5YTEuNSwxLjUsMCwwLDEsMS4xNjEuNDM2LDEuNSwxLjUsMCwwLDEsLjQzNiwxLjE2bC0uNzg3LDExLjg4OWExLjUsMS41LDAsMCwxLTEuNiwxLjQsMS41LDEuNSwwLDAsMS0xLjQtMS42bC41MDgtNy42NzctOS43NDYsOS43NDZhMS41LDEuNSwwLDAsMS0xLjA2MS40NEExLjUsMS41LDAsMCwxLTUyOTQuOTM5LTk4LjUxNVoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDU3MjUuNjQgMTE0OS41MjgpIiBmaWxsPSIjZmZmIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K) no-repeat calc(100% - 20px) 50%;
    background-color: #F36D31;
    background-size: 14px;
    font-family: "Qanelas", sans-serif;
    letter-spacing: 0.02em;
}

body .gform_wrapper.gravity-theme .gform_footer button:hover, 
body .gform_wrapper.gravity-theme .gform_footer input:hover, 
body .gform_wrapper.gravity-theme .gform_page_footer button:hover, 
body .gform_wrapper.gravity-theme .gform_page_footer input:hover {
    background-color: #1E232B;
}

body .gform_wrapper.gravity-theme .gform_footer button svg, 
body .gform_wrapper.gravity-theme .gform_footer input svg, 
body .gform_wrapper.gravity-theme .gform_page_footer button svg, 
body .gform_wrapper.gravity-theme .gform_page_footer input svg {
    width: 12px;
    height: auto;
    margin-left: 20px;
}

body .gform_wrapper.gravity-theme .gform_footer button span, 
body .gform_wrapper.gravity-theme .gform_page_footer button span {
    position: relative;
    z-index: 2;
}

body .gform_wrapper.gravity-theme .gform_footer button:before, 
body .gform_wrapper.gravity-theme .gform_page_footer button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 102%;
    height: 102%;
    background-color: #072C33;
    border-radius: 999px;
    transform: translateX(-110%);
    transition: all 0.3s ease;
}

body .gform_wrapper.gravity-theme .gform_footer button:hover:before, 
body .gform_wrapper.gravity-theme .gform_page_footer button:hover:before {
    transform: translateX(0);
}

body .gform_wrapper.gravity-theme .gform_footer button:hover, 
body .gform_wrapper.gravity-theme .gform_page_footer button:hover {
    color: #fff;
}

body .gform_wrapper.gravity-theme .gform_footer button svg path, 
body .gform_wrapper.gravity-theme .gform_page_footer button svg path {
    transition: all 0.3s ease;
}

body .gform_wrapper.gravity-theme .gform_footer button:hover svg path, 
body .gform_wrapper.gravity-theme .gform_page_footer button:hover svg path {
    fill: #fff;
}






body .darker-form .gform_wrapper.gravity-theme input[type=color], 
body .darker-form .gform_wrapper.gravity-theme input[type=date], 
body .darker-form .gform_wrapper.gravity-theme input[type=datetime-local], 
body .darker-form .gform_wrapper.gravity-theme input[type=datetime], 
body .darker-form .gform_wrapper.gravity-theme input[type=email], 
body .darker-form .gform_wrapper.gravity-theme input[type=month], 
body .darker-form .gform_wrapper.gravity-theme input[type=number], 
body .darker-form .gform_wrapper.gravity-theme input[type=password], 
body .darker-form .gform_wrapper.gravity-theme input[type=search], 
body .darker-form .gform_wrapper.gravity-theme input[type=tel], 
body .darker-form .gform_wrapper.gravity-theme input[type=text], 
body .darker-form .gform_wrapper.gravity-theme input[type=time], 
body .darker-form .gform_wrapper.gravity-theme input[type=url], 
body .darker-form .gform_wrapper.gravity-theme input[type=week], 
body .darker-form .gform_wrapper.gravity-theme select, 
body .darker-form .gform_wrapper.gravity-theme textarea {
    background-color: #E4E8EC;
}

@media screen and (max-width: 767px) {
    body .gform_wrapper.gravity-theme .gform_footer button, body .gform_wrapper.gravity-theme .gform_footer input, body .gform_wrapper.gravity-theme .gform_page_footer button, body .gform_wrapper.gravity-theme .gform_page_footer input {
        font-size: 16px;
        line-height: 1;
        min-height: 0;
        padding-top: 5px;
        padding-bottom: 5px;
        background-size: 12px;
    }
    body .gform_wrapper.gravity-theme .gform_footer, body .gform_wrapper.gravity-theme .gform_page_footer {
        align-items: center;
        justify-content: center;
    }
}