/*!
Theme Name: theme_svinnrik
Theme URI: http://underscores.me/
Author: granathreklam
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: theme_svinnrik
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.

theme_svinnrik 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/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*@import "generic/normalize";


@import "generic/box-sizing";

@import "base/base";

@import "components/components";


@import "plugins/jetpack/infinite-scroll";

@import "utilities/accessibility";

@import "utilities/alignments";*/
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  z-index: 2;
  position: fixed;
  width: 100%;
  transition: transform 300ms;
  transition-timing-function: cubic-bezier(0, 0, 0.5, 1);
}
.site-header .logo img {
  max-width: 100px;
}
.site-header .menu {
  list-style: none;
  justify-content: space-between;
  margin-bottom: 0;
  margin-right: 30px;
}
.site-header .menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  color: #fff;
}
.site-header .menu ul li {
  padding: 20px 40px;
  cursor: pointer;
}
.site-header .menu ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "BrandonGrotesque-Regular", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
}
.site-header .menu ul li a:hover {
  text-decoration: none;
  font-size: 18px;
}
.site-header .menu .sub-menu {
  display: none;
  position: absolute;
  background-color: #3E731F;
  z-index: 1;
}
.site-header .menu .sub-menu li {
  display: block;
}
.site-header .menu:hover .sub-menu {
  display: block;
}
.site-header .toggle-nav-button {
  display: none;
}
@media (max-width: 828px) {
  .site-header .navigation-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .site-header .navigation-container .toggle-nav-button .icon {
    width: 30px;
    margin-right: 0;
    position: absolute;
    left: 4.5rem;
  }
  .site-header .navigation-container .toggle-nav-button .bar {
    width: 30px;
    height: 2px;
    background-color: #000;
    margin: 5px 0;
    transition: transform 0.2s ease-in-out;
  }
  .site-header .navigation-container .toggle-nav-button.open .icon .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  .site-header .navigation-container .toggle-nav-button.open .icon .bar:nth-child(2) {
    opacity: 0;
  }
  .site-header .navigation-container .toggle-nav-button.open .icon .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
  }
  .site-header .navigation-container .toggle-nav-button .close-icon .bar {
    transition: transform 0.2s ease-in-out;
  }
  .site-header .navigation-container .toggle-nav-button.open .menu-text {
    display: none;
  }
  .site-header .navigation-container .toggle-nav-button.open .close-text {
    display: inline;
  }
  .site-header .navigation-container .toggle-nav-button .close-text {
    display: none;
  }
  .site-header .close-text, .site-header .menu-text {
    color: #000;
    font-family: "BrandonGrotesque-Black", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
  }
  .site-header .toggle-nav-button {
    display: block;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
    right: 2.5rem;
  }
  .site-header .site-navigation {
    flex-direction: column;
    align-items: center;
    position: relative;
    display: none;
  }
  .site-header .site-navigation.show-mobile-menu {
    display: block;
  }
  .site-header .close-icon {
    display: none;
  }
  .site-header .logo.z-index-negative {
    z-index: -1;
  }
  .site-header .toggle-nav-button.open .hamburger-icon {
    display: none;
  }
  .site-header .toggle-nav-button.open .close-icon {
    display: block;
  }
  .site-header .site-navigation .trigger {
    height: 22px;
    display: flex;
    align-items: center;
    padding: 10px 50px;
    position: absolute;
    top: 14%;
    right: 2rem;
    transition: all 0.5s;
  }
  .site-header .menu {
    margin-right: 18px;
  }
  .site-header .menu ul {
    display: block;
    flex-direction: column;
    position: absolute;
    top: 20px;
    right: -36%;
    width: 415px;
    max-width: 415px;
    height: 900px;
    z-index: 1;
    transition: right 0.5s;
  }
  .site-header .menu ul li {
    margin: 0;
    padding: 0;
    text-align: right;
    transition: all 0.5s;
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .site-header .menu ul a {
    margin-right: 18px;
  }
}

header.site-header.pink-header {
  background-color: #6B205E;
}
header.site-header.pink-header li:hover {
  background: #A92670;
}
header.site-header.green-header {
  background-color: #458521;
}
header.site-header.green-header li:hover {
  background: #3E731F;
}
header.site-header.orange-header {
  background-color: #EF8E21;
}
header.site-header.orange-header li a {
  color: #000;
}
header.site-header.orange-header li:hover {
  background: #CD7900;
}

@media (max-width: 828px) {
  header.site-header.pink-header .menu ul {
    background-color: #A92670;
  }
  header.site-header.pink-header .toggle-nav-button .bar {
    background-color: #fff;
  }
  header.site-header.pink-header .close-text, header.site-header.pink-header .menu-text {
    color: #fff;
  }
  header.site-header.green-header .menu ul {
    background-color: #3E731F;
  }
  header.site-header.green-header .toggle-nav-button .bar {
    background-color: #fff;
  }
  header.site-header.green-header .close-text, header.site-header.green-header .menu-text {
    color: #fff;
  }
  header.site-header.orange-header .menu ul {
    background-color: #CD7900;
  }
}
@media screen and (max-width: 1000px) {
  .site-header {
    background-color: #6B205E;
    height: auto;
  }
  .site-header:first-child {
    margin: 0 auto;
    width: 100%;
    padding: 20px 20px;
  }
  .mobile-menu {
    display: block;
  }
  .site-navigation {
    position: relative;
    top: auto;
    right: auto;
    font-size: 20px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }
  .site-navigation::before {
    content: "";
    display: block;
    flex: 1 1 auto;
  }
  .site-navigation.open::after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background-color: #6B205E;
    width: 100%;
    top: 53px;
    right: 0;
  }
  .site-navigation nav {
    flex: 0 1 auto;
  }
  .site-navigation.open nav > ul {
    border-top: none;
    text-align: left;
  }
}
/*#site-footer {
    flex: 0 1 auto;
    background-color: #333;
    box-sizing: border-box;
    width: 100%;
    padding: 60px;
    display: flex;
    align-items: flex-end;

    @media screen and (max-width: 600px) {
        padding: 40px;
        display: block;
        align-items: center;
    }

    > div,
    img {
        display: block;
        flex: 0 1 auto;

        @media screen and (max-width: 600px) {
            display: block;
            flex: none;
        }

        &:first-of-type {
            flex: 1 1 auto;
            padding-left: 0;

            @media screen and (max-width: 600px) {
                flex: none;
            }
        }
    }
    .lv-logo{
        margin-bottom: 21px;
    }
    img {
        margin-bottom: 0;
        margin-right: 30px;

        @media screen and (max-width: 600px) {
            width: 80px;
            margin: 0 auto 20px auto;
        }
    }

    nav ul {
        margin: 0;
        padding: 0;
        list-style-type: none;

        li {
            margin: 0;
            padding: 0;
            font-family: 'BrandonGrotesque-Black';        
            font-size: 18px;
            font-weight: 450;


            @media screen and (max-width: 1000px) {
                display: inline-block;
                padding: 5px 0;
            }
        }
        a {
            color: #fff;

            @media screen and (max-width: 1000px) {
                display: inline-block;
                padding: 5px 0;
            }
        }
    }
    .menu p {
        color: #FFF;
        font-family: 'BrandonGrotesque-Black';        
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 27px; 
        text-transform: uppercase;
    }
}
*/
#site-footer {
  display: flex;
  flex-direction: column;
  background-color: #333;
  padding: 60px;
  flex: 0 1 auto;
  padding-bottom: 0;
}
#site-footer .sub-menu {
  display: none;
}
#site-footer .footer-left {
  display: flex;
  flex-direction: column;
}
#site-footer .footer-left li {
  font-family: "BrandonGrotesque-Regular", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px; /* 150% */
  list-style: none;
}
#site-footer .footer-left li a {
  color: #fff;
}
#site-footer .footer-left .cookies {
  font-family: "BrandonGrotesque-Black", sans-serif;
}
#site-footer .footer-right {
  text-align: right;
  bottom: 7rem;
  position: relative;
  width: 50%;
  left: 41rem;
}
#site-footer .menu p {
  color: #FFF;
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  text-transform: uppercase;
  margin-bottom: 0;
}
#site-footer .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
#site-footer .menu ul li {
  margin-bottom: 10px;
  font-family: "BrandonGrotesque-Regular", sans-serif;
  font-size: 18px;
  font-weight: 390;
  margin-bottom: 0;
  text-transform: uppercase;
}
#site-footer .menu ul a {
  color: #fff;
  text-decoration: none;
}
#site-footer .footer-right img {
  margin-top: 20px;
}
#site-footer .lv-logo {
  margin-right: 40px;
}
@media (max-width: 767px) {
  #site-footer {
    justify-content: space-between;
    padding: 40px 20px 60px;
    flex-direction: column;
  }
  #site-footer .footer-right {
    flex-direction: row;
    justify-content: space-between;
    display: flex;
    top: 2rem;
    display: inline-flex;
    left: 0;
    margin-bottom: 60px;
  }
  #site-footer .footer-right img {
    margin-top: 0;
    margin-left: 0;
    width: 54px;
  }
  #site-footer .footer-right .lv-logo {
    width: 160px;
    align-self: flex-end;
    padding-top: 14px;
    margin-right: 8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #site-footer .footer-right {
    left: 22rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #site-footer .footer-right {
    left: 28rem;
  }
}

.page-about {
  position: relative;
  bottom: 0;
}
.page-about .container {
  margin-top: 5rem;
}
.page-about .container p {
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.page-about .text-container {
  background-color: rgba(169, 38, 112, 0.4);
  height: 330px;
  position: relative;
}
.page-about .text-container h1 {
  text-align: center;
  position: relative;
  top: 10rem;
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 58px;
  text-transform: uppercase;
}
.page-about .image-container img {
  position: absolute;
  top: 14rem;
  left: 1.875rem;
}
.page-about .puff-section {
  margin-bottom: 150px;
}
.page-about .puff-section .puff-link {
  text-decoration: underline;
  background-image: url("../images/open_in_new.svg");
  background-size: 30px;
  background-repeat: no-repeat;
  padding-left: 10%;
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #000;
}
.page-about .puff-section h2 {
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 25px;
  line-height: 32px;
  text-transform: uppercase;
  padding-bottom: 30px;
}
.page-about .puff-section .img-responsive {
  transition: transform 1s;
  padding-bottom: 30px;
}
.page-about .puff-section .img-responsive:hover {
  transform: scale(1.05);
}
.page-about .contact-section {
  background: rgba(169, 38, 112, 0.4);
  height: 600px;
  width: 100%;
}
.page-about .contact-section .image {
  position: absolute;
  bottom: 3.8rem;
  left: 54rem;
}
.page-about .contact-section .container {
  padding-top: 7rem;
}
.page-about .contact-section .contact-info {
  /* p{
     color: #000;
     font-family: 'BrandonGrotesque-Regular',sans-serif;
     font-size: 25px;
     line-height: 32px;
     margin: 0;
   }*/
}
.page-about .contact-section .contact-info .name {
  font-family: "BrandonGrotesque-Bold", sans-serif;
}
.page-about .contact-section .contact-info a {
  color: #000;
}
.page-about .contact-section .link-container {
  padding-top: 40px;
}
.page-about .contact-section .link {
  font-family: "BrandonGrotesque-Regular", sans-serif;
  font-size: 25px;
  font-weight: 390;
  line-height: 32px; /* 128% */
  text-decoration-line: underline;
  background-image: url("../images/open_in_new.svg");
  background-size: contain;
  background-repeat: no-repeat;
  padding-left: 10%;
  color: #000;
}
.page-about .contact-section h2 {
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 25px;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media (max-width: 828px) {
  .page-about .text-container {
    height: 230px;
  }
  .page-about .text-container h1 {
    font-size: 32px;
    line-height: 42px;
    top: 8rem;
  }
  .page-about .image-container img {
    width: 155px;
    top: 12rem;
    left: 7rem;
  }
  .page-about .container {
    margin-top: 5rem;
    padding-right: 40px;
    padding-left: 20px;
  }
  .page-about .container p {
    font-size: 16px;
    line-height: 22px;
  }
  .page-about .puff-section h2 {
    font-size: 18px;
    line-height: 26px;
    padding-top: 50px;
  }
  .page-about .puff-section .puff-link {
    font-size: 16px;
    line-height: 35px;
    padding-left: 15%;
  }
  .page-about .puff-section img {
    width: 350px;
    margin-bottom: 0;
  }
  .page-about .contact-section {
    height: auto;
    padding-bottom: 50px;
  }
  .page-about .contact-section h2 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 8px;
  }
  .page-about .contact-section .image {
    left: 4rem;
  }
  .page-about .contact-section img {
    width: 250px;
  }
  .page-about .contact-section .link {
    font-size: 16px;
    line-height: 12px;
    padding-left: 10%;
  }
  .page-about .contact-section .contact-info {
    padding-bottom: 30px;
  }
  .page-about .contact-section .contact-info p {
    margin: 0;
  }
  .page-about .contact-section .link-container {
    padding-top: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .page-about .container {
    margin-top: 9rem;
  }
  .page-about .contact-section .image {
    left: 35rem;
  }
}

.page-teacher {
  position: relative;
  bottom: 0;
  padding-top: 66px;
}
.page-teacher h2 {
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 45px;
  font-weight: 500;
  text-transform: uppercase;
}
.page-teacher p {
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 22px;
  font-style: normal;
  line-height: 32px;
}
.page-teacher h3, .page-teacher h4 {
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-weight: 450;
  text-transform: uppercase;
}
.page-teacher .teacher-container {
  position: relative;
  bottom: 19rem;
  font-size: 20px;
  font-family: "SourceSansPro-Regular", sans-serif;
}
.page-teacher .teacher-container .teacher-intro {
  margin: 0;
}
.page-teacher .teacher-container p {
  font-size: 34px;
  line-height: 46px;
}
.page-teacher .text-container {
  background-color: #F4B064;
  height: 560px;
  position: relative;
}
.page-teacher .text-container h1 {
  text-align: center;
  position: relative;
  top: 9rem;
  color: #000;
  font-weight: 500;
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 52px;
  line-height: 82px;
}
.page-teacher .text-container .image-container img {
  position: absolute;
  top: 29rem;
  left: 5rem;
}
.page-teacher .questions-section {
  margin-bottom: 150px;
}
.page-teacher .questions-section .coins {
  position: absolute;
  right: -5rem;
  top: 1rem;
}
.page-teacher .questions-section .faq-desc {
  text-align: center;
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 22px;
  line-height: 30px;
}
.page-teacher .questions-section .film-link {
  color: #00597A;
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 22px;
  font-style: normal;
  line-height: 30px;
  text-decoration-line: underline;
}
.page-teacher .questions-section .faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 50px;
}
.page-teacher .questions-section .faq-item {
  margin-bottom: 10px;
  border-radius: 20px;
  background: #CCE1E8;
}
.page-teacher .questions-section .accordion-button {
  text-align: left;
  background-color: #CCE1E8;
  border: none;
  border-radius: 20px;
  width: 100%;
  height: 118px;
  outline: none;
  /* &.active{
       img{
           background-image: url('../images/upp_icon.svg');
       }
   }*/
}
.page-teacher .questions-section .accordion-button .icon {
  position: relative;
  left: 90%;
  top: 1.7rem;
  width: 30px;
  height: 16px;
  background-image: url("../images/down_icon.svg"); /* Set the path to your default icon */
  background-size: cover;
}
.page-teacher .questions-section .accordion-button.active .icon {
  background-image: url("../images/upp_icon.svg"); /* Set the path to your active state icon */
}
.page-teacher .questions-section .question-title {
  color: #00597A;
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  text-transform: uppercase;
  margin-left: 50px;
}
.page-teacher .questions-section .accordion-content {
  display: none;
  border-radius: 20px;
  background: #CCE1E8;
  text-align: left;
  padding: 0 20% 3% 20%;
}
.page-teacher .questions-section .accordion-content span {
  font-weight: 700;
  font-family: "SourceSansPro-Bold";
}
.page-teacher .questions-section .accordion-content .link {
  text-decoration: underline;
  color: #000;
  background-image: url("../images/open_in_new.png");
  background-size: contain;
  background-repeat: no-repeat;
  padding-left: 5%;
}
.page-teacher .questions-section .accordion-content.active {
  display: block;
  border: none;
}
.page-teacher .questions-section .pdf-container {
  padding-top: 40px;
}
.page-teacher .pdf-link {
  color: #00597A;
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
  text-decoration-line: underline;
  padding-left: 10px;
}
.page-teacher .pdf {
  width: 40px;
  height: 40px;
  padding-bottom: 5px;
  margin-left: -7px;
}
.page-teacher .uppgifter-section .ingress {
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 22px;
  line-height: 32px;
  padding: 20px 70px 50px 70px;
}
.page-teacher .tab-content {
  background-color: #D1ECF7;
  padding-bottom: 50px;
}
.page-teacher .tab-content .tabs {
  max-width: 1440px;
  padding: 46px 0px 23px;
}
.page-teacher .tab-content .download {
  max-width: 1440px;
  padding: 0;
}
.page-teacher .nav-tabs {
  display: flex;
  justify-content: space-between;
}
.page-teacher .nav-tabs .nav-link {
  background-color: #00597A;
  border: none;
  color: #fff;
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 20px;
  font-family: "BrandonGrotesque-Bold", sans-serif;
  height: 85px;
  font-size: 25px;
}
.page-teacher .nav-tabs .nav-link.active {
  background-color: #D1ECF7;
  border-color: #D1ECF7;
  color: #000;
}
.page-teacher .nav-tabs .nav-item {
  width: 32%;
  text-align: center;
}
.page-teacher .ytterligare-section {
  padding: 150px 0;
}
.page-teacher .ytterligare-section .container {
  border: 20px solid #00597A;
  padding-left: 50px;
  padding-bottom: 87px;
  padding-right: 50px;
  max-width: 1440px;
}
.page-teacher .ytterligare-section .title-section {
  margin-bottom: 100px;
}
.page-teacher .ytterligare-section .image, .page-teacher .ytterligare-section .image-box {
  position: relative;
  bottom: 5rem;
}
@media (max-width: 828px) {
  .page-teacher .row {
    margin-left: 0;
    margin-right: 0;
  }
  .page-teacher h2 {
    font-size: 31px;
  }
  .page-teacher .text-container {
    height: 478px;
  }
  .page-teacher .text-container h1 {
    font-size: 32px;
    line-height: 42px;
    top: 5rem;
  }
  .page-teacher .text-container .image-container img {
    width: 70%;
    top: 25rem;
  }
  .page-teacher .teacher-container {
    bottom: 18rem;
  }
  .page-teacher .teacher-container p {
    font-size: 18px;
    line-height: 24px;
  }
  .page-teacher h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .page-teacher h3 {
    font-size: 32px;
    line-height: 42px;
  }
  .page-teacher p {
    font-size: 16px;
    line-height: 22px;
  }
  .page-teacher .pdf-link {
    font-size: 16px;
  }
  .page-teacher .nav-tabs .nav-link {
    font-size: 11px;
    line-height: 24px;
    height: 50px;
    padding: 16px 0;
  }
  .page-teacher .questions-section {
    margin-bottom: 100px;
  }
  .page-teacher .questions-section .grid-container {
    display: grid;
  }
  .page-teacher .questions-section .desctop-image {
    display: none;
  }
  .page-teacher .questions-section .mobile-image {
    position: relative;
    top: 4rem;
    right: 0;
    order: 2;
    display: block;
  }
  .page-teacher .questions-section .accordion-button {
    height: 70px;
    border-radius: 5px;
  }
  .page-teacher .questions-section .accordion-button .icon {
    left: 90%;
    top: 1rem;
    width: 20px;
    height: 10px;
  }
  .page-teacher .questions-section .pdf-container {
    padding-top: 20px;
  }
  .page-teacher .questions-section .faq-accordion {
    gap: 5px;
  }
  .page-teacher .questions-section .accordion-content {
    padding: 0 30px 40px 30px;
    border-radius: 5px;
  }
  .page-teacher .questions-section .accordion-content .link {
    padding-left: 15%;
  }
  .page-teacher .questions-section .question-wrapper p {
    margin-left: 6px;
    margin-bottom: 0.5rem;
  }
  .page-teacher .questions-section .question-title {
    font-size: 17px;
    line-height: 26px;
  }
  .page-teacher .questions-section .faq-desc {
    font-size: 18px;
  }
  .page-teacher .tab-content .ingress {
    padding-right: 0;
  }
  .page-teacher .tab-content .download {
    padding-left: 15px;
  }
  .page-teacher .uppgifter-section .ingress {
    font-size: 18px;
    line-height: 24px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }
  .page-teacher .ytterligare-section {
    padding: 80px 20px;
  }
  .page-teacher .ytterligare-section .container {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 20px;
    border: 12px solid #00597A;
  }
  .page-teacher .ytterligare-section .image {
    width: 100%;
  }
  .page-teacher .ytterligare-section .image-box {
    width: 100%;
    top: 3rem;
    margin-bottom: 6rem;
  }
  .page-teacher .ytterligare-section .title-section {
    font-size: 32px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .page-teacher .teacher-container p {
    font-size: 25px;
    line-height: 35px;
  }
  .page-teacher h2 {
    font-size: 32px;
  }
  .page-teacher h4 {
    font-size: 18px;
  }
  .page-teacher p {
    font-size: 16px;
    line-height: 24px;
  }
  .page-teacher .questions-section .coins {
    right: -1rem;
  }
  .page-teacher .uppgifter-section .ingress {
    font-size: 20px;
    line-height: 32px;
  }
  .page-teacher .ytterligare-section .container {
    border: 10px solid #00597A;
  }
}

.section-hero.svinnrik {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.section-hero.svinnrik video {
  width: 100%;
  height: auto;
}
.section-hero.svinnrik .image-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-78%, -50%);
}
.section-hero.svinnrik .image-container img {
  width: 153%;
}
.section-hero.svinnrik .hero-btn {
  position: absolute;
  bottom: 5%;
  left: 50%;
}

.section-sedlar {
  padding-top: 100px;
}
.section-sedlar p {
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 34px;
  margin-bottom: 50px;
}

.section-blue {
  padding: 150px 166px;
  background: #d3ecf7;
  margin-top: 6.25rem;
}

.title-section {
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.text-section {
  color: #000;
  text-align: center;
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  margin-right: 14rem;
  margin-left: 13rem;
  margin-bottom: 2.5rem;
}

.video_title {
  color: #000;
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-red {
  background: #F9E9E8;
  padding: 120px 166px;
}

rect:nth-child(3) {
  fill: #EF8E21;
}

rect:hover {
  fill: #74130E;
}

.google_column_chart g text[text-anchor=end] {
  display: none;
}

.section-green {
  background: #CCE5DA;
  padding: 120px 166px;
}
.section-green .green {
  background-color: #fff;
  border: 20px solid #007B44;
  padding: 100px 68px;
}
.section-green .green .text-section {
  margin-right: 10rem;
  margin-left: 9rem;
}
.section-green .green-table {
  padding: 30px;
  background: #CCE5DA;
  margin-bottom: 5px;
}
.section-green .green-table li {
  color: #000;
  font-family: "BrandonGrotesque-Bold", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 450;
  line-height: 60px;
}

.image-section {
  position: absolute;
  display: flex;
  right: 3rem;
  margin-top: -7rem;
}

.section-yellow {
  padding: 120px 166px;
}
.section-yellow .table {
  background: #FEF8D1;
  padding-left: 40px;
  padding-bottom: 150px;
  padding-top: 140px;
}
.section-yellow .table p {
  font-family: "BrandonGrotesque-Bold", sans-serif;
  font-size: 35px;
  font-weight: 450;
  line-height: 60px;
  margin-bottom: 0;
}
.section-yellow .table ol li {
  color: #000;
  font-family: "BrandonGrotesque-Bold", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 60px;
}
.section-yellow iframe {
  margin-bottom: 20px;
}

.quiz-section {
  background: #00597A;
  height: 1000px;
}
.quiz-section .img {
  position: relative;
  bottom: 6rem;
}
.quiz-section img {
  width: 488px;
}
.quiz-section .btn {
  border: 7px solid #FFF;
  background: #00597A;
  padding: 20px 30px;
  width: 260px;
  color: #FFF;
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 22px;
  border-radius: 0;
}
.quiz-section .btn:hover {
  background: #003C52;
  color: #fff;
}
.quiz-section h1 {
  color: #FFF;
  text-align: center;
  font-family: "BrandonGrotesque-Bold", sans-serif;
  font-size: 45px;
}
.quiz-section p {
  color: #FFF;
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 70px;
}

.buttom-section {
  height: 750px;
  background: #EF8E21;
}
.buttom-section p {
  color: #000;
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 22px;
  line-height: 32px;
}
.buttom-section .img {
  padding-top: 120px;
}
.buttom-section img {
  width: 100%;
}
.buttom-section .btn {
  color: #000;
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 22px;
  line-height: 46px;
  text-decoration-line: underline;
  text-transform: uppercase;
}

@media (max-width: 828px) {
  .section-hero.svinnrik video {
    width: 1150px;
  }
  .section-hero.svinnrik img {
    width: 300px;
    display: none;
  }
  .section-hero.svinnrik .image-container {
    background-image: url("../images/logo_mobil.png");
    background-size: contain;
    background-repeat: no-repeat;
    top: 30%;
    left: 5%;
    transform: translate(0%, 0%);
    bottom: 30%;
    width: 350px;
  }
  .section-sedlar {
    padding-top: 40px;
  }
  .section-sedlar img {
    width: 55%;
    margin-left: 20%;
  }
  .section-sedlar p {
    font-size: 18px;
    line-height: 24px;
    margin-left: 4%;
    margin-right: 5%;
  }
  .section-blue, .section-red, .section-yellow, .section-green {
    padding: 20px 20px 70px;
  }
  .section-blue .title-section, .section-red .title-section, .section-yellow .title-section, .section-green .title-section {
    font-size: 31px;
    line-height: 42px;
    padding-top: 30px;
  }
  .section-blue .text-section, .section-red .text-section, .section-yellow .text-section, .section-green .text-section {
    font-size: 15px;
    line-height: 22px;
    margin: 0;
  }
  .section-blue .video_title, .section-red .video_title, .section-yellow .video_title, .section-green .video_title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    margin-top: 50px;
    text-align: center;
  }
  .image-section {
    position: relative;
    justify-content: center;
    margin-top: 1rem;
    right: 0;
  }
  .image-section img {
    width: 35%;
  }
  .section-yellow {
    padding-bottom: 40px;
  }
  .section-yellow .text-section {
    margin-bottom: 50px;
  }
  .section-yellow .table {
    padding: 30px 43px;
  }
  .section-yellow .table p {
    font-size: 18px;
    line-height: 26px;
  }
  .section-yellow .table ol {
    padding-left: 15px;
  }
  .section-yellow .table ol li {
    font-size: 18px;
    line-height: 36px;
  }
  .google_column_chart svg text {
    display: none;
  }
  .section-green {
    padding-bottom: 50px;
  }
  .section-green .green {
    padding: 0;
    border: 12px solid #007B44;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .section-green .green .text-section {
    padding: 20px;
    margin-right: 0;
    margin-left: 0;
    padding-top: 0;
  }
  .section-green .green .reverse-content {
    flex-flow: wrap-reverse;
  }
  .section-green .green .video-container {
    margin: 14px 14px 10px;
  }
  .section-green .green-table {
    margin: 10px 25px 52px;
  }
  .section-green .green-table li {
    font-size: 18px;
    line-height: 36px;
  }
  .quiz-section {
    height: 1000px;
  }
  .quiz-section h1 {
    font-size: 32px;
    position: relative;
    bottom: 5rem;
  }
  .quiz-section .img {
    position: relative;
    bottom: 4rem;
    padding-bottom: 0rem;
  }
  .quiz-section p {
    position: relative;
    bottom: 4rem;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
    margin-top: 0;
  }
  .quiz-section img {
    width: 60%;
  }
  .quiz-section .btn {
    width: 160px;
    padding: 10px 20px;
    font-size: 16px;
    margin-top: -4rem;
    border: 4px solid #FFF;
  }
  .buttom-section {
    height: 100%;
  }
  .buttom-section .container {
    padding-bottom: 50px;
  }
  .buttom-section p {
    font-size: 20px;
  }
  .buttom-section .img {
    padding-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section-blue, .section-red, .section-yellow {
    padding: 50px 0 100px 0;
  }
  .section-blue .text-section, .section-red .text-section, .section-yellow .text-section {
    margin-right: 0;
    margin-left: 0;
  }
  .section-blue .video_title, .section-red .video_title, .section-yellow .video_title {
    font-size: 16px;
  }
  .section-yellow {
    padding-top: 150px;
  }
  .section-yellow .table {
    padding-bottom: 142px;
    padding-top: 140px;
  }
  .section-yellow .table ol {
    padding-left: 25px;
  }
  .section-yellow .table ol li {
    font-size: 25px;
  }
  .image-section img {
    width: 255px;
  }
  .section-green {
    padding: 120px 36px;
  }
  .section-green .green {
    padding: 100px 30px;
  }
  .section-green .green .green-table {
    padding: 15px;
  }
  .section-green .green .green-table li {
    font-size: 25px;
  }
  .section-green .green .text-section {
    margin-right: 0;
    margin-left: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .section-sedlar p {
    font-size: 29px;
  }
  .text-section {
    margin-left: 0;
    margin-right: 0;
  }
  .video_title {
    font-size: 16px;
  }
  .section-yellow {
    padding: 120px 100px;
  }
  .section-yellow .table {
    padding: 110px 20px 170px;
  }
  .section-yellow .table ol li {
    font-size: 32px;
  }
  .image-section {
    width: 255px;
    right: 7rem;
  }
  .section-green {
    padding: 120px 100px;
  }
  .section-green .green {
    padding: 80px 15px 80px 30px;
  }
  .section-green .green .text-section {
    margin-left: 0;
    margin-right: 0;
  }
  .section-green .green-table {
    padding: 20px 12px 5px 12px;
  }
  .section-green .green-table li {
    line-height: 60px;
    font-size: 30px;
  }
}
@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translate3d(-2rem, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translate3d(2rem, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes header-appear {
  0% {
    transform: translate3d(0, -4em, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  display: block;
  overflow: hidden;
  min-height: calc(70vh - var(--wp-admin--admin-bar--height, 0px));
}
.site-main .main {
  padding-top: 15vh;
  flex-grow: 1;
}
.site-main .main h1 {
  text-align: center;
  font-family: "BrandonGrotesque-Black", sans-serif;
  font-size: 58px;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.site-main .main p {
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.site-main .main a {
  color: #000;
  text-decoration: underline;
}

@font-face {
  font-family: "BrandonGrotesque-Black";
  src: url("../fonts/Brandon_blk.otf");
  font-weight: normal;
  font-weight: 450;
}
@font-face {
  font-family: "BrandonGrotesque-Bold";
  src: url("../fonts/Brandon_bld.otf");
  font-weight: normal;
  font-weight: 500;
}
@font-face {
  font-family: "BrandonGrotesque-Regular";
  src: url("../fonts/Brandon_reg.otf");
  font-weight: normal;
  font-weight: 500;
}
@font-face {
  font-family: "SourceSansPro-Regular";
  src: url("../fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "SourceSansPro-Bold";
  src: url("../fonts/SourceSansPro-Bold.ttf");
  font-style: normal;
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */