@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');

:root {
    --ocean: #222741;
    --ocean_dark: #202942;
    --ocean_fossil: #333852;
    --stone: #6E7478;
    --light_stone: #ADB5BD;
    --sea_storm: #4AC4F3;
    --ocean_storm: #0592d3;
    --blue_snow: #EDF5FF;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth !important;
    font-family: Roboto;
}

body {

    overflow-x: hidden;
    background-color: #666666;
}

h1 {
    font-size: 36px;
}

input:focus {
    outline: none;
    box-shadow: inherit;
}

/* NAVBAR -> */

.navbar {
    font-family: 'Manrope', sans-serif;
    /* width: 100%; */
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 20px 20px;
    z-index: 999;
    border-radius: 0;
    transition: all .1s ease;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: rgba(88, 88, 88, 0.199) 0px 1px 4px;
}

.navbar .navbar-container .brand {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.navbar.scrolled .navbar-container .brand {
    color: var(--stone);
}

.navbar .navbar-container .brand img {
    width: 30px;
}

.navbar .navbar-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.navbar .navbar-container .navbar-toggler {
    display: none;
}

.navbar .navbar-container .navbar-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0;
}

.navbar .navbar-container .navbar-right ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.navbar .navbar-container .navbar-right ul li a {
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.navbar.scrolled .navbar-container .navbar-right ul li a {
    color: var(--ocean_dark);
}

.navbar .navbar-container .navbar-right ul li a.active {
    color: #4ac4f3;
    transition: .1s ease;
}

@media(max-width: 1020px) {
    .navbar .navbar-container .navbar-right ul {
        display: none;
    }

    .navbar .navbar-container .navbar-right ul li a {
        color: #232323;
    }

    .navbar .navbar-container .navbar-toggler {
        color: #fff;
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        background-color: transparent;
        font-size: 20px;
    }

    .navbar.scrolled .navbar-container .navbar-toggler {
        color: var(--ocean_dark);
    }

    .navbar .navbar-container .navbar-right .navbar-menu {
        position: fixed;
        top: 89px;
        right: 0;
        left: 0;
        padding: 20px 50px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        box-shadow: rgba(88, 88, 88, 0.199) 0px 1px 4px;
        z-index: 999;
    }
}

/* Color mode switcher */

.switcher-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.switcher-container label {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.switcher-container label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.switcher-container label .toggle {
    position: absolute;
    display: block;
    width: 35px;
    height: 35px;
    background: #e2e3e3;
    border-radius: 5px;
    z-index: -1;
}

.switcher-container label input:checked~.toggle {
    background: #1b1d23;
}

.switcher-container label .sun {
    width: 20px;
    position: absolute;
    transition: 1s ease;
}

.switcher-container label .moon {
    width: 20px;
    position: absolute;
    transition: 1s ease;
    scale: 0;
}

.switcher-container label input:checked~.sun {
    filter: invert(1) hue-rotate(180deg);
    transform: rotate(360deg) scale(1);
    scale: 0;
}

.switcher-container label input:checked~.moon {
    filter: invert(1) hue-rotate(180deg);
    transform: rotate(360deg) scale(1);
    scale: 1;
}

/* NAVBAR <- */

/* HERO -> */
.hero {
    font-family: 'Manrope', sans-serif;
    width: 100%;
}

.hero_first {
    position: relative;
    background-color: var(--ocean);
    padding: 180px 20px 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero_first__background_container {
    position: absolute;
    width: 100%;
}

.hero_first__background {
    width: 100%;
}

.hero_first__background .shape1 {
    position: absolute;
    z-index: 1;
    right: 50px;
    top: 90px;
    opacity: 30%;
}

.hero_first__background .shape2 {
    position: absolute;
    right: -300px;
    bottom: -360px;
    z-index: 1;
    opacity: 30%;
}

.hero_first__background .shape3 {
    position: absolute;
    right: 0;
    bottom: -50px;
    z-index: 1;
    opacity: 100%;
}

.hero_first__container {
    color: #fff;
    width: 100%;
    max-width: 600px;
    z-index: 3;
}

.hero_first__container h1 {
    font-size: 45px;
    font-weight: 500;
}

.hero_first__container h1 span {
    font-weight: 800;
    background: -webkit-linear-gradient(#95D7F6, #389DCF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_first__container h2 {
    font-size: 36px;
    font-weight: 500;
    margin-top: -6px;
}

.hero_first__container p {
    font-size: 16px;
    margin-top: 15px;
}

.hero__buttons {
    margin-top: 40px;
    display: flex;
    gap: 40px;
}

.hero__buttons a {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: .2s ease-in-out;
}

.hero__first_button {
    width: 140px;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__first_button:hover {
    color: var(--ocean_storm);
    border-color: var(--ocean_storm);
}

.hero__second_button {
    width: 140px;
    padding: 10px;
    background-color: #4AC4F3;
    border: 1px solid #4AC4F3;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__second_button:hover {
    background-color: var(--ocean_storm);
    border-color: var(--ocean_storm);
}

.hero_second {
    background-color: #fff;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_second__container {
    width: 100%;
    max-width: 860px;
}

.hero_second__grid {
    display: grid;
    grid-template-columns: 270px auto 270px;
}

.hero_second__item {
    text-align: center;
}

.hero_second__item h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--ocean_dark);
}

.hero_second__item p {
    font-size: 14px;
    font-weight: 400;
    color: var(--stone);
    margin-top: 18px;
}

.hero_second__img {
    height: 100px;
    position: relative;
    padding: 0 10px;
    display: flex;
    justify-content: center;
}

.hero_second__img img {
    height: 140px;
    position: absolute;
}

.hero_second__img_part1 {
    top: -120px;
    transform: translateY(-20px);
    animation: hero_section_animation1 1s forwards;
    animation-delay: .5s;
}

.hero_second__img_part2 {
    top: -30px;
    transform: translateY(20px);
    animation: hero_section_animation2 1s forwards;
    animation-delay: .5s;
}

@keyframes hero_section_animation1 {
    100% {
        transform: translateY(0);
    }
}

@keyframes hero_section_animation2 {
    100% {
        transform: translateY(0);
    }
}

.hero_second__bottom {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_second__bottom .hero_second__item {
    max-width: 270px;
}

@media(max-width: 740px) {

    .hero_second__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero_second__item {
        text-align: left;
    }

    .hero_second__item:nth-child(1) {
        order: 2;
    }

    .hero_second__item:nth-child(2) {
        order: 1;
    }

    .hero_second__bottom {
        margin-top: 30px;
    }

    .hero_second__bottom .hero_second__item {
        max-width: 100%;
    }
}

/* HERO <- */

/* ABOUT -> */

.about {
    font-family: 'Manrope', sans-serif;
}

.about_top {
    width: 100%;
    background-color: var(--blue_snow);
    padding: 70px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_top__container {
    text-align: center;
    max-width: 554px;
    width: 100%;
}

.about_top__container h1 {
    color: var(--ocean_dark);
    font-weight: 700;
}

.about_top__container p {
    font-size: 18px;
    font-weight: 400;
    color: var(--stone);
    margin-top: 20px;
}

.about_bottom {
    width: 100%;
    background-color: #fff;
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about_bottom p {
    font-size: 16px;
    font-weight: 700;
    color: var(--stone);
}

.about_bottom__container1 {
    width: 100%;
    max-width: 860px;
    display: grid;
    grid-template-columns: 270px auto 270px;
}

.about_bottom__container1_item {
    text-align: center;
}

.about_bottom__container1_img {
    height: 100px;
    position: relative;
    padding: 0 10px;
    display: flex;
    justify-content: center;
}

.about_bottom__container1_img img {
    position: absolute;
    height: 232px;
    top: -100px;
}

.about_bottom__container2 {
    margin-top: 40px;
    width: 100%;
    max-width: 513px;
    display: flex;
    justify-content: space-between;
}

.about_bottom__container2_item {
    width: 160px;
    text-align: center;
}

@media(max-width: 740px) {

    .about p {
        text-align: left;
    }

    .about_top {
        justify-content: start;
    }

    .about_top__container {
        text-align: left;
    }

    .about_bottom__container1 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about_bottom__container1_img {
        margin-bottom: 40px;
    }

    .about_bottom__container1_item:nth-child(1) {
        order: 2;
    }

    .about_bottom__container1_item:nth-child(2) {
        order: 1;
    }

    .about_bottom__container2 {
        max-width: 100%;
        margin-top: 30px;
        flex-direction: column;
        gap: 30px;
    }

    .about_bottom__container2_item {
        width: 100%;
    }
}

/* ABOUT <- */

/* USECASES -> */

.usecases {
    font-family: 'Manrope', sans-serif;
    width: 100%;
    background-color: var(--ocean);
    padding: 70px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.usecases_container {
    width: 100%;
    max-width: 917px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.usecases_container h1 {
    color: #fff;
    font-weight: 700;
}

.usecases_content {
    width: 100%;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 120px;
}

.usecase_item {
    color: #fff;
    display: flex;
}

.usecase_item h2 {
    font-size: 24px;
    font-weight: 600;
}

.usecase_item__icon {
    padding-right: 24px;
}

.usecase_item__icon img {
    width: 50px;
}

.usecase_item p {
    font-size: 14px;
    font-weight: 400;
    margin-top: 14px;
}

@media(max-width: 740px) {
    .usecases_container {
        align-items: start;
    }

    .usecases_content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* USECASES <- */

/* TECHNOLOGY -> */

.technology {
    font-family: 'Manrope', sans-serif;
    width: 100%;
    background-color: var(--blue_snow);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.technology_container {
    width: 100%;
    max-width: 917px;
}

.technology_container h1 {
    font-weight: 700;
    color: var(--ocean_dark);
    text-align: center;
}

.technology_container h1 span {
    background: -webkit-linear-gradient(#95D7F6, #389DCF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.technology_content {
    margin-block-start: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 27px 59px;
}

.tecnology_content__item {
    font-family: Roboto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.tecnology_content__item h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ocean_dark);
}

.tecnology_content__item p {
    font-size: 14px;
    font-weight: 400;
    color: var(--stone);
    margin-top: 13px;
}

@media(max-width: 740px) {

    .technology_container h1 {
        text-align: left;
    }

    .technology_content {
        grid-template-columns: 1fr
    }
}

/* TECHNOLOGY <- */

/* FORM SECTION -> */

.questions {
    font-family: 'Manrope', sans-serif;
    width: 100%;
    padding: 40px 20px;
    background-color: var(--blue_snow);
    display: flex;
    justify-content: center;
    align-items: center;
}

.questions_container {
    width: 100%;
    max-width: 570px;
    text-align: center;
}

.questions_container h1 {
    font-size: 34px;
    font-weight: 700;
    color: var(--ocean_dark);
}

.questions_container p {
    font-size: 16px;
    font-weight: 400;
    color: var(--stone);
    margin-top: 5px;
}

.questions_form {
    margin-top: 50px;
    margin-bottom: 20px;
}

.questions_form__header {
    height: 110px;
}

.questions_question {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: var(--stone) !important;
}

.questions_description {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--stone) !important;
}

.questions_answer {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.questions_answer input {
    color: var(--stone);
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    outline: none;
    border: 1px dashed rgba(71, 71, 71, 0.4);
}

.questions_answer input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #adb5bd;
}

.questions_answer input::-moz-placeholder {
    /* Firefox 19+ */
    color: #adb5bd;
}

.footer_top__item4 form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #adb5bd;
}

.answer_submission {
    width: fit-content;
}

.answer_submit,
.answers_send {
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 10px 30px;
    background-color: var(--sea_storm);
    outline: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.answer_submit:hover,
.answers_send:hover {
    background-color: var(--ocean_storm);
}

.questions_switch {
    width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5px;
    /* background-color: red; */
}

.questions_switch button {
    font-size: 26px;
    color: var(--stone);
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.questions_switch button:disabled {
    color: var(--stone);
    opacity: 50%;
}

.question_switch__border {
    width: 1px;
    height: 20px;
    background-color: var(--stone) !important;
}

.questions_popup {
    width: 100%;
    background-color: #fff;
    margin-top: 50px;
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: 3px 4px 7px 0px rgba(34, 39, 65, 0.20);
}

.questions_popup__status {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--sea_storm) !important;
}

.questions_popup__message {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--stone) !important;
    margin-top: 15px !important;
}

@media(max-width: 420px) {
    .questions_container {
        text-align: left;
    }

    .questions_answer {
        flex-direction: column;
    }

    .answer_submission,
    .answer_submit,
    .answers_send {
        width: 100%;
    }
}

@media(max-width: 380px) {
    .questions_form__header {
        height: 130px;
    }
}

/* FORM SECTION <- */

/* FOOTER -> */

.footer {
    font-family: 'Manrope', sans-serif;
    width: 100%;
    padding: 0 20px;
    background-color: var(--ocean);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_container {
    width: 100%;
    max-width: 1280px;
}

.footer_top {
    display: grid;
    grid-template-columns: 290px 290px 290px auto;
    padding: 50px 0 30px 0;
}

.footer_top__item1 {
    display: flex;
    flex-direction: column;
    gap: 58px;
    padding-right: 40px;
    border-right: 1px solid var(--ocean_fossil);
}

.footer_top__item1 p {
    font-size: 15px;
    font-weight: 400;
    color: var(--light_stone);
}

.footer_brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_brand a {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.footer_brand img {
    height: 48px;
}

.footer_top__item2 {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-right: 40px;
    padding-left: 40px;
    border-right: 1px solid var(--ocean_fossil);
}

.footer_top__item2 h3 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.footer_top__item2 h3 span {
    font-weight: 700;
}

.footer_top__item2 a {
    font-size: 15px;
    font-weight: 600;
    color: var(--sea_storm);
    text-decoration: none;
    width: fit-content;
}

.footer_top__item3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 40px;
    padding-left: 40px;
}

.footer_top__item3 h3 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.footer_top__item3 ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer_top__item3 ul li {
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_top__item3 ul li p {
    font-weight: 400;
}

.footer_top__item3 ul li a {
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

.footer_top__item4 {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.footer_top__item4 h3 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.footer_top__item4 form {
    width: 100%;
    background: #283353;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    margin: 50px 0 20px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_top__item4 form input {
    background: #283353;
    color: #ffffff;
    border: none;
    outline: none;
    font-size: 14px;
}

.footer_top__item4 form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #adb5bd;
}

.footer_top__item4 form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #adb5bd;
}

.footer_top__item4 form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #adb5bd;
}

.footer_top__item4 form button {
    font-size: 25px;
    color: var(--sea_storm);
    background-color: transparent;
    border: none;
    padding-left: 15px;
    border-left: 1px solid var(--stone);
    cursor: pointer;
}

.footer_top__item4 #newsletter-response {
    display: none;
}

.footer_top__item4 #newsletter-response p {
    font-size: 14px;
    margin: 0;
    right: 15px;
    color: var(--sea_storm);
}

.newsletter-response-show {
    display: block !important;
}

.footer_bottom {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--ocean_fossil);
    align-items: center;
}

.footer_bottom__item1 p {
    font-size: 14px;
    font-weight: 400;
    color: var(--light_stone);
}

.footer_bottom__item1 p a {
    font-weight: 800;
    color: var(--sea_storm);
    text-decoration: none;
}

.footer_bottom__item2 {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 20px;
}

.footer_bottom__item2 h3 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.footer_bottom__item2 ul {
    display: flex;
    gap: 14px;
    list-style: none;
}

.footer_bottom__item2 ul li a img {
    height: 16px;
}

@media(max-width: 1200px) {
    .footer_top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer_top__item1 {
        gap: 20px;
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
    }

    .footer_top__item2 {
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
    }

    .footer_top__item3 {
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .footer_top__item4 {
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 20px;
        align-items: start;
    }

    .footer_top__item4 form {
        margin-top: 0;
        width: 100%;
        max-width: 380px;
    }
}

@media(max-width: 620px) {
    .footer_top {
        grid-template-columns: 1fr;
    }

    .footer_top__item1 {
        border-bottom: 1px solid var(--ocean_fossil);
    }

    .footer_top__item2 {
        border-bottom: 1px solid var(--ocean_fossil);
    }

    .footer_bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer_bottom__item1 {
        order: 2;
    }

    .footer_bottom__item1 p {
        text-align: center;
    }

    .footer_bottom__item2 {
        order: 1;
        align-items: center;
    }
}

/* FOOTER <- */

/* SCROLL TO TOP -> */

#scrollToTopBtn {
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 26px;
    border: none;
    outline: none;
    background: rgb(149, 215, 246);
    background: linear-gradient(180deg, rgba(149, 215, 246, 1) 0%, rgba(56, 157, 207, 1) 100%);
    color: white;
    cursor: pointer;
    border-radius: 5px;
    scroll-behavior: smooth;
}

#scrollToTopBtn:hover {
    background-color: #555;
}

/* SCROLL TO TOP <- */