/*
Theme Name: Lotus Creative Solution
Theme URI: https://devignitor.com/lotuscreativesolution
Author: Devignitor
Author URI: https://devignitor.com
Description: A full width customizable WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: customizable, full-width, services
*/
:root {
    --primary: #FF7343;
    --body-color: #FFFFFF;
    --normal-text: #6D6F72;
    --disabled-text: #8F929D;
    --heading-text: #0E0E0E;
    --link-normal: #0E0E0E;
    --link-hover: #F8561F;
    --link-active: #FF7343;
    --link-secondary: #0B1CD5;
    --link-secondary-hover: #2f40f7;
    --light-blue: #b5c0d3;
    --yellow: #FFD168;
}

body {
    font-family: 'DM Sans', sans-serif;
    padding: 0%;
}

.text-faded {
    color: var(--normal-text);
}

.text-primary-custom {
    color: var(--primary);
}

.text-secondary-custom {
    color: var(--link-secondary);
}

.bg-secondary-custom {
    background-color: var(--link-secondary);
}

.text-bold {
    font-weight: bold;
}

.text-large {
    font-size: 1.5rem;
}

.btn-custom-primary {
    background-color: var(--primary);
    font-size: 20px;
    font-weight: 500;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    padding: 7px 30px;
    padding-bottom: 12px;
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background-color: var(--link-hover);
}

.btn-custom-secondary {
    background-color: var(--link-secondary);
    font-size: 20px;
    font-weight: 500;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    padding: 7px 30px;
    padding-bottom: 12px;
    transition: all 0.3s ease;
}

.btn-custom-secondary:hover {
    background-color: var(--link-secondary-hover);
}