:root {
    --main_primary: #FB9201;
    --main_secondary: #006D46;
    --gray: #333333; 
}

body {
    font-family: 'Outfit', Arial, sans-serif;
    color: #000;
}

html, body {
    width: 100%;
    max-width: 100vw;
}

h1,h2,h3,h4,h5,h6,p {
    margin: 0px;
    padding: 0px;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
    margin: 0px;
}

.bg_primary {
    background-color: var(--main_primary);
}

.bg_secondary {
    background-color: var(--main_secondary);
}

.color_primary {
    color: var(--main_primary);
}

.color_secondary {
    color: var(--main_secondary);
}

.color_black {
    color: #000;
}

.color_gray_opacity_90 {
    color: rgba(51, 51, 51, 0.9);
}

.color_gray_opacity_75 {
    color: rgba(51, 51, 51, 0.75);
}

.color_gray {
    color: var(--gray);
}


.cursor_pointer {
    cursor: pointer;
}

.btn {
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: none;
    border: none;
    white-space: normal;
    word-wrap: break-word;
}

.btn.bg_primary:hover {
    background-color: var(--main_primary);
    color: inherit;
}

.btn.bg_secondary:hover {
    background-color: #DAA65D;
    color: var(--main_primary);
}


.btn.bg_primary {
    background-color: var(--main_primary);
    color: #fff;
    border-radius: 50px;
}

.btn.bg_primary:hover {
    color: #fff;
}

.font_12 {
    font-size: 12px;
}

.font_14 {
    font-size: 14px;
}

.font_18 {
    font-size: 18px;
}

.radius_10 {
    border-radius: 10px;
}

.radius_20 {
    border-radius: 20px;
}

.radius_30 {
    border-radius: 30px;
}

input {
    border: 1px solid var(--light_gray);
}

::placeholder {
    color: gray !important;
}

.sec_pad {
    padding: 60px 0px;
}


header {
    box-shadow: 0px 1px 8px rgba(0,0,0,0.25);
}


.hero_bg {
    background: #0F6B53;
    width: 84%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 20px 20px 0;
    z-index: 1;
}

.hero_box {
    background: #fff;
    padding: 20px 40px 10px;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    position: relative;
    z-index: 5;
}

.btn_order_lg {
    background-color: var(--main_primary);
    color: #fff;
    font-weight: 400;
    border-radius: 100px;
    border: none;
    font-size: 28px;
    border-radius: 100px;
    padding: 12px 40px;
}

.btn.btn_order_lg:hover {
    background: var(--main_primary);
    color: #fff;
}

.btn_order_sm {
    background-color: var(--main_primary);
    color: #fff;
    font-weight: 400;
    border-radius: 100px;
    border: none;
    font-size: 28px;
    border-radius: 100px;
    padding: 10px 44px;
    text-transform: uppercase;
}

.btn.btn_order_sm:hover {
    background: var(--main_primary);
    color: #fff;
}


    /* Image half outside container */
.hero-image {
    position: absolute;
    right: -78px;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 395px;
    border-radius: 10px;
    z-index: 6;
}

.header_phone_icon, .header_envelop_icon {
    font-size: 34px;
    color: var(--main_primary);
}

.faq-question {
    background-color: #006D46;
    color: white;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
    user-select: none;
    transition: background-color 0.2s;
}

.faq-answer {
    padding: 10px 16px;
    color: var(--gray);
    font-weight: 300;
    font-size: 22px;
}

.toggle-icon {
    font-weight: bold;
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.service-box {
    background: #F3F3F3;
    border-radius: 20px;
    padding: 50px 14px;
    transition: 0.3s;
    min-height: 754px;
}

.service-list li {
    margin-bottom: 8px;
    list-style: none;
    font-size: 24px;
    font-weight: 300;
    color: rgba(51,51,51,0.75);
    display: flex;
    align-items: center;
}

footer {
    background: linear-gradient(90deg, #e7a048, #f4af44);
    padding: 40px 0;
    color: #fff;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 6px;
    opacity: 0.9;
}

.footer-link:hover {
    opacity: 1;
}

.footer-copy {
    opacity: 0.85;
    font-size: 0.85rem;
}

footer i.fa-phone, footer i.fa-envelope {
    font-size: 28px;
}

.mobile_view {
    display: none;
}

img.footer-logo {
    width: 270px;
}

.header_logo img {
    width: 90%;
}

.images_icon div {
    width: 14%;
    text-align: center;
    margin-bottom: 30px;
}

.images_icon div img {
    width: 60px;
}

.hero_box ul li {
    display: flex;
    align-items: center;
}

.trust_pilot_banner {
    background: none !important;
}

.trust_pilot_banner{
    width: 40% !important;
    padding-left: 0px !important;
    background: none !important;
}

    /* Add + by default */
.faq-question::after {
    content: '+';
    font-weight: bold;
    font-size: 1.2em;
    margin-left: 10px;
}

/* When the target collapse is shown, change to − */
.faq-question[aria-expanded="true"]::after {
    content: '−';
}

.trust_pilot_banner {
    width: 22% !important;
}

header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: white;
}