@font-face {
    font-family: "tango-sans";
    src: url('../polices/tangosans/TangoSans.ttf') format('truetype');
}

:root {
    --dark-blue: #00003f;
    --dark-pink: #ED2B6B;
    --blue: #5700FF;
    --white: #F8F9FA;
}

body {
    margin: 0;
    padding: 0;
    font-family: "tango-sans";
}

/* footer */

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--blue);
    padding: 30px;    
}

footer .hivee {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .hivee img {
    width: 100px;
}

footer .hivee span {
    color: white;
    font-size: 12px;
    font-family: Arial;
    font-size: 400;
}

footer .block-policies {
    display: flex;
    gap: 50px;
}

footer .block-policies .policies {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .block-policies .policies a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-family: Arial;
    font-weight: 600;
}

footer .socials-network {
    display: flex;
    gap: 10px;
}

footer .socials-network img {
    width: 30px;
}

/* landing */

.landing {
    user-select: none;
}

.landing .article1 {
    width: 100%;
    height: 100vh;
    background-color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@keyframes translation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

.landing .article1 svg {
	position: absolute;
	bottom: 20px;
	fill: #FFFFFF;
	animation: translation 3s ease-in-out infinite;
}

.landing .article1 .navBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: white;
    padding: 25px;
    position: fixed;
    background-color: var(--dark-blue);
    z-index: 100;
    opacity: 1;
    transition: all 0.5s ease;
}

.landing .article1 .navBar.scrolled {
    padding: 10px;
    opacity: 0.9;
}

.landing .article1 .navBar .logo img {
    width: 125px;
    margin-left: 25px;
    transition: width 0.5s ease;
}

.landing .article1 .navBar.scrolled .logo img {
    width: 75px;
}

.landing .article1 .navBar .shortcuts {
    display: flex;
    gap: 35px;
    margin-right: 25px;
}

.landing .article1 .navBar .shortcuts span {
    cursor: pointer;
    position: relative;
    padding: 10px;
}

.landing .article1 .navBar .shortcuts span {
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.landing .article1 .navBar .shortcuts span::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--dark-pink);
  opacity: 0;
  transform: translateY(-4px);
  transition:  opacity 0.25s ease, transform 0.25s ease;
}

.landing .article1 .navBar .shortcuts span:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.landing .article1 .middle {
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.landing .article1 .middle h1 {
    font-size: 64px;
    color: var(--dark-pink);
    margin: 0;
}
.landing .article1 .middle .description {
    font-size: 24px;
    color: white;
    margin: 0;
}

.landing .article1 .middle .button {
    font-family: Arial;
    font-weight: 600;
    color: white;
    background-color: var(--dark-pink);
    padding: 20px;
    border-radius: 36px;
    cursor: pointer;
    margin-top: 25px;
}

.landing .article1 .middle .button:hover {
    background-color: #ce225b;
}

.landing .article7 {
	padding: 100px 100px 100px 100px;
	background-color: var(--blue);	
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.landing .article7 h1 {
    font-size: 42px;
    text-align: center;
    margin: 0;	
    color: white;
}

.landing .article7 .texts {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	color: white;
	font-size: 20px;
	font-family: "Arial";
	max-width: 700px;
}

.landing .article2 {
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: var(--white);
}

.landing .article2 h1 {
    font-size: 42px;
    text-align: center;
    margin: 0;
}

.landing .article2 .options {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.landing .article2 .options .option {
    display: flex;
    flex-direction: column;
    position:  relative;
    cursor: pointer;
}

.landing .article2 .options .option img {
    width: 400px;
}

.landing .article2 .options .option .banner {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    color: white;
    font-size: 28px;
    transition: all 250ms ease-in-out;
    height: 75px;
}

.landing .article2 .options .option:hover > .banner  {
    height: 150px;
}

.landing .article5 {
    padding: 100px 100px 50px 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: var(--dark-blue);
}

.landing .article5 h1 {
    font-size: 42px;
    text-align: center;
    margin: 0;
    color: white;
}

.landing .article5 .toggle-button {
    position: relative;
    display: flex;
    align-self: center;
    background-color: #E2E8F0;
    width: 150px;
    height: 45px;
    border-radius: 36px;
    padding: 5px;
    cursor: pointer;
}

.landing .article5 .toggle-button.active .circle {
    left: calc(100% - 45px - 5px);
}

.landing .article5 .toggle-button .circle {
    position: absolute;
    background-color: white;
    width: 45px;
    height: 45px;
    border-radius: 64px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    transition: left 0.3s ease;
    left: 5px;
}

.landing .article5 .choice {
    align-self: center;
    display: flex;
    gap: 50px;
}

.landing .article5 .choice span {
    font-size: 36px;
    color: var(--dark-pink);
}

.landing .article5 .choice .company {
    opacity: 0.5;
}

.landing .article5 .steps {
    display: flex;
    flex-direction: column;
}

.landing .article5 .steps .step {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.landing .article5 .steps .company-step {
    display: none;
}

.landing .article5 .steps .step .number {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100px;
    height: 100px;
    font-size: 40px;
    border-radius: 64px;
}

.landing .article5 .steps .step .text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
}

.landing .article5 .steps .step .text .title {
    color: var(--dark-pink);
    font-size: 36px;
}

.landing .article5 .steps .step .text .subtitle {
    color: white;
    font-size: 18px;
    font-family: Arial;
    font-weight: 600;
}

.landing .article5 .steps .step img {
    width: 350px;
}

.landing .article5 h1 {
    font-size: 42px;
    text-align: center;
    margin: 0;
}

.landing .line {
    display: flex;
    justify-content: center;
    background-color: var(--dark-blue);
    padding-bottom: 100px;
}

.landing .line .button {
    font-family: Arial;
    font-weight: 600;
    color: white;
    background-color: var(--dark-pink);
    padding: 20px;
    border-radius: 36px;
    cursor: pointer;
}

.landing .line .button:hover {
    background-color: #ce225b;
}

.landing .article6 {
    padding: 35px 100px 35px 100px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.landing .article6 img {
    width: 250px;
}

.landing .article6 .text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.landing .article6 .text .title {
    font-size: 28px;
    font-style: italic;
}

.landing .article6 .text .subtitle {
    font-size: 18px;
    font-family: Arial;
}

.landing .article6 .text .subtitle a {
    color: var(--blue);
    border-color: var(--blue);
    font-weight: bold;   
}

.landing .article3 {
    display: flex;
    align-items: center;
    background-color: var(--dark-blue);
    padding: 100px;
    gap: 200px;
}

.landing .article3 .left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.landing .article3 .left .title {
    color: var(--dark-pink);
    font-size: 36px;
}

.landing .article3 .left .subtitle {
    color: white;
    font-size: 18px;
    font-family: Arial;
    font-weight: 600;    
}

.landing .article3 .right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.landing .article3 .right input {
    border: none;
    outline: none;
    padding: 20px;
    width: 75%;
    border-radius: 8px;
    font-size: 16px;
}

.landing .article3 .right .button {
    background-color: var(--dark-pink);
    color: white;
    padding: 20px;
    border-radius: 36px;
    width: min-content; 
    cursor: pointer; 
    font-family: Arial;
    font-weight: 600;
}

.landing .article3 .right .button:hover {
    background-color: #ce225b;
}

.landing .article4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 100px;
    background-color: var(--white);
}

.landing .article4 h1 {
    font-size: 42px;
    text-align: center;
    margin: 0;
}

.landing .article4 form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 500px;
}

.landing .article4 form input, textarea {
    font-family: "Arial";
    border: none;
    outline: none;
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0px 0px 1px 1px rgb(203, 203, 203);
}

.landing .article4 form .button {
    font-family: Arial;
    font-weight: 600;
    color: white;
    background-color: var(--dark-pink);
    padding: 20px;
    border-radius: 36px;
    cursor: pointer; 
    width: min-content;
    align-self: center;
}

.landing .article4 form .button:hover {
    background-color: #ce225b;
}

/* error */

.error {
	background-color: var(--blue);
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 25px;
}

.error .code {
	font-size: 150px;
	color: white;
}

.error .message {
	font-size: 28px;
	color: white;
}

.error .logo {
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 25px;
	margin-left: 25px;
	width: 125px;
}

.error .button {
    font-family: Arial;
    font-weight: 600;
    color: white;
    background-color: var(--dark-pink);
    padding: 20px;
    border-radius: 36px;
    text-decoration: none;
}

.error .button:hover {
    background-color: #ce225b;
}

/* soon */

.soon {
	background-color: var(--blue);
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 25px;
}

.soon .title {
	font-size: 80px;
	color: white;
}

.soon .logo {
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 25px;
	margin-left: 25px;
	width: 125px;
}

.soon .button {
    font-family: Arial;
    font-weight: 600;
    color: white;
    background-color: var(--dark-pink);
    padding: 20px;
    border-radius: 36px;
    text-decoration: none;
}

.soon .button:hover {
    background-color: #ce225b;
}