/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-VariableFont_wdth,wght.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

button {
  border-style: none;
  background: none;
  cursor: pointer;
}

.invisible {
  display: none;
}

a,
a:hover,
a:visited {
  color: #050315;
  text-decoration: none;
  cursor: pointer;
}

.block {
  display: block;
}

.go-top {
  padding: 1vh;
  display: none;
  position: fixed;
  bottom: 15vh;
  right: 3vw;
  width: 12vw;
  border-radius: 50%;
  background-color: #FBE800;
  z-index: 20;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.go-top__img {
  width: 100%;
  height: auto;
}

.active {
  color: #0072B0 !important;
}

.success {
  color: green;
}

.error {
  color: red;
}

.waiting {
  color: orange;
}

.no-scroll {
  overflow: hidden;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .go-top {
    bottom: 10vh;
    right: 3vw;
    width: 8vw;
  }
}
@media (min-width: 1024px) {
  .go-top {
    bottom: 10vh;
    right: 3vw;
    width: 4vw;
  }
}
.line {
  fill: none;
  stroke: #FBE800;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.menu {
  padding: 1vh 5vw;
  background-color: #0072B0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.menu__toggle-checkbox {
  display: none;
}
.menu__nav {
  position: fixed;
  right: 0;
  top: 7vh;
  padding-top: 2vh;
  height: 93vh;
  width: 65vw;
  background-color: #0072B0;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
.menu__logo {
  height: 5vh;
  width: auto;
}
.menu__toggle-checkbox:checked ~ .menu__nav {
  transform: translateX(0);
}
.menu__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.menu__toggle-label svg {
  height: 5vh;
  width: auto;
}
.menu__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2vh;
}
.menu__item {
  padding: 1vh 5vw;
  background-color: #E0F3FC;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.menu__item a {
  color: #0072B0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}
.menu__item--short {
  width: 35vw;
}
.menu__item--long {
  width: 40vw;
}
.menu__toggle-checkbox:checked ~ .menu__container .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.menu__toggle-checkbox:checked ~ .menu__container .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.menu__toggle-checkbox:checked ~ .menu__container .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .menu {
    padding: 2vh 5vw;
  }
  .menu__item {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .menu__item a {
    font-family: "Montserrat", sans-serif;
    font-size: 2.3vw;
    font-weight: bold;
  }
}
@media (min-width: 1024px) {
  .menu {
    padding: 3vh 5vw;
    background-color: #ffffff;
    position: inherit;
    overflow: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .menu__toggle-checkbox {
    display: none;
  }
  .menu__nav {
    position: inherit;
    right: inherit;
    top: inherit;
    padding-top: 0;
    height: inherit;
    width: inherit;
    background-color: inherit;
    transform: inherit;
    transition: inherit;
  }
  .menu__logo {
    height: 8vh;
    width: auto;
  }
  .menu__toggle-checkbox:checked ~ .menu__nav {
    transform: inherit;
  }
  .menu__container {
    display: inherit;
    flex-direction: inherit;
    justify-content: inherit;
  }
  .menu__toggle-label svg {
    height: inherit;
    width: inherit;
  }
  .menu__toggle-label {
    display: none;
  }
  .menu__list {
    display: flex;
    flex-direction: row;
    align-items: inherit;
    gap: 5vw;
  }
  .menu__item {
    padding: inherit;
    background-color: inherit;
    box-shadow: none;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
  }
  .menu__item a {
    color: #050315;
    font-family: "Montserrat", sans-serif;
    font-size: 1vw;
    font-weight: medium;
  }
  .menu__item--short {
    width: inherit;
  }
  .menu__item--long {
    width: inherit;
  }
  .menu__item:hover .menu__link {
    color: #0072B0;
  }
  .menu__link {
    transition: color 0.3s ease;
  }
}
.footer {
  margin-top: 10vh;
  padding: 3vh 5vw;
  background-color: #E0F3FC;
  display: flex;
  flex-direction: column-reverse;
  gap: 5vh;
  align-items: center;
}
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1vh;
  align-items: center;
}
.footer__contact-link {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5;
  text-decoration: underline;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  align-items: center;
}
.footer__nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}
.footer__nav-item {
  padding: 1.5vh 5vw;
  background-color: #0072B0;
  width: 50vw;
  border-radius: 15px;
  display: flex;
  justify-content: center;
}
.footer__nav-item a {
  color: #ffffff;
}
.footer__logo {
  width: 25vw;
  height: auto;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .footer__contact-link {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 2.5vw;
    line-height: 1.5;
  }
  .footer__nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 2.3vw;
    font-weight: bold;
  }
  .footer__nav-item {
    width: 35vw;
    border-radius: 25px;
  }
  .footer__logo {
    width: 20vw;
  }
}
@media (min-width: 1024px) {
  .footer {
    margin-top: 10vh;
    padding: 3vh 5vw;
    flex-direction: row;
    gap: 5vw;
    justify-content: space-between;
  }
  .footer__contact {
    position: relative;
  }
  .footer__contact-list {
    gap: 2vh;
    position: relative;
    z-index: 2;
  }
  .footer__contact-link {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 1vw;
    line-height: 1.5;
  }
  .footer__contact a {
    color: #ffffff;
  }
  .footer__contact:hover::before {
    width: calc(160% + 10vw);
  }
  .footer__contact::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    left: -10vw;
    width: calc(130% + 10vw);
    transition: width 0.3s ease;
    height: calc(100% + 6vh);
    background-color: #0072B0;
    border-radius: 0 15px 15px 0;
  }
  .footer__nav-list {
    flex-direction: row;
    gap: 3vw;
  }
  .footer__nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 1vw;
    font-weight: medium;
  }
  .footer__nav-item {
    padding: inherit;
    background-color: inherit;
    width: inherit;
    border-radius: 15px;
    display: flex;
    justify-content: center;
  }
  .footer__nav-item:hover a {
    color: #0072B0;
  }
  .footer__nav-item a {
    color: #050315;
    transition: color 0.3s ease;
  }
  .footer__logo {
    width: 10vw;
  }
}
.ns-header {
  background-color: #0072B0;
  display: flex;
  gap: 5vw;
  margin: 5vh 5vw;
  border-radius: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.ns-header__title {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
}
.ns-header__description {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}
.ns-header__content {
  display: flex;
  flex-direction: column;
  gap: 3vh;
  align-items: center;
  margin: 3vh 5vw;
}
.ns-header__image {
  display: none;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .ns-header {
    margin: 5vh 10vw;
  }
  .ns-header__title {
    font-family: "Montserrat", sans-serif;
    font-size: 5vw;
    font-weight: bold;
  }
  .ns-header__description {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 2.5vw;
    line-height: 1.5;
  }
}
@media (min-width: 1024px) {
  .ns-header {
    gap: 3vw;
    margin: 5vh 5vw;
    padding: 4vh 5vw;
    align-items: center;
  }
  .ns-header__title {
    font-family: "Montserrat", sans-serif;
    font-size: 3.5vw;
    font-weight: bold;
    align-self: flex-start;
  }
  .ns-header__description {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 1vw;
    line-height: 1.5;
    text-align: inherit;
  }
  .ns-header__content {
    gap: 3vh;
    align-items: inherit;
    margin: 0;
  }
  .ns-header__image {
    display: inherit;
    border-radius: 15px;
    width: 70vw;
    max-height: 35vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.ns-services {
  display: flex;
  flex-direction: column;
  gap: 3vh;
  margin: 5vh 5vw;
}
.ns-services__item--color3 {
  background-color: #E0F3FC;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.ns-services__image {
  width: 100%;
  height: 25vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.ns-services__item {
  padding: 3vh 5vw;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 3vh;
}
.ns-services__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ns-services__title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
}
.ns-services__button {
  background-color: #0072B0;
  border-radius: 15px;
  color: #ffffff !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1vh 3vw;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.ns-services__description {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5;
}
.ns-services__description--invisible {
  opacity: 0;
  max-height: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.ns-services__description--visible {
  opacity: 1;
  max-height: 2000px;
}
.ns-services__see-more {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  color: #0072B0;
}
.ns-services__arrow--rotate {
  transform: rotate(-180deg);
}
.ns-services__arrow {
  transition: transform 0.3s ease;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .ns-services {
    margin: 5vh 10vw;
  }
  .ns-services__image {
    height: 30vh;
  }
  .ns-services__title {
    font-family: "Roboto", sans-serif;
    font-size: 4vw;
    line-height: 1.2;
    font-weight: bold;
  }
  .ns-services__button {
    font-family: "Montserrat", sans-serif;
    font-size: 2.3vw;
    font-weight: bold;
  }
  .ns-services__description {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 2.5vw;
    line-height: 1.5;
  }
  .ns-services__see-more {
    font-family: "Roboto", sans-serif;
    font-size: 4vw;
    line-height: 1.2;
    font-weight: bold;
  }
}
@media (min-width: 1024px) {
  .ns-services {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2vw;
    margin: 16vh 5vw;
    justify-content: center;
    position: relative;
  }
  .ns-services::before {
    content: "";
    position: absolute;
    background-color: #E0F3FC;
    height: 105%;
    width: 60vw;
    top: 50%;
    transform: translateY(-50%);
    left: -5vw;
    z-index: -1;
    border-radius: 15px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  }
  .ns-services__image {
    height: 35vh;
  }
  .ns-services__item--color3 {
    background-color: inherit;
    box-shadow: none;
  }
  .ns-services__item {
    flex: 0 1 calc(33% - 2vw);
    padding: 0;
    gap: 3vh;
  }
  .ns-services__title {
    font-family: "Roboto", sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
  }
  .ns-services__button {
    font-family: "Montserrat", sans-serif;
    font-size: 1vw;
    font-weight: medium;
    padding: 2vh 2vw;
    background-color: #FAED42;
    color: #050315 !important;
    transition: all 0.5s ease;
  }
  .ns-services__button:hover {
    background-color: #0072B0;
    color: #ffffff !important;
  }
  .ns-services__description {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-size: 1vw;
    line-height: 1.5;
  }
  .ns-services__description--invisible {
    opacity: inherit;
    max-height: inherit;
    padding: inherit;
    transition: inherit;
  }
  .ns-services__description--visible {
    opacity: inherit;
    max-height: inherit;
  }
  .ns-services__see-more {
    display: none;
  }
  .ns-services__arrow--rotate {
    transform: inherit;
  }
  .ns-services__arrow {
    transition: inherit;
  }
}/*# sourceMappingURL=nos-services.css.map */
