

@import url('https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900&isplay=swap');
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap");

/* Mmy styles */

.button-link-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-button {
  font-size: 1.2rem;
  margin: 10px auto;
  padding: 1.5rem;
  opacity: 1;
  background-color: #fff;
  color: var(--body-font-color);
  border: none;
  cursor: pointer;
  outline: none;
  transition: .5s ease;
}

.link-button:hover {
  background-color: var(--secondary-font-color);
  color: white;
}


/* Global styles*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-font: 'Source Sans Pro', sans-serif;
  --secondary-font: 'Herr Von Muellerhoff', cursive;
  --body-font: 'Cabin', sans-serif;
  --main-font-color-dark: #252525;
  --secondary-font-color: orange;
  --body-font-color: #545454;
}


html {
  font-family: var(--body-font);
  font-size: 10px;
  color: var(--body-font-color);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

section {
  padding: 3.9rem 0;
  overflow: hidden;
}

img {

  width: 100%;
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.6rem;
}

ul, li {
  list-style-type: none;
}

.container {
  width: 100%;
  max-width: 122.5rem;
  margin: 0 auto;
  padding: 0 2.4rem;
  z-index: 1;
}

.move-right {
  margin-left: 1.5rem;
}

.og {
  color: var(--secondary-font-color);
}

.divider {
  clear: both;
  border-top: solid #dedede;
  border-width: 1px 0 0;
  margin: 3rem auto;
  height: auto;
  width: 80vw;
}

.flex-box {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.button-no-button {
  outline: none;
  background-color: white;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
}
.button-no-button:hover {
  text-decoration: underline;
}

.pads {
  margin: -40px 20px 0px 20px;
}

/* Header styles*/

.mainsite-header {
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
}

.nav {
  height: 7.2rem;

  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 25rem;
  height: auto;
}

.menu-toggle {
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2.5rem;
  cursor: pointer;
  z-index: 1500;
}

.fa-times {
  display: none;
}

.nav-list {
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--main-font-color-dark);
  padding: 4.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1250;
  transform: translateX(-100%);
  transition: transform .5s;
}

.nav::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.8);
  z-index: 1000;
  opacity: 0;
  transform: scale(0);
  transition: opacity .5s;

}


.open .fa-times {
  display: block;
}
.open .fa-bars {
  display: none;
}
.open .nav-list {
  transform: translatex(0);
}
.open .nav::before {
  opacity: 1;
  transform: scale(1);
}

.nav-item {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  margin: 30px;

}

.nav-link {
  position: relative;
  display: block;
  color: white;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-right: .2px;
  transition: color.5s;
}

.nav-link:hover {
  color: var(--secondary-font-color);
}

.nav-link:hover::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: -3px;
}

.text-wrapper-outer {
  width: 50vw;
  height: calc(100vh - 10vh);
  position: relative;
}

.text-wrapper-inner {
  margin-right: 15%;
  margin-left: 15%;
  padding: 150px 100px 250px 0px;
}

.wrapper-h2 {
  height: 150px;
  width: 35vw;
  margin-bottom: 40px;
}


.static {
  display: block;
  font-weight: normal;
  margin-bottom: 40px;
}

.text-wrapper-inner h2{
  font-size: 4rem;
  font-family: 'Raleway', sans-serif;
}

.text-wrapper-inner p {
  color: var(--secondary-font-color);
  width: 35vw;
  font-size: 2rem;
  font-family: var(--main-font);
}

.cta-wrapper {
  margin-top: -200px;
  margin-left: 150px;
}

.button {
  font-size: 1.6rem;
  font-weight: 900;
  background-color: none;
  padding: 1.5rem 4rem;
  opacity: 1;
  border: 2.5px solid var(--secondary-font-color);
  cursor: pointer;
  outline: none;
  transition: .5s ease;
  color: var(--secondary-font-color);
  /* #f0be49 */
}
.button:hover {
  background-color: var(--secondary-font-color);
  color: white;
}

#text {
	display: inline-block;
	vertical-align: middle;
	color: var(--secondary-font-color);
	letter-spacing: 2px;
}


#cursor {
	display: inline-block;
	vertical-align: middle;
	width: 3px;
	height: 50px;
	background-color: var(--secondary-font-color);
	animation: blink .75s step-end infinite;
}

@keyframes blink {
	from, to {
		background-color: transparent
	}
	50% {
		background-color: var(--secondary-font-color);
	}
}


/* Hero */
.hero {
  background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-image: url('../images/60f9c82dde1e90.61870739.png');
    width: 100vw;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
}

.sub-headline {
  font-size: 10rem;
  font-family: 'Big Shoulders Display', cursive;
  color: var(--secondary-font-color);
  font-weight: 300;
  line-height: .4;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeUp .5s forwards;
  animation-delay: .5s;
}

.frist-letter {
  text-transform: uppercase;
  font-size: 10.3rem;
}

.headline {
  color: #fff;
  font-size: 3.7rem;
  font-family: var(--main-font);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .5rem;
  margin-right: -.5rem;
  animation: scale .5s forwards;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.line {
  width: 100%;
  max-width: 8.4rem;
  height: .25rem;
  background-color: #fff;
  position: relative;
  opacity: 0;
  animation: grow 2s forwards;
  animation-delay: .9s;
}
.line-right::before,
.line-left::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: .6rem solid transparent;
  opacity: 0;
  animation: grow 1.5s forwards;
  animation-delay: 1.2s;
}
.line-right::before {
  border-right-color: #fff;
  right: 0;
}
.line-left::before {
  border-left-color: #fff;
  left: 0;
}

.asterisk {
  font-size: 1.2rem;
  color: var(--secondary-font-color);
  margin: 0 1.6rem;
  animation: spin .5s forwards;
  animation-delay: .7s;
}

.single-animation {
  opacity: 0;
  animation: fadeDown .5s forwards;
  animation-delay: 1.5s;
}

.headline-description h5 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
  margin-right: -3px;
}

.btn {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: -2px;
}

.cta-btn {
  font-size: 1.1rem;
  background-color: #fff;
  padding: .9rem 1.8rem;
  color: var(--body-font-color);
  border-radius: .4rem;
  transition: background-color .5s;
}

.cta-btn:hover,
.cta-btn:focus {
  color: #fff;
  background-color: var(--secondary-font-color);
}


/* Discover our story */
.discover-our-story {
  z-index: 2;
  position: relative;
}

.global-headline {
  text-align: center;
  margin-top: 3.9rem;
}

.discover-our-story .global-headline {
  margin-top: 6.9rem;
}

.global-headline .asterisk {
  color: var(--body-font-color);
  margin: 2.4rem 0;
}

.headline-dark {
  color: var(--main-font-color-dark);
  letter-spacing: .7rem;
  margin-right: -.7rem;
}

.global-healine .sub-headline {
  letter-spacing: -1px;
  line-height: .43;
}

.restaurant-info {
  text-align: center;
}
.restaurant-description {
  margin-bottom: 3rem;
}
.restaurant-description p {
  line-height: 1.6;
  margin-bottom: 2,4rem;
}

.body-btn {
  font-size: 1.5rem;
  color: var(--secondary-font-color);
  position: relative;
  transition: color .5s;
  margin-top: 1.5rem;
}

.body-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-font-color);
  transition: background-color: .5s;
}

.body-btn:hover,
.body-btn:focus {
  color: var(--main-font-color-dark);
}
.body-btn:hover::before,
.body-btn:focus::before {
  background-color: var(--main-font-color-dark);
}


/* Discover our menu */
.image-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
}

.discover-our.menu .restaurant-description {
  padding-top: 3rem;
  margin-bottom: 0;
}


/* Taseful recipes */
.tasteful-recipes {
  background: url("../images/IMG_3415.jpg") center no-repeat;
  background-attachment: fixed;
  background-size: 100vw auto;
}

.between {
  min-height: 65vh;
  display: flex;
  align-items: center;
}


/* Discover our menu */
.image-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
}

.discover-our.menu .restaurant-description {
  padding-top: 3rem;
  margin-bottom: 0;
}


/* The perfect blend */
.perfect-blend {
  background: url("../images/IMG_3580.PNG") center no-repeat;
  background-attachment: fixed;
  background-size: 100vw auto;
}


/* Footer style */
footer {
  padding-bottom: 0.5rem;
  transition: .5s ease;
}
footer h3 {
  font-size: 2.2rem;
  font-family: var(--main-font);
  border-bottom: 2px dotted black;
  width: 20rem;
  color: var(--body-font-color);
}

.back_to_top {
  width: 7rem;
  height: 7rem;
  background-color: var(--secondary-font-color);
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  transition: .5s ease;
}
.back_to_top i {
  display: block;
  color: #fff;
  font-size: 2rem;
  padding: 2rem 2.6rem;
  animation: up 2s infinite;
}

.footer_newsletter {
  width: 90rem;
  margin: 0 auto 2rem auto;
  transition: .5s ease;
}
.text_move_left {
  width: 50rem;
  margin: -5rem auto 0 3.5rem;
  text-align: left;
}
.footer_newsletter_heading {
  color: #fff;
  font-size: 3rem;
}
.footer_newsletter_text {
  color: #fff;
}
.newsletter_input_footer {
  margin: 2rem auto auto 2rem;
  padding: 1.5rem 20rem 1.5rem 1.5rem;
  opacity: 1;
  background-color: #f1f1f1;
  color: var(--body-font-color);
  border: none;
  outline: none;
  transition: .5s ease;
}
.newsletter_button_footer {
  margin: 2.5rem 0 0 -0.3rem;
  padding: 1.5rem;
  opacity: 1;
  background-color: white;
  background-color: #f1f1f1;
  color: var(--body-font-color);
  border: none;
  cursor: pointer;
  outline: none;
  transition: .5s ease;
}
.newsletter_button_footer:hover {
  background-color: #AD9260;
  color: white;
}

.footer_main_content {
  background-color: #fff;
  width: 100%;
  height: 100%;
  margin-top: 4rem;
  display: flex;
}

.contact_info_footer {
  margin: 0 auto;
  font-size: 1.5rem;
}

.contact_info_footer ul {
  margin: 0 auto;
  width: 80vw;
  display: flex;
  flex-flow: row;
}

.contact_info_footer li {
  width: 25rem;
  padding-top: 10px;
  color: var(--body-font-color);
}

.contact_info_footer a {
  color: var(--body-font-color);
}
.contact_info_footer a:hover,
.contact_info_footer li:hover +
.contact_info_footer li {
  color: #AD9260;
  border-bottom: 2px solid #AD9260;
}

.service_links {
  width: 33.3%;
  margin: 3.5rem auto 0 auto;
  font-size: 1.5rem;
}
.service_links li {
  border-bottom: 2px solid var(--body-font-color);
  width: 20rem;
  padding-top: 10px;
}
.service_links a {
  color: var(--body-font-color);
}
.service_links a:hover,
.service_links li:hover +
.service_links li {
  color: #AD9260;
  border-bottom: 2px solid #AD9260;
}

.brand_links {
  width: 33.3%;
  margin: 3.5rem auto 0 auto;
  font-size: 1.5rem;
}
.brand_links li {
  border-bottom: 2px solid var(--body-font-color);
  width: 20rem;
  padding-top: 10px;
}
.brand_links a {
  color: var(--body-font-color);
}
.brand_links a:hover,
.brand_links li:hover +
.brand_links li {
  color: #AD9260;
  border-bottom: 2px solid #AD9260;
}

.footer-buttons {
  text-align: left;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.footer_bottem {
  margin-top: 3%;
}

.copyright {
  width: 25rem;
  margin: 2rem 0 0 10rem;
  padding-bottom: 2rem;
  color: var(--body-font-color);
}


/*
=====================================
            Vores hund
=====================================
*/

.normal-header {
   background-color: orange;
   width: 100%;
   height: 80px;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 1;
}

.vores-hunde-title-wrapper {
  text-align: center;
  margin-top: 13rem;
}

.headline-title {
  font-family: 'Big Shoulders Display', cursive;
  color: var(--secondary-font-color);
  letter-spacing: .7rem;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: .5rem;
  margin: 0 auto;
  padding-bottom: 20px;
}

.paragraf-title {
  max-width: 60%;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: center;
  margin: 0 auto;
  transition: .5s ease;
}

.dog-details-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: top;
}

.dog-wrapper {
  width: 30vw;
  height: auto;
  margin: 0 4rem 10rem 8rem;
  box-shadow: 0 16px 32px #dedede;
}

.dog-wrapper h1 {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.dog-wrapper img {
  height: auto;
  width: 30vw;
  margin: 0 auto;
}

.dog-info {
  width: 80%;
  margin: 0 auto;
}

.dog-description {
  font-size: 1.6rem;
  padding-top: 10px;
  padding-bottom: 20px;
  font-family: var(--main-font);
}
.ekstra-dog-info {
    padding-bottom: 50px;
}

.ekstra-dog-info li {
  font-size: 1.6rem;
  font-family: var(--main-font);
}


.eks-2-1   {
  margin-right: 18rem;
}

.eks-2-2 {
  margin-right: 25rem;
}

.eks-2-3, .eks-2-4 {
  margin-right: 24.5rem;
}



/*
=====================================
              Kuld
=====================================
*/


.kuld-parent-img-wrapper {
  width: 100%;
  height: auto;
  margin: 5rem 2.5rem 3rem 2.5rem;
}

.kuld-parent-img-wrapper img {
  height: 33rem;
  width: 45rem;
}

.kuld-title-wrapper {
  text-align: center;
}
.kuld-title-wrapper h1 {
  font-size: 8rem;
}

.kuld-wrapper {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 75vw;
  max-width: 75vw;
  height: auto;
  margin: 0 auto;
}

.kuld-item-wrapper {
  width: 250px;
  margin: auto 35px 70px 35px;
  box-shadow: 0 16px 32px #dedede;
}

.dog-kuld-info {
  line-height: 2rem;
  padding: 30px;
}

.kuld-day-info {
  padding: 20px;
  line-height: 1.6;
  letter-spacing: normal;
}


.gallery {
  width: 75vw;
}

.gallery-item {
  margin: 0.7rem;
}





/*
=====================================
            Kuld Modal
=====================================
*/

.modal {
  display: block;
  position: fixed;
  z-index: 15;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}


.modal-content-wrapper-outer {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0 20px 20px 20px;
  border: 1px solid #dedede;
  width: 80%;
}

.modal-content-wrapper-inner {
  padding-top: 40px;
}

.modal-content-img-wrapper {
  padding: 20px;
  width: 70%;
  height: auto;
}
.modal-content-img {

}

.modal-content-info-wrapper {
  margin-top: -3rem;
}

.title-divider {
  clear: both;
  border-top: solid #dedede;
  border-width: 1px 0 0;
  margin: 0 auto 3rem auto;
  height: auto;
}

.individual-dog-info {
  margin-bottom: 40px;
}

.stamtræ-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  padding-top: 10px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}


.eks-5-1 {
    padding-right: 350px;
}
.eks-5-2 {
  padding-right: 355px;
}
.eks-5-3 {
  padding-right: 375px;
}
.eks-5-4 {
  padding-right: 370px;
}
.eks-5-5 {
  padding-right: 375px;
}
.eks-5-6 {
  padding-right: 330px;
}
.eks-5-7 {
  padding-right: 340px;
}
.eks-5-8 {
  padding-right: 310px;
}



/*
=====================================
              Om os
=====================================
*/

.om-os-img-wrapper {
  width: 70vw;
  height: auto;
  margin: 5rem auto;
}

.info-wrapper-outer {
  margin: 50px 5rem 0 5rem;
}

.info-wrapper-inner {
  text-align: left;
  width: 20vw;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 16px 32px #dedede;
}

.info-wrapper-inner img {
  width: 20vw;
  height: auto;
}

.contact-info-wrapper {
  width: 80%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 40px;
  line-height: 2.2rem;
}

.contact-info li {
  font-size: 1.6rem;
  font-family: var(--main-font);
}





.contact_us_form_wrapper {
  padding-bottom: 100px;
}



.contact_us_input {
  margin: 2rem auto auto 0;
  width: 60rem;
  padding: 1.5rem;
  opacity: 1;
  background-color: #f1f1f1;
  color: #545454;
  border: none;
  outline: none;
  transition: .5s ease;
}

.contact_us_textarea {
  margin: 2rem auto auto 0;
  padding: 1.5rem;
  opacity: 1;
  background-color: #f1f1f1;
  color: #545454;
  border: none;
  outline: none;
  transition: .5s ease;
  font-family: var(--body-font);
  color: #545454;
  font-weight: 400;
  width: 60rem;
  height: auto;
}

.contact_us_input:hover,
.contact_us_textarea:hover,
.contact_us_input:focus,
.contact_us_textarea:focus {
  background-color: #d1d1d1;
  color: black;

}

.contact_us_button {
  margin: 2.5rem -53rem 0 0;
  padding: 1.5rem 2rem;
  opacity: 1;
  background-color: white;
  color: #545454;
  border: none;
  cursor: pointer;
  outline: none;
  transition: .5s ease;
}
.contact_us_button:hover {
  background-color: var(--secondary-font-color);
  color: white;
}






















/* Media queries */
@media screen and (min-width: 900px) {




  .menu-toggle {
    display: none;
  }

  .nav {
    justify-content: space-between;
  }

  .nav-list {
    position: initial;
    width: initial;
    height: initial;
    background-color: transparent;
    padding: 0;
    justify-content: initial;
    flex-direction: row;
    transform: initial;
    transition: initial;
  }

  .nav-item {
    margin: 0 2.4rem;
    border: none;
  }
  .nav-itme:last-child {
    margin-right: 0;
  }


  .sub-headline {
    font-size: 10rem;
  }

  .first-letter {
    font-size: 12.2rem;
  }



  .line {
    max-width: 11.4rem;
  }

  .restaurant-info {
    display: flex;
    align-items: center;
  }

  .restaurant-info > div {
    flex: 1;
  }

  .padding-right {
    padding-right: 7rem;
  }

.restaurant-info-img {
  margin-left: 2rem;
}

  .footer-content {
    max-width: 77.5rem;
    margin: auto;
  }

  .footer-content-about {
    max-width: 51.3rem;
    margin: 0 auto 5.4rem;
  }

  .footer-content-divider {
    display: flex;
    justify-content: space-between;
  }

  .social-media,
  .newsletter-form {
    width: 100%;
    max-width: 27.3rem;
    margin: 0 1rem;
  }

  .social-icons i {
    opacity: 1;
  }

  .newsletter-btn {
    margin-left: 7.5rem;
  }

}



/* Animations */
@keyframes fadeUp {
  0%{
    transform: translateY(4rem);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale {
  0%{
    transform: scale(2);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes grow {
  0%{
    width: 0;
  }
  100%{
    opacity: 1;
    width: 100%;
  }
}

@keyframes spin {
  0%{
    transform: rotate(0);
  }
  100%{
    opacity: 1;
    transform: rotate(-360deg);
  }
}

@keyframes fadeDown {
  0%{
    transform: translateY(-1rem);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes up {
  0%{
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100%{
    opacity: 0;
    transform: translateY(-1rem);
  }
}
