/*!
Theme Name: ninelinks
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: ninelinks
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.

ninelinks 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/
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');


/* Fonts */

/* font-family: "Fraunces", serif;
font-family: "Inter Tight", sans-serif;
 font-family: "JetBrains Mono", monospace; */


:root {
  --blue:#47AAC5;
  --yellow:#F9A61A;
  --gradient-primary: linear-gradient(90deg, #F9A61A 0%, #47AAC5 100%);
  --gradient-light: linear-gradient(90deg, rgba(249, 166, 26, 0) 0%, rgba(249, 166, 26, 0.3) 13%, rgba(71, 170, 197, 0.3) 84%, rgba(71, 170, 197, 0) 100%);
  --black:#181818;
  --white:#FFFFFF;
  --bg-color:#F7F5F3;
  --clr-mint: #D9FFF2;
  --clr-cream: #FFF7D9;
  --clr-peach: #FFDFD9;
  --clr-lavender: #E1D9FF;
  --clr-pink: #FFD9F8;
  --clr-sky: #D9F0FF;

  /* Font Family */
  --ff-heading: "Fraunces", serif;
  --ff-body: "Inter Tight", sans-serif;
  --ff-mono: "JetBrains Mono", monospace;

  --fw-regular:400;
  --fw-medium:500;
  --fw-semibold:600;

  /* Headings - Desktop sizes from your design */
  --fs-h1: clamp(3.2rem, 2.4rem + 3vw, 7rem);
  --lh-h1: 1.28;

  --fs-h2: clamp(2.4rem, 1.6rem + 2.5vw, 5rem);
  --lh-h2: 1.24;

  --fs-h3: clamp(2rem, 1.4rem + 1.5vw, 3.8rem);
  --lh-h3: 1.3;

  --fs-h4: clamp(1.8rem, 1.3rem + 1vw, 2.4rem);
  --lh-h4: 1.3;

  /* Paragraphs - Desktop sizes from your design */
  --fs-body-lg: clamp(1.4rem, 1.2rem + 0.5vw, 2rem);
  --lh-body-lg: 1.6;

  --fs-body-md: clamp(1.3rem, 1.2rem + 0.3vw, 1.8rem);
  --lh-body-md: 1.6;

  --fs-body-sm: clamp(1.2rem, 1.15rem + 0.25vw, 1.6rem);
  --lh-body-sm: 1.6;

  /* Extra - Desktop sizes from your design */
  --fs-big: clamp(2.8rem, 1.8rem + 3vw, 5rem);
  --lh-big: 1.24;

  --fs-small: clamp(1.1rem, 1.05rem + 0.15vw, 1.3rem);
  --lh-small: 1.5;
}


h1 , h2 , h3 , h4 , h5 ,h6{
	font-family: var(--ff-heading);
	font-weight: var(--fw-regular);
}

h1 ,.title_h1{
	font-size: var(--fs-h1);
	line-height: var(--lh-h1);
}

h2,.title_h2{
	font-size: var(--fs-h2);
	line-height: var(--lh-h2);
}

h3,.title_h3{
	font-size: var(--fs-h3);
	line-height: var(--lh-h3);
}

h4 , .title_h4{
	font-size: var(--fs-h4);
	line-height: var(--lh-h4);
}

.title_h2_big{
	font-size: var(--fs-big);
	line-height: var(--lh-big);
}

.body_lg p , .body_lg{
	font-size: var(--fs-body-lg);
	line-height: var(--lh-body-lg);
}

.body_md p , .body_md{
	font-size: var(--fs-body-md);
	line-height: var(--lh-body-md);
}

.body_sm p , .body_sm{
	font-size: var(--fs-body-sm);
	line-height: var(--lh-body-sm);
}


html {
  font-size: 10px;
  scroll-behavior: smooth;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.container {
  max-width: 1540px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 5rem;
}
body {
  font-family: var(--ff-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
  color: var(--black);
  background: var(--white);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  font-style: normal;
}
a {
	text-decoration: none;
	font-size: var(--fs-body-lg);
	line-height: var(--lh-body-lg);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
}


/* Header */

a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: var(--white);
    background: var(--black);
    z-index: 1;
}

a.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #F9A61A 0%,
        #47AAC5 50%,
        #F9A61A 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
	border: 1px solid transparent;
}

a.btn:hover::before {
    opacity: 1;
}


/* Testing 07:35 */

/* Testing 07:36 */