@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500&display=swap');
:root {
  --color-primary: #141414;
  --color-secondary: #47ab63;
  --color-text: #848E9F;
  --color-accent: #000E44;
  --color-white: #FFFFFF;
  --color-color-400: #29A4FF;
  --color-border: #eaeaea;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
}

a { 
  text-decoration: none;
  color: var(--color-primary);
}

img {
  max-width: 100%; 
  display: block; 
  height: auto;
}

img,
video,
iframe {
  max-inline-size: 100%;
  block-size: auto;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

#particles-js {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
} /* ---- stats.js ---- */

canvas {
  display: block;
} /* ---- particles.js container ---- */

/* animation */

[data-anime] {
  opacity: 0;
  transition: .3s;
}

[data-anime="left"] {
  transform: translate3d(-50px, 0, 0);
}

[data-anime="right"] {
  transform: translate3d(50px, 0, 0);
}

[data-anime="top"] {
  transform: translate3d(0, -50px, 0);
}

[data-anime="bottom"] {
  transform: translate3d(0, 50px, 0);
}

[data-anime].animate {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0.5rem;
}

header {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: sticky;
  top: 0;
  left: 0;
  background: var(--color-primary);
  z-index: 50;
}

.header {
  max-width: 1170px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.menu-bar {
  display: none;
}

.header .header__info {
  display: flex;
  gap: 2rem;
}

.header .header__info > .header__card {
  padding-right: 2.5rem;
}

.header .header__info > .header__card {
  border-right: 1px solid var(--color-border);
}

.header .header__info .header__card .header__title {
  color: var(--color-primary);
  font-weight: 500;
}

.header .header__info .header__card .header__description {
  color: var(--color-text);
}

.header .header__support {
  border-radius: 100%;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50px 50px 50px 50px;
  padding: 10px 30px 10px 30px;
  text-decoration: none;
  transition: ease 0.2s;
}

/* button */

.header .header__support:hover {
  background: var(--color-secondary);
  transform: translateY(-0.50em);
}

/* menu */
nav {
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 5px;
}

nav .menu {
  display: flex;
  list-style: none;
  gap: 5em;
  padding: 0px 0px 0px 30px;
}

nav .menu .menu__item a{
  color: var(--color-white);
  text-decoration: none;
}

nav .menu__icons {
  display: flex;
  gap: 1rem;
}

nav .menu__icons .menu__icon {
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50px 50px 50px 50px;
  padding: 4px 10px;
  text-decoration: none;
  transition: ease 0.2s;
  text-align: center;
  font-size: 16px;
}

nav .menu__icons .menu__icon a{
  text-decoration: none;
  color: white;
}

/* Menu mobile */

.background-element {
  position: fixed;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  pointer-events: none;
  background-color: transparent;
  justify-content: center;
  align-items: flex-end;
}

.menu-mobile {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 9999;
}

.menu-mobile .menu-mobile__content {
  padding: 1rem;
  width: 100%;
  background-color: white;
  display: none;
}

.menu-mobile .menu-mobile__content ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.menu-mobile .menu-mobile__content ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}

.menu-mobile .menu-mobile__content ul li svg {
  font-size: 1.2rem;
  color: var(--color-secondary);
}

@media screen and (max-width: 992px) {

  header {
    width: 100%;
    height: 70px;
    line-height: 52px;
    position: sticky;
    top: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 20;
    justify-content: flex-start;
  }

  .header {
    padding: 0px 0px;
  }

  header .header__logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0px;
    padding-right: 0px;
  }

  .menu-list.close {
    display: none;
  }

  .menu-bar {
    display: block;
    padding-left: 16px;
  }

  .menu-bar svg {
    height: 20px;
    color: #fff;
  }
  
  .header {
    flex-wrap: wrap;
    padding: 0px;
  }

  .logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header nav {
    width: 100%;
    background: var(--color-primary);
    flex-shrink: 1;
    padding: 10px;
  }

  .header nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .menu-mobile .menu-mobile__content {
    display: block;
  }
}

/* hero */

.hero {
  width: 100%;
  height: 690px;
  position: relative;
  overflow: hidden;
}

.hero--background {
  background-image: url('../images/medical-doctors-at-the-conference-E49QVN6.jpg');
  background-position: 100% 24%;
  background-repeat: no-repeat;
  background-size: 94% auto;
}

.hero__overlay {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: transparent;
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.hero-main {
  position: relative;
  background-color: #fff;
  width: 60%;
  padding: 2rem 4rem;
  border-radius: 5px 5px 5px 5px;
  padding: 10px 30px 10px 30px;
}

.hero-content {
  position: absolute;
  top: 20%;
  left: 20%;
  display: flex;
}

.hero-main .hero-information__overlay {    
  background-color: transparent;
  background-image: url('../images/bg-health.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.4;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.hero-main .hero-information__wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  padding: 3rem 2rem;
}

.hero-main .hero-information__wrapper .hero-information__title {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-primary);
  position: relative;
}

.hero-main .hero-information__wrapper .hero-information__title span {
  display: inline-block;
  background-image: linear-gradient(180deg, #FFFFFF00 72%, var(--color-secondary) 26%);
  font-weight: bold;
  line-height: 1.2em;
}

.hero-main .hero-information__wrapper .hero-information__description {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}

.hero-main .hero-information__wrapper .hero-information__button {
  border-radius: 100%;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50px 50px 50px 50px;
  padding: 10px 30px 10px 30px;
  text-decoration: none;
  transition: ease 0.2s;
  border: none;
  font-size: 1rem;
  margin-top: 18px;
  cursor: pointer;
}

.hero-main .hero-information__wrapper .hero-information__video {
  position: absolute;
  bottom: -15%;
  right: -15%;
  background-color: #FF010182;
  border-radius: 5px 5px 5px 5px;
  padding: 2.5rem;
}

.hero-main .hero-information__wrapper .hero-information__video svg {
  font-size: 3.5rem;
  color: white;
  cursor: pointer;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

@media screen and (max-width: 768px) {
  .hero {
    height: 480px;
  }

  .hero-content {
    top: 0%;
    left: 0%;
  }

  .hero-content .hero-main {
    width: 100%;
  }

  .hero-information__video {
    display: none;
  }

  .hero-main .hero-information__wrapper {
    padding: 2rem 1rem;
  }

  .hero-main .hero-information__wrapper .hero-information__title {
    font-size: 2rem;
  }

  .hero-main .hero-information__wrapper .hero-information__description {
    padding-top: 10px; 
  }
}

/* softwares */

/* main .container > section {
  background: var(--color-secondary);
  margin-bottom: 32px;
} */

/* about */

.about {
  display: flex;
  position: relative;
}

.about__image-photo {
  overflow: hidden;
  width: 470px;
  height: 586px;
}

.about .about__image .about__image-photo img {
  width: 85%;
  border-radius: 5px 5px 5px 5px;
}

.about .about__image .about__overlay {
  position: absolute;
  bottom: -5px;
  left: 0;
}

.about .about__image .about__overlay img{
  width: 52%;
  border-style: solid;
  border-width: 15px 15px 0px 0px;
  border-color: #FFFFFF;
  border-radius: 0px 5px 5px 5px;
}

.about .about-information {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.about .about-information .about-information--red{
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 1.2rem;
}

.about .about-information .about-information__title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-primary);
}

.about .about-information .about-information__description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #848E9F;
}

.about .about-information .about-information__footer {
  margin-top: 2rem;
}

.about .about-information .about-information__footer .about-information__footer--button{
  border-radius: 100%;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50px 50px 50px 50px;
  padding: 10px 30px 10px 30px;
  text-decoration: none;
  transition: ease 0.2s;
  align-self: baseline;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .about {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .about .about__image {
    width: 100%;
    position: relative;
  }

  .about .about__image .about__image-photo img {
    width: 85%;
  }
  
  .about .about-information {
    width: 100%;
    margin-top: 3rem;
  }

  .about .about__image .about__overlay {
    position: absolute;
    bottom: 0px;
    left: 0;
  }

  .about .about-information .about-information__footer {
    align-self: center;
  }
}

.about .about-information .about-information__footer {
  margin-top: 2rem;
}

.about .about-information .about-information__footer .about-information__footer--button{
  border-radius: 100%;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50px 50px 50px 50px;
  padding: 10px 30px 10px 30px;
  text-decoration: none;
  transition: ease 0.2s;
  align-self: baseline;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* more about */

.more-about {
  display: flex;
  position: relative;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.more-about__image-photo {
  overflow: hidden;
  width: 470px;
}

.more-about .more-about__image .more-about__image-photo img {
  width: 85%;
  border-radius: 5px 5px 5px 5px;
}

.more-about .more-about__image .more-about__overlay {
  position: absolute;
  bottom: -5px;
  left: 0;
}

.more-about .more-about__image .more-about__overlay img{
  width: 52%;
  border-style: solid;
  border-width: 15px 15px 0px 0px;
  border-color: #FFFFFF;
  border-radius: 0px 5px 5px 5px;
}

.more-about .more-about-information {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.more-about .more-about-information .more-about-information--green{
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 1.2rem;
}

.more-about .more-about-information .more-about-information__title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-primary);
}

.more-about .more-about-information .more-about-information__description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #848E9F;
}

.more-about .more-about-information .more-about-information__footer {
  margin-top: 2rem;
}

.more-about .more-about-information .more-about-information__footer .more-about-information__footer--button{
  border-radius: 100%;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50px 50px 50px 50px;
  padding: 10px 30px 10px 30px;
  text-decoration: none;
  transition: ease 0.2s;
  align-self: baseline;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .more-about {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .more-about .more-about__image {
    width: 100%;
    position: relative;
    order: 2;
    overflow: hidden;
  }

  .more-about .more-about__image .more-about__image-photo img {
    width: 85%;
  }
  
  .more-about .more-about-information {
    width: 100%;
    margin-top: 3rem;
    order: 1;
  }

  .more-about .more-about__image .more-about__overlay {
    position: absolute;
    bottom: 0px;
    left: 0;
  }

  .more-about .more-about-information .more-about-information__footer {
    align-self: center;
  }
}
/*  */
/* more about */

.address {
  display: flex;
  position: relative;
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.address__map-photo {
  overflow: hidden;
  width: 470px;
}

.address .address__map .address__overlay {
  position: absolute;
  bottom: -5px;
  left: 0;
}

.address .address-information {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.address .address-information .address-information--green{
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 1.2rem;
}

.address .address-information .address-information__title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-primary);
}

.address .address-information .address-information__description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #848E9F;
}

.address .address-information .address-information__footer {
  margin-top: 2rem;
}

.address .address-information .address-information__footer .address-information__footer--button{
  border-radius: 100%;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50px 50px 50px 50px;
  padding: 10px 30px 10px 30px;
  text-decoration: none;
  transition: ease 0.2s;
  align-self: baseline;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .address {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .address .address__map {
    width: 100%;
    position: relative;
  }

  .address .address__map .address__map-photo img {
    width: 85%;
  }
  
  .address .address-information {
    width: 100%;
    margin-top: 3rem;
  }

  .address .address__map .address__overlay {
    position: absolute;
    bottom: 0px;
    left: 0;
  }

  .address .address-information .address-information__footer {
    align-self: center;
  }
}
/*  */

.our-service {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.our-service__content {
  margin-top: 3rem;
}

.our-service .our-service__information {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.our-service .our-service__information .our-service__service {
  color: var(--color-secondary);
  font-size: 1.2rem;
}

.our-service .our-service__information .our-service__title {
  font-size: 2rem;
  color: var(--color-primary);
}

.our-service .our-service__information .our-service__description {
  color: var(--color-text);
  font-weight: 400;
  width: 50%;
  text-align: center;
}

.our-service .our-service__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.our-service .our-service__content .our-service__card {
  border-radius: 10px 10px 10px 10px;
  padding: 2rem;
  transition: ease 0.2s;
  cursor: pointer;
  padding-bottom: 2rem;
  background: var(--color-primary);
  box-shadow: 0px 10px 0px 1px rgba(71,171,99,1);
  -webkit-box-shadow: 0px 10px 0px 1px rgba(71,171,99,1);
  -moz-box-shadow: 0px 10px 0px 1px rgba(71,171,99,1);
}

.our-service .our-service__content .our-service__card:hover {
  transform: translateY(0.50em);
}


.our-service .our-service__content .our-service__card .our-service__card-title {
  color: var(--color-white);
  position: relative;
}



.our-service .our-service__content .our-service__card .our-service__card-description {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .our-service .our-service__content {
    grid-template-columns: repeat(1, 1fr);
  }

  .our-service .our-service__information .our-service__description {
    width: 100%;
  }
}

/* softwares */

.softwares {
  margin-top: 5rem;
}

.softwares .softwares__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.softwares .softwares__content .softwares__service-red {
  color: var(--color-secondary);
  font-size: 1.2rem;
}

.softwares .softwares__content .softwares__title {
  font-size: 2rem;
  color: var(--color-primary);
}

.softwares .softwares__content .softwares__description {
  color: var(--color-text);
  font-weight: 400;
  width: 50%;
  text-align: center;
}

.softwares .softwares__content .softwares__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
  column-gap: 20px;
  justify-content: center;
  align-items: center;
}

.softwares .softwares__content .softwares__cards .softwares__card {
  padding-left: 5rem;
  padding-right: 5rem;
}

.softwares .softwares__content .softwares__cards .softwares__cards--large {
  grid-column: 2;
  margin: 2rem 0;
  padding-left: 0rem;
  padding-right: 0rem;
}

.softwares .softwares__content .softwares__cards-four {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
}

.softwares .softwares__content .softwares__cards-four .softwares__card {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (max-width: 768px) {
  .softwares {
    width: 100%;
    padding-top: 4rem 0;
  }

  .softwares .softwares__content .softwares__description {
    width: 100%;
    padding-bottom: 2rem;
  }

  .softwares .softwares__content .softwares__cards {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2rem;
  }

  .softwares .softwares__content .softwares__cards .softwares__card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .softwares .softwares__content .softwares__cards .softwares__cards--large {
    grid-column: span 2;
  }

  .softwares .softwares__content .softwares__cards-four {
    margin-top: 1rem;
  }

} 

/*  */

.work-with-us {
  margin-top: 6rem;
  margin-bottom: 4rem;
  display: flex;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 3px 30px 0px rgba(61.000000000000014, 112.99999999999996, 117, 0.14901960784313725);
  overflow: hidden;
}

.work-with-us__content {
  width: 50%;
}

.work-with-us-form {
  width: 50%;
  background: var(--color-white);
  padding: 1rem 2rem;
}

.work-with-us__content .work-with-us--wrapper {
  background-color: #FFFFFF;
  background-image: url("../images/group-of-doctors-standing-in-hospital-on-medical-conference-.jpg");
  background-position: 50% 0%;
  background-size: cover;
}

.work-with-us-form .work-with-us-form__content {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 0;
}

.work-with-us__content .work-with-us__main {
  background-color: #FFFFFF;
  background-image: url("../images/group-of-doctors-standing-in-hospital-on-medical-conference-.jpg");
  background-position: 50% 0%;
  background-size: cover;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
}

.work-with-us__content .work-with-us__main .work-with-us__content-overlay {
  background-color: transparent;
  background-image: linear-gradient(180deg, #FFFFFF00 9%, var(--color-primary ) 80%);
  opacity: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.work-with-us__content .work-with-us__wrapper {
  position: relative;
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3rem;
}

.work-with-us__content .work-with-us__wrapper svg {
  font-size: 2rem;
  background-color: white;
  padding: 12px;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 3px 30px 0px rgba(61.000000000000014, 112.99999999999996, 117, 0.14901960784313725);
}

.work-with-us__content .work-with-us__wrapper .work-with-us__title {
  color: var(--color-white);
  font-size: 1.8rem;
}

.work-with-us__content .work-with-us__wrapper .work-with-us__description {
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.9rem;
  text-align: center;
}

.work-with-us__content-overlay {
  background-color: transparent;
  background-image: linear-gradient(180deg, #FFFFFF00 9%, var(--e-global-color-primary ) 80%);
  opacity: 1;
}

.work-with-us-form .work-with-us-form__content .form__group {
  width: 50%;
  padding: 1rem;
}

.work-with-us-form .work-with-us-form__content .form__group--message {
  width: 100%;
}

.work-with-us-form .work-with-us-form__content .form__group .form__controls {
  position: relative;
}

.work-with-us-form .work-with-us-form__content .form__group .form__controls input {
  background: #fafafa;
  padding: 15px 25px 15px 25px;
  border-radius: 5px 5px 5px 5px;
  border-style: solid;
  border-color: #ededed;
  border-width: 1px 1px 1px 1px;
  font-size: 0.9rem;
  font-weight: 400;
}

.work-with-us-form .work-with-us-form__content .form__group .form__controls input.error {
  border: solid 1px #f00;
}

.work-with-us-form .work-with-us-form__content .form__group .form__controls input:focus {
  outline: 0;
}

.work-with-us-form .work-with-us-form__content .form__group .form__controls textarea {
  width: 100%;
  background: #fafafa;
  padding: 15px 25px 15px 25px;
  border-radius: 5px 5px 5px 5px;
  border-style: solid;
  border-color: #ededed;
  border-width: 1px 1px 1px 1px;
  font-size: 0.9rem;
  font-weight: 400;
}

.work-with-us-form .work-with-us-form__content .form__group .form__controls textarea.error {
  border: solid 1px #f00;
}

.work-with-us-form .work-with-us-form__content .form__group .form__controls textarea {
  outline: 0;
}

.work-with-us-form .work-with-us-form__content .form__group span {
  font-style: italic;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.8rem;
}

.work-with-us-form .work-with-us-form__content .form__group label span {
  font-size: 0.9rem;
}

.work-with-us-form .work-with-us-form__content .form__group--file .form__controls {
  padding: 0;
}

.work-with-us-form .work-with-us-form__content .form__group--file label {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.work-with-us-form .work-with-us-form__content .form__group--file label svg {
  font-size: 1.3rem;
  color: var(--color-text);
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + label {
  font-size: 1.25em;
  font-weight: 700;
  color: white;
  background: #fafafa;
  padding: 15px 15px 15px 15px;
  border-radius: 5px 5px 5px 5px;
  border-style: solid;
  border-color: #ededed;
  border-width: 1px 1px 1px 1px;
  display: inline-block;
}

.inputfile:focus + label,
.inputfile + label:hover {
  color: var(--color-border);
}

.inputfile:focus + label {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}


.form__button {
  border-radius: 100%;
  color: #fff;
  background: var(--color-secondary);
  border-radius: 50px 50px 50px 50px;
  padding: 10px 30px 10px 30px;
  text-decoration: none;
  transition: ease 0.2s;
  align-self: baseline;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  align-self: flex-end;
}

@media screen and (max-width: 768px) {
  .work-with-us {
    flex-direction: column;
    box-shadow: 0px 0px 0px 0px;
  }
  
  .work-with-us__content {
    width: 100%;
    height: 400px;
  }

  .work-with-us-form {
    width: 100%;
    background: var(--color-white);
    padding: 1rem;
  }

  .work-with-us-form .work-with-us-form__content .form__group {
    width: 100%;
  }

  .work-with-us-form .work-with-us-form__content .form__group .form__controls input {
    width: 100%;
  }
}

/* Articles */

.article {
  margin: 8rem 0;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.article__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article__card .article__image {
  height: 250px;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: #eaeaeb;
  background-position: 50%;
  background-size: cover;
}

.article__card .article__image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: transparent;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.article__card .article__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -o-object-fit: cover;
  object-fit: cover;
  color: #fafcff;
  z-index: -1;
  border-radius: 10px 10px 10px 10px;
}

.article__card .article__image .artcile__type {
  position: absolute;
  bottom: 0;
  line-height: 1;
  background: #fff;
  padding: 1rem 1.5rem 0;
  margin-bottom: 0;
  max-width: 50%;
  text-align: center;
  left: 35%;
  z-index: 10;
}

.article__card .article__image .artcile__type a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: underline;
  color: var(--color-text);
}

.article__card .article__title {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4rem;
  letter-spacing: 1px;
}

.article__card .article__description {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text);
}

.article__card .article__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .article {
    display: none;
  }
}

/* Footer */

footer {
  max-width: 100%;
  width: 100%;
  background-color: var(--color-primary);
  position: sticky;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4rem 4rem;
}

.footer-content .footer-information {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-content .footer-information p {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
}

.footer-content .footer-information .footer-contact__social-media {
  flex: 1;
  display: flex;
  gap: 1.4rem;
  margin-top: 1rem;
}

.footer-content .footer-information .footer-contact__social-media .footer-contact__social-link {
  border-radius: 50%;
  color: #fff;
  background: var(--color-secondary);
  border-radius: 50px 50px 50px 50px;
  width: calc(15px + (2 * 0.7em));
  height: calc(15px + (2 * 0.7em));
  text-decoration: none;
  transition: ease 0.2s;
  text-align: center;
  line-height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content .footer-information .footer-contact__social-media .footer-contact__social-link svg {
  font-size: 18px;
}

.footer-content .footer-information .footer-contact__social-media .footer-contact__social-link a{
  text-decoration: none;
  color: white;
}

.footer-content .footer-information .footer__list {
  display: flex;
  flex-direction: column;
}

.footer-content .footer__title {
  color: white;
  margin-bottom: 16px;
  position: relative;
}


.footer-content .footer__list ul {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  list-style: none;
}

.footer-content .footer__list ul > li {
  margin-top: 18px;
}

.footer-content .footer__list ul > li a{
  color: white;
}

.footer-content .footer__list ul li a > svg {
  color: var(--color-secondary);
  margin-right: 8px;
}

.footer-content .footer__contact ul {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  list-style: none;
}

.footer-content .footer__contact ul > li {
  margin-top: 18px;
}

.footer-content .footer__contact ul > li a{
  color: white;
}

.footer-content .footer__contact ul li a > svg {
  color: var(--color-secondary);
  margin-right: 8px;
}

.footer__map {
  position: relative;
}

.description {
  pointer-events: none;
  position: absolute;
  font-size: 18px;
  text-align: center;
  padding: 10px 15px;
  z-index: 5;
  height: 30px;
  margin: 0 auto;
  border-radius: 5px;
  font-weight: bold;
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  letter-spacing: 1px;
  display: none;
}

.footer-divide {
  width: 100%;
  border: 1px solid #A0AABA2B;
  border-top: 1px solid #A0AABA2B;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 2rem 4rem;
  color: var(--color-text);
}

@media screen and (max-width: 768px) {
  .footer-content {
    gap: 2rem;
    padding: 2rem 2rem;
  }

  .footer-content .footer-information {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .footer-content .footer-information p {
    text-align: center;
  }

  .footer__list {
    width: 100%;
  }

  .footer-content .footer__list ul {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-content .footer__list ul li {
    width: 50%;
  }

  .footer-content .footer__list ul li a {
    text-decoration: underline;
    text-underline-offset: 8px;
  }

  .footer__contact {
    width: 100%;
  }

  .footer-content .footer__contact ul {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-content .footer__contact ul li {
    width: 50%;
  }

  .footer-content .footer__contact ul li a {
    text-decoration: underline;
    text-underline-offset: 8px;
    font-size: 0.9rem;
  }

  .footer-wrapper {
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}
