/* Base */
/* Font Family */
/*  Colors */
body {
  padding: 0;
  margin: 0;
  font-family: "Avenir-Regular", sans-serif;
}

@font-face {
  font-family: "Protest-paint";
  src: url("../fonts/Protest-paint/ProtestPaintBB.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Protest-paint-italic";
  src: url("../fonts/Protest-paint/ProtestPaintBB_ital.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Coluna";
  src: url("../fonts/Coluna/coluna.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Avenir-black";
  src: url("../fonts/Avenir/Avenir_Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Avenir-book";
  src: url("../fonts/Avenir/Avenir_Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Avenir-Heavy";
  src: url("../fonts/Avenir/Avenir_Heavy.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Avenir-Light";
  src: url("../fonts/Avenir/Avenir_Light.ttf") format("truetype");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "Avenir-Regular";
  src: url("../fonts/Avenir/Avenir_Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Layouts */
.header-top .title {
  text-transform: uppercase;
  color: #A4110F;
}
.header-top .title span {
  color: #FF6648;
}
.header-top .social .btn-social i {
  color: #FFF;
}

.header-nav {
  text-transform: uppercase;
}
.header-nav li {
  cursor: pointer;
}
.header-nav li:hover a {
  color: #FF6648;
}
.header-nav li:nth-child(4) {
  background: #A4110F;
}
.header-nav li:nth-child(5) {
  background: #FF6648;
}
.header-nav li:nth-child(4), .header-nav li:nth-child(5) {
  border-radius: 20px;
}
.header-nav li:nth-child(4) a, .header-nav li:nth-child(5) a {
  text-transform: uppercase;
  color: #FFF;
}
.header-nav a {
  text-decoration: none;
  color: #A4110F;
}

.menu-item {
  position: relative;
}

.menu-item:hover .sub-menu {
  display: block;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  z-index: 1000;
  padding: 7px 25px;
  box-shadow: 0 8px 17px 0 rgba(56, 56, 56, 0.2), 0 6px 20px 0 rgba(56, 56, 56, 0.15);
  font-size: 20px;
}

.sub-menu li {
  display: block;
  padding: 5px 0 !important;
  white-space: nowrap;
  background: none !important;
}
.sub-menu li a {
  color: #FF6648 !important;
  text-transform: none !important;
}
.sub-menu li:hover a {
  color: #A4110F !important;
}

/* Home */
.home {
  position: relative;
}
.home .information {
  background: #F5F5F5;
}
.home .information .title {
  text-transform: uppercase;
  font-size: 28px;
  font-family: "Coluna", sans-serif;
  color: #FF6648;
}
.home .information .title span {
  color: #A4110F;
}
.home .information .description {
  margin: 25px 0;
  font-style: italic;
  color: #A4110F;
}
.home .information .navigation .btn-nav {
  padding: 5px 60px;
  background: #FF6648;
}
.home .information .navigation .btn-nav a {
  text-decoration: none;
  color: #FFF;
}
.home .information .navigation .btn-nav:first-child {
  background: #A4110F;
}
.home .missions .title {
  color: #A4110F;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: "Coluna", sans-serif;
}
.home .missions .container .mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 15px;
  transition: transform 0.5s;
}
.home .missions .container .mission::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 17px 0 rgba(56, 56, 56, 0.2), 0 6px 20px 0 rgba(56, 56, 56, 0.15);
  content: "";
  opacity: 0;
  border-radius: 5px;
}
.home .missions .container .mission:hover, .home .missions .container .mission:focus {
  transform: scale3d(1.006, 1.006, 1);
}
.home .missions .container .mission:hover::after, .home .missions .container .mission:focus::after {
  opacity: 1;
}
.home .missions .container .mission .mission-content {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 7px;
}
.home .missions .container .mission .circle {
  width: 208px;
  height: 208px;
  position: absolute;
  background: #FF6648;
  top: 6px;
  left: 3px;
  border-radius: 100%;
  z-index: 1;
}
.home .missions .container .mission img {
  width: 200px;
  height: 200px;
  position: relative;
  z-index: 2;
  border: 2px solid #FFF;
  border-radius: 100%;
}
.home .missions .container .mission .title {
  font-family: "Protest-paint", sans-serif;
  color: #FF6648;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}
.home .missions .container .mission .description {
  margin-top: 7px;
  color: #A4110F;
  text-align: center;
}
.home .news-container {
  position: absolute;
  right: 2vw;
  top: 0;
  width: 25%;
  margin: 25px;
  z-index: 999;
}
.home .news-container .pagination > * {
  margin-right: 7px;
  color: #A4110F;
}

/* End - Home */
/* Footer */
footer {
  font-family: var(--font-headings, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
  background: #A4110F;
}

.footer-partner .btn-nav {
  background: #FFF;
  font-weight: bold;
}
.footer-partner .btn-nav a {
  color: #A4110F;
  text-decoration: none;
}
.footer-partner .btn-nav:hover {
  background: #FF6648;
}
.footer-partner .btn-nav:hover a {
  color: #FFF;
}

.footer-donation .btn-nav {
  background: #FFF;
  border: 3px #FF6648 solid;
}
.footer-donation .btn-nav a {
  color: #FF6648;
  text-decoration: none;
}
.footer-donation .btn-nav:hover {
  background: #A4110F;
}
.footer-donation .btn-nav:hover a {
  color: #FFF;
}

.footer-social div:hover {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
}
/* End - Footer */
/* Header Mobile */
.header-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-logo img {
  width: 60% !important;
  height: auto;
  margin-block: 5px;
}

.header-top .title {
  text-align: center;
}
.header-top .social {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.header-top .social .btn-social {
  margin: 5px 5px;
}

.header-nav {
  font-size: 18px;
}
.header-nav ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}
.header-nav li {
  padding: 5px 19px;
  width: 70%;
  margin: 5px auto;
}
.header-nav .sub-menu {
  left: 50%;
  transform: translateX(-50%);
  padding-inline: 5px;
}
.header-nav .sub-menu li {
  width: auto;
}

/* End - Header Mobile */
/* Home Mobile */
.news-container {
  display: none;
}

.home .missions .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(auto-fit, 1fr);
  gap: 40px;
  grid-template-areas: "." ".";
}
.home .information {
  padding: 70px 20px;
}
.home .information .container {
  width: 100%;
}
.home .information .navigation {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* End - Home Mobile */
/* Footer Mobile */
footer {
  padding: 10px 0;
}
footer .vertical {
  display: none;
}

.go-top {
  display: none;
}

.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer-social .btn-social {
  margin: 0 5px;
}

.footer-img {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-nav div {
  margin-bottom: 10px;
}

.footer-partner, .footer-donation {
  width: 80%;
  margin: auto;
}

/* End - Footer Mobile */
@media only screen and (min-width: 992px) {
  /* Header Desktop */
  .header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 70px;
  }
  .header-nav li {
    width: auto;
  }
  .header-nav ul {
    padding-inline: 10px;
  }
  .header-logo {
    width: 20%;
  }
  .header-logo img {
    width: 60% !important;
    height: auto;
    margin-top: 5px;
  }
  .header-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
  }
  .header-top {
    padding-bottom: 25px;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    width: 100%;
  }
  .header-top .title {
    font-size: 20px;
  }
  .header-top .border {
    width: 30%;
    height: 1px;
    background: #FF6648;
    margin-bottom: 8px;
  }
  .header-top .social {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .header-top .social .btn-social {
    margin: 0 5px;
  }
  .header-bottom {
    width: 100%;
  }
  .header-nav {
    font-size: 22px;
  }
  .header-nav ul {
    list-style-type: none;
  }
  .header-nav li {
    padding: 5px 19px;
  }
  .header-nav li:first-child {
    padding-left: 0;
  }
  .header-nav .header-nav-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }
  /* End - Header Desktop */
  /* Home Desktop */
  /* End - Home Desktop */
  /* Footer Desktop */
  /* End - Footer Desktop */
}
@media only screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1600px) {
  .header-nav {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .news-container {
    display: block;
  }
  .home .missions {
    width: 55%;
    padding: 70px 100px;
  }
  .home .missions .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px 50px;
    grid-template-areas: ". ." ". .";
  }
  .home .information {
    padding: 70px 100px;
  }
  .home .information .container {
    width: 55%;
  }
  .home .information .navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    position: relative;
    border-top: 25px solid #F5F5F5;
  }
  footer .vertical {
    display: block;
    width: 1px;
    height: 35px;
    background: #FFF;
  }
  .go-top {
    position: absolute;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #FF6648;
    top: -24px;
    right: 35px;
  }
  .go-top:hover {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
  .go-top i {
    color: #FFF;
    font-size: 25px;
  }
  .footer-img {
    margin: 15px 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    justify-content: space-between;
  }
  .footer-partner .btn-nav {
    width: 290px;
    padding: 7px 0;
  }
  .footer-partner .btn-nav:nth-child(2) {
    margin-top: 10px;
  }
  .footer-partner, .footer-donation {
    width: auto;
    margin: 0;
  }
  .footer-donation .btn-nav {
    padding: 7px 20px;
  }
  .footer-social {
    display: flex;
    flex-direction: row;
  }
  .footer-social .btn-social {
    margin: 0 5px;
  }
}
/* Modules */
.suurnugu-center-video, .suurnugu-center-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.btn-nav {
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}

.btn-effect {
  position: relative;
  transition: transform 0.1s;
}
.btn-effect::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 17px 0 rgba(56, 56, 56, 0.2), 0 6px 20px 0 rgba(56, 56, 56, 0.15);
  content: "";
  opacity: 0;
  border-radius: 20px;
  z-index: -1;
}
.btn-effect:hover, .btn-effect:focus {
  transform: scale3d(1, 1, 1);
}
.btn-effect:hover::after, .btn-effect:focus::after {
  opacity: 1;
}

.btn-social {
  border-radius: 100%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #FFF;
}
.btn-social.facebook {
  background: #3B5998;
}
.btn-social.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.news-content {
  display: flex;
  background: #FFF;
  border-radius: 5px;
  border: 1px solid #F5F5F5;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 17px 0 rgba(56, 56, 56, 0.2), 0 6px 20px 0 rgba(56, 56, 56, 0.15);
}
.news-content .header {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding: 7px 0;
  background: #FF6648;
  color: #FFF;
  width: 100%;
  font-size: 20px;
}
.news-content .header span {
  margin: auto;
}
.news-content .title, .news-content .body, .news-content .footer {
  padding: 0 20px;
}
.news-content .title, .news-content .body {
  color: #A4110F;
  text-align: center;
}
.news-content .title {
  margin-top: 20px;
  font-weight: bold;
  font-size: 22px;
  font-family: "Protest-paint", sans-serif;
}
.news-content .hr {
  height: 4px;
  width: calc(100% - 40px);
  background: #FF6648;
  margin: 17px 0;
}
.news-content .body {
  margin-bottom: 25px;
}
.news-content .footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: calc(100% - 40px);
  margin-bottom: 20px;
}
.news-content .footer span, .news-content .footer a {
  color: #FF6648;
}
.news-content .footer a {
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
.news-content .footer a:hover {
  color: #A4110F;
}

.page-container, .article-container {
  margin: 5% 20%;
}

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