/*
Theme Name: My Awesome Theme
Theme URI: https://www.myawesometheme.com
Author: John Doe
Author URI: https://www.johndoe.com
Description: My Awesome Theme is a responsive, modern, and feature-rich WordPress theme designed for all kinds of websites. It comes with a custom homepage layout, multiple widget areas, and full compatibility with popular plugins.
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: my-awesome-theme
Tags: responsive, modern, custom-background, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/


@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



:root {
    --white: #ffffff;
    --body-bg: #EDE8E5;
    --body-txt: #262B53;
    --radius: 1.5rem;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-size: 1.14vw;
}

@media only screen and (max-width: 1025px) {
    html {

        font-size: 1.4vw;

    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 20px;

    }
}

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

        font-size: 16px;
    }
}



body {

    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background: var(--body-bg);
    color: var(--body-txt);
    overflow-x: hidden;

}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--orange);
    text-decoration: none;
}


a:hover {
    color: var(--purple);
}




p,
li {
    line-height: 150%;
}

ul {
    padding-left: 20px;
    list-style-type: square;
}

ul li::marker {
    color: var(--purple);
}

ol {
    padding-left: 1.5rem;
}

ol li::marker {
    color: #fff;
    font-weight: bold;
}

ol li {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    padding-left: 10px;
}

ol li::before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: var(--orange);
    display: block;
    position: absolute;
    left: -1.5rem;
    top: 0;
    z-index: -1;
}

h1,
h2,
h3 {}

h1 {
    font-size: 3.375rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: "Bodoni Moda", serif;
    color: var(--body-bg);

}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}


h3 {
    font-size: 2.25rem;
}


.button,
.wp-block-button a,
input[type=submit] {
    display: inline-block;
    padding: 12px 20px;
    color: #fff;
    background: var(--body-txt);
    text-transform: uppercase;
    font-weight: medium;
    border: none;
    font-family: inherit;
    font-size: inherit;
    line-height: 1;
    border-radius: 0;

}



.button:hover {

    color: #fff;
}


blockquote {
    background: var(--dark);
    padding: 0.5rem 1rem;
    margin-left: 0;
    border-left: solid 5px var(--purple);
}

.align-center {
    text-align: center;
}


header {

    background: var(--body-bg);

}

#head {

    color: var (--body-txt);



}

#top-head .content-box {
    display: flex;
    justify-content: space-between;
    align-items: right;

}


#logo svg {

    max-width: 8rem;


}


#logo svg path {

    fill: var(--body-txt);



}


.hero {

    background: var(--body-txt);
    overflow: hidden;

}


.card-style {

    border-radius: var(--radius);
    background: #fff;

}



.fullsize {

    position: relative;
    color: var(--body-bg);
    left: 50%;
    margin-left: -50vw;
}


footer {

    background: var(--body-bg);
    color: var(--body-txt);
    font-size: smaller;
    padding: 5rem 0 3rem 0;

}


