@font-face {
  font-family: 'Mont';
  src: url('/fonts/Mont-Bold/font.woff2') format('woff2'), url('/fonts/Mont-Bold/font.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}


@font-face {
  font-family: 'Mont';
  src: url('/fonts/Mont-Book/font.woff2') format('woff2'), url('/fonts/Mont-Book/font.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: url('/fonts/Mont-BookItalic/font.woff2') format('woff2'), url('/fonts/Mont-BookItalic/font.woff') format('woff');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Mont';
  src: url('/fonts/Mont-BoldItalic/font.woff2') format('woff2'), url('/fonts/Mont-BoldItalic/font.woff') format('woff');
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  
}

body, html {
  background: rgba(245,239,233,1);
  width: 100%;
  height: auto;
  position: relative;
  font-family: 'Mont', sans-serif;
  font-size: 16px;
}

h1 {
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 600;
  color: #0f1f41;
  margin-bottom: 1.3rem;
}

h2 {
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  line-height: 1.5;
  color:#0f1f41;
  margin-bottom: 1rem;
}

p {
  font-size: clamp(1rem, 1vw, 1.2rem);
  line-height: 1.5;
  margin-bottom: 1rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding: 1.2rem 2rem;
  justify-content: space-around;
  border-bottom: 1px solid #dfdad9;
  background: rgba(245,239,233,1);
}

header img {
  width: 300px;
}


.btn {
  text-decoration: none;
  color: white;
  background: #3960bf;
  border-radius: 100px;
  text-align: center;
  padding: 11px 25px 7px 25px;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
  transition: 0.1s ease;
  display: inline-block;
}

.btn:hover {
  opacity: 0.8;
}

main .btn {
  margin-top: 3rem;
  
}

.valign {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1.5rem;
  width: 100%;
  text-align: center;
}


.content {
  max-width: 870px;
  margin: 0 auto;
  
}

.valign span {
  display: block;
  margin-top: 10px;
  font-style: italic;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
}
footer img {
  width: 220px;
  margin: 0 auto;
  display: block;
}


.graphics img {
  position: fixed;
  width: 300px;
  height: auto;
}

.graphics .img1 {
  top: 20%;
  left: -10px;
  width: 180px;
}

.graphics .img3 {
  right: -30px;
  top: 18%;
}

.graphics .img4 {
  bottom: 0;
  right: 13%;
  width: 260px;
}

.graphics .img5 {
  bottom: -30px;
  left: 13%;
  transform: rotate(15deg);
}


@media screen and (max-width: 992px), 
 screen and (max-height: 992px) {
   .graphics img {
     display: none;
   }
   .graphics .img4 {
     display: block;
     width: 160px;
   }
 }

@media screen and (max-width: 780px) {
  header {
    
    padding: 1.2rem 1rem;
    justify-content: center;
    
  }
  
  header img {
    width: 240px;
  }
  header .btn { display: none; }
}

@media screen and (max-width: 600px), 
       screen and (max-height: 650px) {

 .valign {
   position: initial;
   transform: none;
   padding-top: 100px;
 }
 
 .mobileflex {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   min-height: 100vh;
 }
 
 footer {
   padding-top: 50px;
   position: initial;
 }
 footer img {
   width: 160px;
   margin-top: 2.3rem;
 }
 
 .graphics .img4 {
   display: block;
   width: 120px;
   position: absolute;
   bottom: 0px;
   right: 10px;
 }
}

