body {
    margin: 0;
    padding: 0;
    min-width: 350px;
}

.spec-div {
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
}

.spec {
    background-color: rgb(0, 168, 255, 0.150);
    padding: 5px 16px;
    border-radius: 50px;
    color: #0097e6;
    margin-left: 55px;
}

.heroes {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.heroes img {
    width: 140px;
    height: 140px;
    margin: 0;
    margin-bottom: 10px;
}

.heroes h1 {
    font-family: "Recursive", sans-serif;
    font-size: 48px;
    margin: 0;
    margin-bottom: 10px;
}

.heroes h3 {
    font-family: "Inter", sans-serif;
    font-size: 36px;
    color: #2f3640ce;
    text-align: center;
    margin: 0;
    margin-bottom: 35px;
    font-weight: 500;
}

.colored {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #00a8ff, #0097e6 50%, #487eb0 100%);
}

.heroes-btn {
    display: flex;
    flex-direction: row;
    gap: 30px; 
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.heroes-offer-div {
    /* display: flex; */
    align-items: center;
}

.heroes-offer {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    font-size: 22px;
    color: black;
    background-color: #00a8ff;
    padding: 10px 20px;
    border-radius: 50px;
}

.big-harrow {
    height: 17px;
}

.heroes-contact-div {
    display: flex;
    align-items: center;
}

.heroes-contact {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    font-size: 22px;
    color: black;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid black;
}

/* CONTENT AREA PLS DO NOT MODIFY THE FOLLOWING CODE */
/* CONTENT AREA PLS DO NOT MODIFY THE FOLLOWING CODE */
/* CONTENT AREA PLS DO NOT MODIFY THE FOLLOWING CODE */
/* CONTENT AREA PLS DO NOT MODIFY THE FOLLOWING CODE */

.content {
    height: auto;
    /* background-image: linear-gradient(#99a1b333, #f6f7f9 50%, #ffffff 100% ); */
    background-image: conic-gradient(from 90deg at -10% 100%, #bcc1cd 0deg, #bcc1cd 90deg, #fff 1turn);
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    margin-bottom: 30px;
}

.title-content {
    font-size: 48px;
    font-weight: 600;
    color: #192a56;
    margin-left: 55px;
    padding-top: 30px;
}

.p-content {
    color: #402f39ce;
    padding: 0px 55px;
    font-size: 20px;
}

.div-content {
    margin: 55px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 90%;
}

.automation {
    background-color: #fff;
    /* height: 100%; */
    width: 40%;
    border-radius: 28px;
    box-shadow:  17px 17px 53px #bcbcbc,
             -17px -17px 53px #ffffff;
    font-family: "Inter", sans-serif;
    padding: 10px;
}

.green {
    color: #44bd32;
}

.red {
    color: #EA2027;
}

.automation h2 {
    font-size: 25px;
}

.div-content-automation {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.div-content-automation p {
    font-size: 20px;
}

.automation > p {
    text-align: center;
}

.big {
    font-size: 30px;
}

.visibility {
    background-color: #fff;
    /* height: 100%; */
    width: 40%;
    border-radius: 28px;
    margin: 20px;
    box-shadow:  17px 17px 53px #bcbcbc,
             -17px -17px 53px #ffffff;
    font-family: "Inter", sans-serif;
}

.visibility h1 {
    text-align: center;
    border-bottom: black solid 1px;
}

.line {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 30px;
}

.line a {
    text-decoration: none;
    font-size: auto;
    color: #fff;
    background-color: #0071e3;
    padding: 10px 20px;
    border-radius: 50px;
    width: 110px;
    text-align: center;
}

.line .tll {
    width: 160px;
    text-align: right;
}

.line .vl {
    width: 60px;
    text-align: center;
}

/* FORM
FORM
FORM
FORM */

/* From Uiverse.io by Yaya12085 */ 
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 370px;
    max-width: 370px;
    background-color: #fff;
    padding: 20px;
    padding-right: 20px !important;
    border-radius: 20px;
    position: relative;
    box-shadow:  17px 17px 53px #bcbcbc,
             -17px -17px 53px #ffffff;
    margin: 0;
  }
  
  .title {
    font-size: 28px;
    color: royalblue;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
  }
  
  .title::before,.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: royalblue;
  }
  
  .title::before {
    width: 18px;
    height: 18px;
    background-color: royalblue;
  }
  
   .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
  }

  .message {
    text-align: center;
    font-size: 20px !important;
    color: #000 !important;
  }
  
  .message, .signin {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
  }
  
  .signin {
    text-align: center;
  }
  
  .signin a {
    color: royalblue;
  }
  
  .signin a:hover {
    text-decoration: underline royalblue;
  }
  
  .flex {
    display: flex;
    /* background-color: #000; */
    width: 100%;
    gap: 30px;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
    max-width: 352.5px;
  }
  
  .form label .input + span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 15px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,.form label .input:valid + span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .form label .input:valid + span {
    color: green;
  }
  
  .submit {
    border: none;
    outline: none;
    background-color: royalblue;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
  }
  
  .submit:hover {
    background-color: rgb(56, 90, 194);
  }

  textarea::placeholder {
    font-family: "Inter", sans-serif;
  }

  textarea {
    font-family: "Inter", sans-serif;
  }


/* FORM
FORM
FORM
FORM */



.content-2 {
    height: auto;
    /* background-image: linear-gradient(#99a1b333, #f6f7f9 50%, #ffffff 100% ); */
    background-image: conic-gradient(from 90deg at -10% 100%, #bcc1cd 0deg, #bcc1cd 90deg, #fff 1turn);
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    margin-bottom: 30px;
}

@media (max-width: 1400px) {
  /* .form {
    margin-bottom: 40px;
  } */
  .automation {
    margin-bottom: 40px;
    margin-top: 70px;
  }
  .visibility {
    margin-bottom: 90px;
    margin-top: 100px;
  }
  .visibility {
    width: 45%;
  }
  .automation {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .visibility {
    width: 60%;
  }
  .automation {
    width: 60%;
  }
}

@media (max-width: 576px) {
  .visibility {
    width: 80%;
  }
  .automation {
    width: 80%;
  }
  .heroes-btn {
    display: flex;
    flex-direction: column;
    gap: 23px; 
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
    padding-left: 15px;
  }
  .heroes-offer {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    font-size: 17px;
    color: black;
    background-color: #00a8ff;
    padding: 10px 20px;
    border-radius: 50px;
  }
  .heroes-contact {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    font-size: 17px;
    color: black;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid black;
}
  .big-harrow {
      height: 14px;
  }
}

@media (max-width: 450px) {
  .visibility {
    width: 95%;
  }
  .automation {
    width: 95%;

  }
  .title-content {
    font-size: 36px;
    margin-left: 25px;
    padding-top: 20px;
  }
  .form{
    transform: scale(0.80);
  }
}