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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900');

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

:root {
   --teal: #c3e3dd;
   --turquoise: #42a0aa;
   --dark-blue: #037e8e;
   --black: #3a3a42;
   --white: #ffffff;

   --font-primary: 'Montserrat', sans-serif;
}

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

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

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

@media (max-width: 720px) {
   body {
      align-items: flex-start;
      height: 100% !important;
      min-height: 0;
   }
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
   font-weight: 300;
   margin: 0 0 10px;
}

h1 {
   font-size: 34px;
   line-height: 44px;
}

h2,
h3 {
   font-size: 26px;
   line-height: 36px;
}

h4,
h5,
h6 {
   font-size: 18px;
   line-height: 26px;
}

p {
   font-size: 15px;
   line-height: 24px;
}

strong {
   font-weight: 500;
}

a {
   color: var(--black);
   text-decoration: none;
   transition: 0.3s ease all;
}

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

.text-small {
   font-size: 12px;
}

.text-turquoise {
   color: var(--turquoise);
}

/* Responsive */

@media screen and (max-width: 720px) {
   h1 {
      font-size: 26px;
      line-height: 36px;
   }

   h2,
   h3 {
      font-size: 22px;
      line-height: 32px;
   }
}

/*--------------------------------------------------------------
   Buttons
--------------------------------------------------------------*/

.button-group {
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 30px 0;
}

.button {
   appearance: none;
   display: block;
   margin: 0;
   padding: 16px 35px;
   outline: 0;
   border: 0;
   border-radius: 0;
   box-shadow: none;
   background: var(--turquoise);
   font-size: 14px;
   font-weight: 300;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--white);
   text-decoration: none !important;
   transition: 0.3s ease all;
}

.button:hover,
.button:focus {
   background: var(--dark-blue);
}

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

.block-holding .container {
   max-width: 860px;
   width: calc(100% - 60px);
   padding: 30px;
   text-align: center;
}

.block-holding .page-logos {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   gap: 10px 30px;
}

.block-holding .logo {
   display: block;
   max-width: 220px;
   max-height: 30px;
   height: auto;
}

hr {
   border: 0;
   border-top: 1px solid var(--teal);
   margin: 40px 0;
}
