/*!
Theme Name: Creactive
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: creactive
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Creactive is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--text-color--primary: #202022;
	--brand-color--orange: #FF4921;
	--brand-color--light-grey: #E3E3E3;
	--brand-color--grey: #4f4f51;
	--brand-color--black: #000000;
	--brand-color--white: #ffffff;
	--brand-color--indigo: #4414DB;
	--brand-color--yellow: #FFDE00;
	--brand-border-radius: 4px;
	--global-transition: all 0.22s ease-in-out;
    --line-height-mult: 1.5;
    --header-height: 85px;
     --animate-delay: 0.5s;
}

@media screen and (min-width: 50rem) {
    :root {
        --global-container-padding: 3rem;
        --global-padding-xlarge: 8rem;
        --global-padding-large: 4.5rem;
        --global-padding-medium: 2.5rem;
        --p-size: 1.125rem;
        --p-line-height: calc(var(--p-size) * var(--line-height-mult));
        --header-copy-size: 2rem;
        --header-copy-line-height: calc(var(--header-copy-size) * var(--line-height-mult));
    }
}

@media screen and (min-width: 28rem) and (max-width: 50rem) {
    :root {
        --global-container-padding: 2.5rem;
        --global-padding-xlarge: 4.5rem;
        --global-padding-large: 3rem;
        --global-padding-medium: 2rem;
        --p-size: 1.05rem;
        --p-line-height: calc(var(--p-size) * var(--line-height-mult));
        --header-copy-size: 2rem;
        --header-copy-line-height: calc(var(--header-copy-size) * var(--line-height-mult));
    }
}

@media screen and (max-width: 28rem) {
    :root {
        --global-container-padding: 1.6rem;
        --global-padding-xlarge: 3rem;
        --global-padding-large: 2rem;
        --global-padding-medium: 1.25rem;
        --p-size: 0.95rem;
        --p-line-height: calc(var(--p-size) * var(--line-height-mult));
        --header-copy-size: 1.4rem;
        --header-copy-line-height: calc(var(--header-copy-size) * var(--line-height-mult));
    }
}

/* Fonts */

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Italic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-BoldItalic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Light.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-LightItalic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Medium.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-MediumItalic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Roman.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
	box-sizing: border-box;
}

/* Animations */

.section {
    /* animation: fadeIn; 
    animation-duration: 2s; */
}