/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
/* colors */
/* basic styling */
* {
  padding: 0;
  margin: 0;
}

html, body {
  height: 100%;
  font-size: 16px;
}

body {
  font-family: "nunito", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

hr {
  margin: 50px 0;
}

/* title styling */
h1 {
  color: #021E4B;
  font-style: italic;
  font-weight: 700;
  font-size: 54px;
  position: relative;
  margin-bottom: 80px;
  margin-top: 20px;
}
h1::after {
  content: "";
  position: absolute;
  height: 30px;
  bottom: -40px;
  left: 40px;
  right: 0;
  background-image: url("./assets/line_o.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

h2 {
  color: #021E4B;
  font-weight: 700;
  font-size: 54px;
  position: relative;
  margin-bottom: 80px;
}
h2::after {
  content: "";
  position: absolute;
  height: 30px;
  bottom: -40px;
  left: 40px;
  right: 0;
  background-image: url("./assets/line_o.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

h2.color-orange {
  color: #EE9D47;
}
h2.color-orange::after {
  background-image: url("./assets/line_b.svg");
}

h3 {
  font-size: 28px;
  color: #021E4B;
  font-weight: 700;
  margin-top: 20px;
}

h3.underline {
  text-decoration: underline;
  font-style: italic;
}

/* text styling */
p {
  padding-bottom: 8px;
}

p.small {
  color: #808080;
  font-size: 12px;
}

p.bigger {
  font-size: 24px;
}

a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #EE9D47;
}

.frame {
  border: solid 2px #EE9D47;
  border-radius: 20px;
  padding: 30px;
  margin: 20px 0;
}

/* buttons */
.btn {
  background-color: #021E4B;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
}
.btn:hover {
  background-color: #EE9D47;
}

.btn-footer {
  background-color: Transparent;
  border: none;
}

/* navbar */
#navbarNav, #navbarNav ul {
  width: 100%;
  position: relative;
}

/* intro */
.logo {
  margin: 100px 0;
}

#intro .pull-up {
  margin-top: -150px;
}

#intro {
  margin-bottom: 150px;
}

/* section margins, paddings and backgrounds*/
.bg-sec {
  background: #F3F1EE;
}

.bg-white {
  background: #ffffff;
}

#about {
  padding: 300px 0 500px;
  background-image: url(./assets/NN-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin: -200px 0 -400px;
}

#coach {
  background-image: url(./assets/NN-bg2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}

#hr, #coach, #contact {
  padding: 100px 0;
}

.row-blocks {
  margin: 100px 0;
}

.block {
  background-color: #F3F1EE;
  padding: 30px;
  transition: background-color 0.2s ease-in;
}
.block h3 {
  margin-top: 0;
}
.block:hover {
  background-color: #021E4B;
}
.block:hover h3 {
  color: #EE9D47;
}
.block:hover p, .block:hover ul, .block:hover li {
  color: #fff;
}

.rotate-left {
  rotate: 1deg;
  transition: rotate 0.2s ease-in;
}
.rotate-left:hover {
  rotate: 0deg;
}

.rotate-right {
  rotate: -1deg;
  transition: rotate 0.2s ease-in;
}
.rotate-right:hover {
  rotate: 0deg;
}

.contact-block {
  margin: 20px 0 50px;
  text-align: center;
}
.contact-block p {
  padding-bottom: 0;
  margin-bottom: 0;
}
.contact-block strong {
  color: #EE9D47;
}

@media (max-width: 575.98px) {
  h1, h2 {
    font-size: 40px;
  }
  #intro .bg-sec {
    padding: 10px;
  }
  #intro .bg-sec h1 {
    margin-left: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */
