/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --accent-color: #FF5722;
    --text-dark: #212121;
    --text-medium: #666666;
    --text-light: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* overflow-x: hidden!important; */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

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

a:hover {
    color: var(--primary-dark);
}

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

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-light);
}

.btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Navigation */
.main-nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 120px;
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
    transition: var(--transition);
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: calc(100vh - 80px);
        top: 80px;
        background-color: var(--bg-white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        width: 50%;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-links li {
        opacity: 0;
        margin-left: 0;
    }
    
    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-content {
    max-width: 600px;
    padding: 0 5%;
    z-index: 10;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero h1 span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: var(--primary-light);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 80%;
    z-index: 1;
    border-radius: 0 0 0 300px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-circles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    top: -150px;
    left: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background-color: var(--accent-color);
    bottom: -100px;
    left: 10%;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    top: 20%;
    right: 20%;
}

@media screen and (max-width: 992px) {
    .hero {
        flex-direction: column;
        height: auto;
        padding-top: 150px;
        padding-bottom: 50px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 90%;
        height: 400px;
        border-radius: 20px;
        margin: 0 auto;
    }
}

/* Tjenester Section */
.tjenester {
    background-color: var(--bg-light);
}

.tjenester-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.tjeneste-kort {
    background-color: var(--bg-white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tjeneste-kort:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.tjeneste-kort:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-light);
    z-index: -1;
    transition: var(--transition);
}

.tjeneste-kort:hover:before {
    height: 100%;
}

.tjeneste-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tjeneste-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
}

.tjeneste-kort h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tjeneste-kort p {
    margin-bottom: 1.5rem;
}

.pris {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tjeneste-lenke {
    display: inline-block;
    font-weight: 600;
    position: relative;
}

.tjeneste-lenke:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.tjeneste-lenke:hover:after {
    margin-left: 10px;
}

/* Om Oss Section */
.om-oss {
    padding: 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.diagonal-container {
    transform: skewY(-5deg);
    margin-top: -100px;
    margin-bottom: -100px;
    padding: 200px 0;
    background-color: var(--primary-color);
    overflow: hidden;
}

.om-oss-content {
    transform: skewY(5deg);
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 5rem;
    align-items: center;
}

.om-oss-text {
    flex: 1;
    color: var(--text-light);
}

.om-oss-text h2 {
    color: var(--text-light);
}

.om-oss-text h2 span {
    color: var(--primary-light);
}

.om-oss-text p {
    color: rgba(255, 255, 255, 0.8);
}

.om-oss-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--primary-light);
    font-weight: 500;
}

.om-oss-image {
    flex: 1;
    position: relative;
}

.om-oss-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transform: rotate(-5deg);
}

@media screen and (max-width: 992px) {
    .om-oss-content {
        flex-direction: column;
    }
    
    .om-oss-image {
        margin-top: 3rem;
    }
    
    .om-oss-image img {
        transform: rotate(0);
    }
}

/* Prosess Section */
.prosess {
    background-color: var(--bg-light);
}

.prosess-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.prosess-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-light);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: var(--shadow-light);
}

.timeline-content {
    width: 45%;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--bg-white);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content:before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content:before {
    left: -10px;
}

@media screen and (max-width: 768px) {
    .prosess-timeline:before {
        left: 30px;
    }
    
    .timeline-number {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: 80%;
        margin-left: 60px !important;
    }
    
    .timeline-content:before {
        left: -10px !important;
        right: auto !important;
    }
}

/* Vitnesbyrd Section */
.vitnesbyrd {
    background-color: var(--bg-white);
}

.vitnesbyrd-slider {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.vitnesbyrd-container {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.vitnesbyrd-kort {
    position: absolute;
    width: 100%;
    display: flex;
    gap: 3rem;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.vitnesbyrd-kort.active {
    opacity: 1;
    transform: translateX(0);
}

.vitnesbyrd-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.vitnesbyrd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vitnesbyrd-tekst {
    flex: 1;
}

.vitnesbyrd-tekst p {
    font-style: italic;
    position: relative;
    padding-left: 25px;
    color: var(--text-dark);
}

.vitnesbyrd-tekst p:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.vitnesbyrd-tekst h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.vitnesbyrd-tekst span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-light);
}

.prev-btn svg, .next-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

@media screen and (max-width: 768px) {
    .vitnesbyrd-kort {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .vitnesbyrd-tekst p {
        padding-left: 0;
    }
    
    .vitnesbyrd-tekst p:before {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Ernæringsdiagram Section */
.ernaeringsdiagram {
    background-color: var(--bg-light);
}

.diagram-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.ernaring-chart {
    flex: 1;
    min-width: 400px;
    height: 400px;
    position: relative;
}

.chart-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 50%, 100% 0, 100% 100%);
    transition: var(--transition);
}

.chart-segment:hover {
    transform: translateX(10px) translateY(-10px);
}

.protein {
    background-color: #FF5722;
    transform-origin: center;
    transform: rotate(0deg);
}

.karbo {
    background-color: #2196F3;
    transform-origin: center;
    transform: rotate(120deg);
}

.fett {
    background-color: #FFEB3B;
    transform-origin: center;
    transform: rotate(240deg);
}

.segment-inner {
    position: absolute;
    top: 47%;
    left: 83%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.segment-inner h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.segment-inner p {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.chart-center {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    z-index: 10;
}

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

.center-content h3 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.ernaering-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-kort {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.info-kort:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-kort:nth-child(1) {
    border-top: 5px solid #FF5722;
}

.info-kort:nth-child(2) {
    border-top: 5px solid #2196F3;
}

.info-kort:nth-child(3) {
    border-top: 5px solid #FFEB3B;
}

.info-kort h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-kort p {
    margin-bottom: 1rem;
}

.info-kort ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-kort li {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

@media screen and (max-width: 992px) {
    .diagram-container {
        flex-direction: column;
    }
    
    .ernaring-chart {
        margin: 0 auto;
    }
}

/* Kontakt Section */
.kontakt {
    background-color: var(--bg-white);
}

.kontakt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 5rem;
}

.kontakt-info {
    flex: 1;
}

.kontakt-info h2 {
    margin-bottom: 1.5rem;
}

.kontakt-info h2 span {
    color: var(--primary-color);
}

.kontakt-info p {
    margin-bottom: 2rem;
}

.kontakt-detaljer {
    margin-bottom: 2.5rem;
}

.kontakt-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.kontakt-item svg {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: var(--primary-color);
}

.kontakt-item p {
    margin-bottom: 0;
}

.sosiale-medier {
    display: flex;
    gap: 1rem;
}

.sosial-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sosial-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.sosial-link svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.sosial-link:hover svg {
    color: var(--text-light);
}

.kontakt-form {
    flex: 1;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.form-gruppe {
    position: relative;
    margin-bottom: 2rem;
}

.form-gruppe input,
.form-gruppe textarea,
.form-gruppe select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background-color: var(--bg-white);
    transition: var(--transition);
}

.form-gruppe label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--text-medium);
    pointer-events: none;
    transition: var(--transition);
}

.textarea-gruppe label {
    top: 1.5rem;
}

.form-gruppe input:focus,
.form-gruppe textarea:focus,
.form-gruppe select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-gruppe input:focus ~ label,
.form-gruppe textarea:focus ~ label,
.form-gruppe input:not(:placeholder-shown) ~ label,
.form-gruppe textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    padding: 0 5px;
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.form-gruppe textarea {
    height: 120px;
    resize: none;
}

.form-gruppe select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-gruppe select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

@media screen and (max-width: 992px) {
    .kontakt-container {
        flex-direction: column;
    }
    
    .kontakt-form {
        margin-top: 3rem;
    }
}

/* Footer */
.footer {
    background-color: #333;
    color: var(--text-light);
    padding-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: #aaa;
    max-width: 400px;
}

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-between;
    min-width: 300px;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #222;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 5%;
}

.footer-bottom p {
    margin-bottom: 0;
    color: #aaa;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero h1{
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 1s ease forwards;
}

/* Custom Form Elements */
input, textarea, select, button {
    font-family: 'Poppins', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}




.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
}

.text-wrapper p{
    margin-bottom: 10px;
}