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

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800');

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

:root {
   --lime: #eaefc7;
   --purple: #8861c4;
   --black: #283d07;
   --white: #ffffff;

   --font-primary: 'Plus Jakarta 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: var(--lime);
   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 {
   font-size: 45px;
   line-height: 55px;
   font-weight: 700;
   margin: 30px 0;
}

h2 {
   font-size: 28px;
   line-height: 32px;
   font-weight: 500;
   color: var(--purple);
}

h5 {
   font-size: 18px;
}

h5,
p {
   margin: 0 0 5px;
}

p {
   font-weight: 500;
}

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

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;
}

strong {
   font-weight: 600;
}

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

   h2 {
      font-size: 22px;
      line-height: 26px;
   }
}

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

.block-holding {
   padding: 40px;
}

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

.block-holding .content-wrap {
   position: relative;
   padding: 50px;
   background: var(--white);
   border-radius: 50px;
   /* margin-bottom: 40px; */
}

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

.block-holding img[class^='shape'] {
   display: block;
   position: absolute;
   animation: rotate 8s linear infinite;
}

.block-holding img.shape-top {
   width: 100px;
   height: 100px;
   right: 50px;
   top: -50px;
}

.block-holding img.shape-bottom {
   width: 120px;
   height: 120px;
   left: -50px;
   bottom: 90px;
   animation-direction: reverse;
}

@keyframes rotate {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

@media screen and (max-width: 720px) {
   .block-holding {
      padding: 30px;
   }

   .block-holding .logo {
      max-width: 200px;
   }

   .block-holding .content-wrap {
      padding: 35px;
   }

   .block-holding img.shape-top {
      width: 80px;
      height: 80px;
      top: -35px;
   }

   .block-holding img.shape-bottom {
      width: 90px;
      height: 90px;
      left: -40px;
   }
}

/*--------------------------------------------------------------
   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;
}
