@charset "utf-8";
/* CSS Document */
:root {
    --color_blue: #6ca1e8;
    --color_dark_blue: #050a16;
    --color_text: #c1c8d8;
    --color_dark: #01050d;
}

@font-face {
    font-family: verela;
    src: url("../fonts/VarelaRound-Regular.ttf");
    font-display: swap;
}

html {
    height: 100%;
}

body {
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: normal;
    width: 100%;
    font-family: verela, serif;
    overflow-x: hidden;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

* {
    box-sizing: border-box;
}

a {
    cursor: pointer;
}

p, a, h1, h2, h3, h4 {
    color: var(--color_text);
    text-align: center;
    text-decoration: none;
}

form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

input, textarea {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-family: verela, serif;
    font-size: 1em;
}

textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 0;
}

button {
    border: none;
    font-family: verela, serif;
}

main {
    flex: 1 1 auto;
    /*background-color: var(--color_bg_gray);*/
    background-color: var(--color_dark_blue);
}

.btn {
    background-color: transparent;
    border: 2px solid var(--color_text);
    color: white;
    margin: 20px auto;
    display: block;
    font-weight: bold;
    padding: 8px 16px;
    cursor: pointer;
    transition: .3s;
    font-size: 1.5em;
    text-shadow: 2px 2px 8px var(--color_dark_blue)
}
.line{
    height: 1px;
    width: 100%;
    background-color: var(--color_blue);
    margin-top: 80px;
}
.btn:hover {
    /*color: var(--color_blue);*/
    border: 2px solid var(--color_blue);
    background-color: var(--color_blue);
    text-shadow: unset;
}

.link {
    color: var(--color_blue);
}

/* ACCESSIBILITY */

.whatsapp_btn {
    position: fixed;
    height: 54px;
    width: 54px;
    right: 5px;
    bottom: 5px;
    z-index: 10;
}

.whatsapp_btn img {
    height: 54px;
    width: 54px;
}

.accessibility_btn {
    height: 44px;
    width: 44px;
    border-radius: 25px;
    position: fixed;
    background-color: var(--color_text);
    left: 10px;
    bottom: 10px;
    cursor: pointer;
    z-index: 50;
    fill: var(--color_dark_blue);
    transition: 0.2s;
    padding: 10px;
}

.accessibility_btn img, .accessibility_open div img {
    width: 24px;
    height: 24px;
    margin: 10px;
}

.accessibility_btn:hover {
    background-color: var(--color_blue);
}

.accessibility_open {
    width: 44px;
    position: fixed;
    left: 10px;
    bottom: 60px;
    z-index: 500;
    display: none;
    border-radius: 22px;
}

.accessibility_open button {
    height: 44px;
    width: 44px;
    padding: 10px;
    fill: var(--color_dark_blue);
    cursor: pointer;
    border-radius: 22px;
    background-color: var(--color_text);
    margin: 2px 0;
    transition: 0.2s;
}

.accessibility_open button:hover {
    background-color: var(--color_blue);
}

.show_accessibility {
    display: block;
    text-transform: none;
    transition: .4s ease-in-out;
}

/*.accessibility_container {*/
/*    padding: 20px;*/
/*    width: calc(100% - 40px);*/
/*    margin: 10px auto 20px;*/
/*    max-width: 992px;*/
/*}*/

/*.accessibility_container ul {*/
/*    list-style-type: disc;*/
/*    padding-right: 20px;*/
/*    color: var(--color_gray_text);*/
/*    line-height: normal;*/
/*    font-size: 0.8em;*/
/*    font-weight: normal;*/
/*    margin-top: 15px;*/
/*}*/

/*.accessibility_container h3 {*/
/*    width: 100%;*/
/*    margin: auto;*/
/*    text-align: right;*/
/*}*/

/*.accessibility_container a {*/
/*    color: var(--color_green);*/
/*}*/

/* END ACCESSIBILITY */


/* FOOTER */

footer {
    border-top: 1px solid var(--color_blue);
    background-color: var(--color_dark);
}

.powered {
    /*direction: rtl;*/
    color: var(--color_text);
    display: block;
    margin: 0 auto 20px;
    transition: .3s;
    font-size: .8em;
}

.powered:hover {
    color: var(--color_blue);
    text-decoration: underline;
}

.container_contact {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 768px;
    margin: 30px auto;
}

.container_contact a {
    margin: 15px 0;
}

.container_contact a:hover {
    color: var(--color_blue);
    transition: .3s;
}

.container_contact svg {
    width: 20px;
    height: 20px;
    fill: var(--color_text);
    vertical-align: sub;
    margin-right: 10px;
}

.container_contact a:hover svg {
    fill: var(--color_blue);
    transition: .3s;
}

/* END FOOTER */


/* INDEX */
.main_cover {
    width: 100%;
    position: relative;
}

.cover_img__desk {
    display: none;
}

.main_cover_content {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main_cover_content h1 {
    font-weight: bold;
    margin-bottom: 0;
    font-size: 5.5vw;
    color: white;
    text-shadow: 2px 2px 8px var(--color_dark_blue);
    margin-top: 100px;
    transition: .3s;
}

.main_cover_image img {
    width: 100%;
}

.container_content {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: auto;
    padding: 50px 0;
}

.container_team {
    display: flex;
    flex-wrap: wrap;
}

.container_team__item {
    width: 100%;
    height: 60vw;
    overflow: hidden;
    transition: .3s;
    position: relative;
}

.container_team__hover {
    position: absolute;
    top: 0;
    left: -450px;
    /*left: 0;*/
    background-color: #6ca1e8d6;
    width: 100%;
    height: 100%;
    transition: .3s;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container_team__item img {
    object-fit: cover;
    /*height: inherit;*/
    /*width: -moz-available;*/
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 100%;

}

.container_team__item:hover img {
    transform: scale(1.2);
    transition: .3s;
}

.container_team__item:hover div {
    left: 0;
}

.container_team__name {
    color: white;
    font-size: 1.2em;
    font-weight: bold;
}

.container_team__role {
    color: white;
}

.container_services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.container_services__item {
    width: 100%;
    /*height: 12vw;*/
    margin-bottom: 30px;
    overflow: hidden;
    transition: .3s;
    position: relative;
    padding: 16px;
    background-color: white;
}

.container_services__item .title {
    font-weight: bold;
    font-size: 1.1em;
}

.container_services__item img {
    height: 100px;
    width: 100px;
    margin: 0 auto 0;
    display: block;
}

.container_services__item p {
    color: var(--color_dark_blue);
}

.container.fixed {
    background-image: url("../images/fixed.png");

    /*!* Set a specific height *!*/
    /*min-height: 500px;*/

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#scroll_down {
    margin-top: 10px;
    height: 50px;
    /*background-color: #00e5b8;*/
    animation-name: scroll_arrow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    display: none;
}

#scroll_down svg {
    height: 24px;
    width: 24px;
    fill: white;
    margin: auto;
    display: block;
    transition: .3s;
    /*animation-name: scroll_arrow;*/
    /*animation-duration: 1s;*/
    /*animation-iteration-count: infinite;*/
}

@keyframes scroll_arrow {
    from {
        padding-top: 0
    }
    to {
        padding-top: 30px
    }
}

/* END INDEX */


/* ABOUT */
.container_about {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.container_about__img, .container_about__content {
    width: 100%;
}
/*.container_about__content p{*/
/*    text-align: left;*/
/*    padding-left: 20px;*/
/*}*/
.container_about__img img{
    width: 100%;
    max-width: 280px;
    display: block;
    margin: 16px auto 0;
}

/* END ABOUT */



/* GRATITUDE */
.gratitude_box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 300px;
    width: 100%;

}
.gratitude_box svg{
    fill: var(--color_text);
    height: 48px;
    width: 48px;
    display: block;
    margin: 0 auto;
}
.gratitude{

}
/* END GRATITUDE */


@media (min-width: 480px) {
}

@media (min-width: 600px) {
    .container_services__item {
        width: 48%;
    }

    .container_team__item {
        width: 50%;
        height: 30vw;
    }

    .cover_img__desk {
        display: block;
    }

    .cover_img__mob {
        display: none;
    }

    .main_cover_content h1 {
        font-size: 4vw;
    }
}

@media (min-width: 768px) {
    .container_services__item {
        width: 31%;
    }

    .container_team__item {
        width: 25%;
        height: 15vw;
    }

    .btn {
        padding: 16px 32px;
    }

    input {
        width: 32%;
    }

    .container_contact {
        flex-direction: row;
    }

    .container_contact a {
        margin: 0;
    }

    #scroll_down {
        display: block;
    }
    .line{
        margin-top: 100px;
    }
    /*.container_about__img {*/
    /*    width: 40%;*/
    /*}*/
    /*.container_about__content{*/
    /*    width: 60%;*/
    /*}*/
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {
}
