:root {
  --dl-color-gray-500: #595959;
  --dl-color-gray-700: #999999;
  --dl-color-gray-900: #D9D9D9;
  --dl-size-size-large: 144px;
  --dl-size-size-small: 48px;
  --dl-color-danger-300: #A22020;
  --dl-color-danger-500: #BF2626;
  --dl-color-danger-700: #E14747;
  --dl-color-gray-black: #434643ff;
  --dl-color-gray-white: #FFFFFF;
  --dl-size-size-medium: 96px;
  --dl-size-size-xlarge: 192px;
  --dl-size-size-xsmall: 16px;
  --dl-space-space-unit: 16px;
  --dl-color-primary-100: #003EB3;
  --dl-color-primary-300: #0074F0;
  --dl-color-primary-500: #14A9FF;
  --dl-color-primary-700: #85DCFF;
  --dl-size-size-xxlarge: 288px;
  --dl-size-size-maxwidth: 1400px;
  --dl-radius-radius-round: 50%;
  --dl-space-space-halfunit: 8px;
  --dl-space-space-sixunits: 96px;
  --dl-space-space-twounits: 32px;
  --dl-radius-radius-radius2: 2px;
  --dl-radius-radius-radius4: 4px;
  --dl-radius-radius-radius8: 8px;
  --dl-space-space-fiveunits: 80px;
  --dl-space-space-fourunits: 64px;
  --dl-space-space-threeunits: 48px;
  --dl-color-success-lightgreen: #ecf0e9ff;
  --dl-space-space-oneandhalfunits: 24px;
}

.input {
  color: var(--dl-color-gray-black);
  cursor: auto;
  padding: 0.5rem 1rem;
  border-color: var(--dl-color-gray-black);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-gray-white);
}
.textarea {
  color: var(--dl-color-gray-black);
  cursor: auto;
  padding: 0.5rem;
  border-color: var(--dl-color-gray-black);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-gray-white);
}
.list {
  width: 100%;
  margin: 1em 0px 1em 0px;
  display: block;
  padding: 0px 0px 0px 1.5rem;
  list-style-type: none;
  list-style-position: outside;
}
.list-item {
  display: list-item;
}
.teleport-show {
  display: flex !important;
  transform: none !important;
}
.Content {
  font-size: 16px;
  font-family: Lato;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
  text-decoration: none;
}


h2 {
  font-size: 2.6rem !important;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem !important;
  font-weight: 600;
}

p {
  font-size: 1.2rem;
  line-height: 2rem !important;
  font-weight: 400 !important;
}

@media (max-width: 479px) {
  p {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}
.italics {
  font-style: italic;
}

.bold {
  font-weight: 600;
}

.project-buttons {
  width: 100%;
  display: flex;
  column-gap: var(--dl-space-space-halfunit);
  margin-top: var(--dl-space-space-unit);
}

.project-button {
  width: fit-content;
  width: --webkit-fit-content;
  display: flex;
  align-items: center;
  --webkit-box-align: center;
  padding-left: var(--dl-space-space-unit);
  padding-right: var(--dl-space-space-unit);
  height: 40px;
  color: #0f0f0f;
  border-radius: 20px;
  transition: 0.3s;
  font-family: Lato;
  border-color: #0f0f0f;
  border-width: 2px;
  text-decoration: none;
  background-color: transparent;
}

.project-button:hover {
  background-color: #0f0f0f;
  color: #ffffff;
  transition: 0.5s ease;
}

.website-button {
  width: fit-content;
  width: --webkit-fit-content;
  display: flex;
  padding-left: 0px;
  padding-right: 0px;
  align-items: normal;
  --webkit-box-align: none;
  box-shadow: none;
  transition: box-shadow 0.5s ease;
}

.website-button:hover {
  box-shadow: inset 0 0 0 50px #0f0f0f;
}
.website-button svg {
  padding-left: 0px;
  transition: padding-left 0.5s ease;
}

.website-button:hover svg {
  padding-left: 10px;
}

.website-button span {
  padding-left: var(--dl-space-space-unit);
  padding-right: var(--dl-space-space-unit);
  align-self: center;
}

.white-button {
  width: fit-content;
  width: --webkit-fit-content;
  border: solid 2px #ffffff;
  color: #ffffff;

}

.white-button:hover {
  background-color: #ffffff;
  color: #0f0f0f;
}
/** NAVIGATION MENU **/

.navigation-links1-nav {
  flex: 0 0 auto;
  display: flex;
  transition: 0.3s;
  align-items: center;
  flex-direction: row;
}

.navigation-links1-navlink {
  color: #0f0f0f;
  font-style: normal;
  margin-top: 0px;
  transition: 0.3s;
  font-weight: 400;
  padding-top: 4px;
  border-color: #324F1C;
  border-width: 0px;
  margin-bottom: 0px;
  padding-bottom: 4px;
  text-decoration: none;
}


.hover-underline-animation {
  display: inline-block;
  position: relative;
}

.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color:
#324F1C;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


.navigation-links1-navlink1 {
  color: #0f0f0f;
  font-style: normal;
  font-weight: 400;
  margin-left: var(--dl-space-space-twounits);
  text-decoration: none;
  margin-top: 0px;
  transition: 0.3s;
  padding-top: 4px;
  border-color: var(--dl-color-gray-black);
  border-width: 0px;
  margin-bottom: 0px;
  padding-bottom: 4px;
}
.navigation-links1-navlink2 {
  color: #0f0f0f;
  font-style: normal;
  font-weight: 400;
  margin-left: var(--dl-space-space-twounits);
  text-decoration: none;
    margin-top: 0px;
  transition: 0.3s;
  padding-top: 4px;
  border-color: var(--dl-color-gray-black);
  border-width: 0px;
  margin-bottom: 0px;
  padding-bottom: 4px;
}

.menu-icon:hover, .menu-icon:focus {
	fill: #b3b3b3;
}

.navigation-links1-container {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.navigation-links1-icon {
  width: var(--dl-size-size-xsmall);
  height: var(--dl-size-size-xsmall);
  margin-top: 0px;
  margin-left: var(--dl-space-space-fourunits);
  margin-right: 0px;
  margin-bottom: 0px;
}
.navigation-links1-icon2 {
  width: var(--dl-size-size-xsmall);
  height: var(--dl-size-size-xsmall);
  margin-left: var(--dl-space-space-twounits);
}

@media (max-width: 767px) {
  .navigation-links1-nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .navigation-links1-navlink {
    margin-bottom: var(--dl-space-space-unit);
  }
  .navigation-links1-navlink1 {
    margin-left: 0;
    margin-bottom: var(--dl-space-space-unit);
  }
  .navigation-links1-navlink2 {
    margin-left: 0;
    margin-bottom: var(--dl-space-space-unit);
  }
  .navigation-links1-icon {
    margin-left: 0px;
  }
}
@media(max-width: 479px) {
  .navigation-links1-container {
    margin-top: 0px;
  }
  .navigation-links1-icon {
    margin-left: 0px;
    margin-right: var(--dl-space-space-halfunit);
  }
  .navigation-links1-icon2 {
    margin-left: 0px;
  }
}

.nav-container {
  background: rgb(255,255,255);
  background: linear-gradient(-180deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
  position: fixed;
  z-index: 700;
  width: 100%;
  padding-left: var(--dl-space-space-threeunits);
  padding-right: var(--dl-space-space-threeunits);
  padding-top: var(--dl-space-space-twounits);
  padding-bottom: var(--dl-space-space-twounits);
}

@media(max-width: 767px) {
  .nav-container {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
    padding-top: var(--dl-space-space-unit);
    padding-bottom: var(--dl-space-space-unit);
  }

}

@media(max-width: 479px) {
  .nav-container {
    padding-left: var(--dl-space-space-unit);
    padding-right: var(--dl-space-space-unit);
  }
}

.header-header {
  /* position: relative; */
  width: 100%;
  display: flex;
  background-color: #ffffff;
  max-width: 100%;
  align-items: center;
  justify-content: space-between;
  border: solid 2px #0f0f0f;
  /* box-shadow: 11px 23px 50px rgba(0,0,0,.15); */
  border-radius: 100px;
  padding-top: var(--dl-space-space-halfunit);
  padding-left: var(--dl-space-space-twounits);
  padding-right: var(--dl-space-space-twounits);
  padding-bottom: var(--dl-space-space-halfunit);
}
.header-image {
  height: 2rem;
  object-fit: cover;
}
.header-nav {
  display: flex;
}
.header-burger-menu {
  display: none;
  position: relative;
}
.header-icon {
  width: var(--dl-size-size-xsmall);
  height: var(--dl-size-size-xsmall);
  display: none;
}

.header-icon:hover {
  transform: scale(1.4);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.header-icon02:hover {
  transform: scale(1.4);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.header-mobile-menu {
  border: solid 2px #0f0f0f;
  /* box-shadow: 11px 23px 50px rgba(0,0,0,.15); */
  border-radius: 20px;
  top: 0px;
  right: 0px;
  width: -webkit-fill-available;
  height: auto;
  display: none;
  z-index: 100;
  position: fixed;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  transition: display 2s ease;

  padding-top: var(--dl-space-space-halfunit);
  padding-left: var(--dl-space-space-twounits);
  padding-right: var(--dl-space-space-twounits);
  padding-bottom: var(--dl-space-space-unit);

  margin-top: var(--dl-space-space-unit);
  margin-left: var(--dl-space-space-twounits);
  margin-right: var(--dl-space-space-twounits);
}

.header-mobile-menu:active {
  display: flex;
  transition: display 2s ease;
}


.header-nav1 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: var(--dl-space-space-unit);
  justify-content: space-between;
}

.header-image1 {
  height: 2rem;
}
.header-close-mobile-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-icon02 {
  width: var(--dl-size-size-xsmall);
  height: var(--dl-size-size-xsmall);
}
.header-icon04 {
  width: var(--dl-size-size-xsmall);
  height: var(--dl-size-size-xsmall);
  margin-right: var(--dl-space-space-twounits);
}
.header-icon06 {
  width: var(--dl-size-size-xsmall);
  height: var(--dl-size-size-xsmall);
  margin-right: var(--dl-space-space-twounits);
}
.header-icon08 {
  width: var(--dl-size-size-xsmall);
  height: var(--dl-size-size-xsmall);
}
.header-root-class-name {
  max-width: 100%;
  align-self: center;
}
.header-root-class-name1 {
  top: 0px;
  left: 0px;
  position: static;
  max-width: 100%;
}
.header-root-class-name2 {
  max-width: 100%;
}
@media(max-width: 991px) {
  .header-icon {
    display: flex;
  }
  .header-nav {
    display: none;
  }
  .header-burger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media(max-width: 767px) {
  .header-header {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }

  .header-image {
    height: 1.2rem;
  }
}
@media(max-width: 479px) {



  .header-header {
    padding: var(--dl-space-space-unit);
  }
  .header-nav {
    display: none;
  }
  .header-mobile-menu {
    height: auto;
    display: none;
    border-radius: 27px;
    margin-left: var(--dl-space-space-unit);
    margin-right: var(--dl-space-space-unit);

    padding-top: var(--dl-space-space-unit);
    padding-left: var(--dl-space-space-unit);
    padding-right: var(--dl-space-space-unit);
    padding-bottom: var(--dl-space-space-unit);
  }
  .header-icon-group {
    display: none;
  }
}

@media (min-width: 767px) {
  .header-mobile-menu {
    height: auto;
    display: none;
    border-radius: 27px;
    margin-left: var(--dl-space-space-threeunits);
    margin-right: var(--dl-space-space-threeunits);
    margin-top: var(--dl-space-space-twounits);

    padding-top: var(--dl-space-space-halfunit);
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
    padding-bottom: var(--dl-space-space-unit);
  }

}


a.underline {
	color: #0f0f0f;
    background-image: linear-gradient(#0f0f0f, #0f0f0f);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .5s;
}


a.underline:hover, a.underline:focus {
    background-size: 100% 2px;
}

a.white-underline {
	color: #ffffff;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .5s;
}

a.white-underline:hover, a.white-underline:focus {
	background-size: 100% 2px;
}

a.white-underline svg {
  fill: #ffffff;
}


.row {
  width: 100%;
  display: flex;

}

.two-col {
  width: 50%;
  /*display: inline-flex;*/
}

.img-responsive {
  width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}


.footer {
  background: #0f0f0f;
  color: #ecf0e9ff;
  padding-top: var(--dl-space-space-unit);
  padding-bottom: var(--dl-space-space-unit);
}

.footer-container {
  width: 100%;
  display: flex;
  padding-left: var(--dl-space-space-threeunits);
  padding-right: var(--dl-space-space-threeunits);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px !important;
}

.footer-container p {
  font-size: 14px !important;
}

.footer-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-container svg {
  fill: #ecf0e9ff;
  margin-right: var(--dl-space-space-halfunit);
}

@media(max-width: 767px) {
  .footer-container {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }
}
