/* GI: Compiled 'style.scss' as CSS
        (ver 29 Apr. 2025) */


html {
    font-size: 50.5%;
  }

  a.email-button > svg {
    width: 88%;
    height: 88%;
    background-size: 80% 70%;
    background-position: center;
    background-repeat: no-repeat;
    /* background-image: linear-gradient(#fff, #fff); */
    background-image: linear-gradient(to bottom, #fff 25%, #00ccff 25%, #fff 45%);
    fill: #24292F
  }
  a.email-button:hover > svg {
    background-image: none;
    fill: #fff;
  }

  .landing-page-container {
    width: 100%;
    min-height: 100%;
    /* height: 90rem; */
    height: auto;
    /* overflow: hidden; */
    font-family: "Montserrat", sans-serif;
    color: #09383E;
  }

  .content__wrapper {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
  }

  .ellipses-container {
    width: 50rem;
    height: 50rem;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    /* top: 10.5rem; */
    top: 0rem;
  }
  /* .ellipses-container .greeting {
    position: absolute;
    top: 11.6rem;
    left: 13rem;
    right: 0;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 4rem;
    font-size: 2.2rem;
    font-weight: 400;
    opacity: 0.5;
  }
  .ellipses-container .greeting:after {
    content: "";
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    display: inline-block;
    background-color: #0C383E;
    position: relative;
    top: -0.65rem;
    left: -5.05rem;
  } */

  .ellipses {
    border-radius: 50%;
    position: absolute;
    top: 0;
    border-style: solid;
  }

  .ellipses__outer--thin {
    width: 100%;
    height: 100%;
    background-image: url("../images/compass_rose_IN-3.svg");
    background-repeat: no-repeat;
    /* background-size: 75%; */
    background-size: cover;
    /* background-position: bottom; */
    background-position: center;
/*     overflow: hidden; */
    border-width: 1px;
    /* border-color: rgba(9, 56, 62, 0.1); */
    border-color: rgba(0, 244, 255, 255);
    /* border-color: #b419a7; */
    -webkit-animation: ellipsesOrbit 15s ease-in-out infinite;
            animation: ellipsesOrbit 15s ease-in-out infinite;
  }
  .ellipses__outer--thin:after {
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: relative;
    opacity: 0.15;
  }

  .ellipses__outer--thick {
    width: 99.5%;
    height: 99.5%;
    background-image: url("../images/compass_rose_OUT-4.svg");
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: bottom; */
    background-position: center;
    overflow: hidden;
    border-color: #00ccff transparent;
    border-width: 2px;
    transform: rotate(-45deg);
    -webkit-animation: ellipsesRotate 15s ease-in-out infinite;
            animation: ellipsesRotate 15s ease-in-out infinite;
  }

  .ellipses__orbit {
    width: 3.5rem;
    height: 3.5rem;
    border-width: 1px;
    border-color: #e50083;
    top: 4.25rem;
    right: 6.75rem;
  }
  .ellipses__orbit:before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    display: inline-block;
    background-color: #e50083;
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  @-webkit-keyframes ellipsesRotate {
    0% {
      transform: rotate(45deg);
    }
    100% {
      transform: rotate(405deg);
    }
  }

  @keyframes ellipsesRotate {
    0% {
      transform: rotate(45deg);
    }
    100% {
      transform: rotate(405deg);
    }
  }
  @-webkit-keyframes ellipsesOrbit {
    0% {
      transform: rotate(-90deg);
    }
    100% {
      transform: rotate(-450deg);
    }
  }
  @keyframes ellipsesOrbit {
    0% {
      transform: rotate(-90deg);
    }
    100% {
      transform: rotate(-450deg);
    }
  }
