/*--------------------------------------------------------------
  Fonts
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000');

/*--------------------------------------------------------------
  Variables
--------------------------------------------------------------*/

:root {
   --cream: #f6f6ec;
   --green: #649ea0;
   --black: #282828;

   --font-primary: 'DM Sans', sans-serif;
}

/*--------------------------------------------------------------
  Base
--------------------------------------------------------------*/

html {
   width: 100%;
   height: 100vh;
}

body {
   margin: 0;
   padding: 0;
   position: relative;
   font-family: var(--font-primary);
   font-size: 16px;
   line-height: 1.5;
   font-weight: 300;
   color: var(--black);
   height: 100vh;
   min-height: fit-content;
   background-color: var(--cream);
   display: flex;
   align-items: center;
   justify-content: center;
}

/*--------------------------------------------------------------
  Typogrpahy
--------------------------------------------------------------*/

h1 {
   color: var(--black);
   font-size: 40px;
   font-weight: 400;
   line-height: 1.2;
   margin: 30px 0;
}

h2 {
   color: var(--black);
   font-size: 20px;
   font-weight: 500;
}

h3,
h4,
h5,
h6 {
   color: var(--black);
   font-size: 18px;
   font-weight: 500;
   margin: 0 !important;
}

strong {
   font-weight: 500;
}

a {
   color: var(--black);
   text-decoration: none;

   transition: 0.25s ease all;
}

a:hover {
   text-decoration: underline;
   text-decoration-thickness: 1px;
   text-underline-offset: 3px;
}

p.text-small {
   font-size: 13px;
   opacity: 50%;
}

@media screen and (max-width: 720px) {
   h1 {
      font-size: 32px;
   }
}

/*--------------------------------------------------------------
  Holding Page
--------------------------------------------------------------*/

.block-holding {
   padding: 40px;
}

.block-holding .container {
   max-width: 860px;
   text-align: center;
}

.block-holding .logo {
   max-width: 280px;
   height: auto;
}

.block-holding .contact-details {
   margin: 25px auto;
}

.block-holding .contact-details p {
   margin: 0;
}

.block-holding .contact-details .flex-layout {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   gap: 10px 30px;
   margin-top: 15px;
}

/*--------------------------------------------------------------
  Credit
--------------------------------------------------------------*/

a.thrive-credit {
   opacity: 10%;
   transition: 0.25s ease all;
   position: absolute;
   bottom: 15px;
   right: 15px;
}

a.thrive-credit:hover {
   opacity: 40%;
}

a.thrive-credit img {
   max-width: 60px;
   height: auto;
   display: block;
}
