@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
    color: #000;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    background-color: #4370A7;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    transition: box-shadow 0.3s ease;
}

.btn:hover {
    box-shadow: 0px 4px 7px 0 #8080808f;
}

h3 {
    color: #4370A7;
    font-size: 25px;
    margin-bottom: 100px;
}

h4 {
    color: #5B5959;
    font-size: 23px;
    margin: 0;
}

h2 {
    color: #4370A7;
    font-size: 28px;
}

.bold {
    font-weight: 700;
}

/* HEADER */

header {
    position: fixed;
    background-color: #fff;
    box-shadow: 0px -2px 15px 0 #808080a3;
    padding: 5px 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

header a {
    color: #4370A7;
    transition: font-weight 0.3s ease;
}
header a:hover{
    font-weight: 700;
}

.logo {
    width: 11%;
}

.menu {
    width: 35%;
}

/* MAIN */

main {
    position: relative;
}

video {
    width: 100%;
}

.title {
    position: absolute;
    top: 250px;
    z-index: 2;
    color: #fff;
    width: 35%;
    left: 100px;
}

.title h1 {
    font-size: 45px;
}

.title p {
    font-size: 30px;
}

.block {
    background-color: #FDFDFD;
    border-radius: 40px 40px 0 0;
    position: absolute;
    top: 800px;
    width: 100%;
}

section {
    margin-top: 100px;
}

/* SECTION-PRODUCT */

.card-product {
    width: 300px;
    background-color: #fff;
    box-shadow: 2px 7px 8px 0 #80808045;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 350px;
}

.card-logo{
    width: 80%;
    display: flex;
    align-items: center;
}

.card-logo, .card-desc {
    flex: 1;
}

.card-desc{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.name {
    color: #4370A7;
    font-size: 18px;
}

.section-product .more{
    margin-top: 50px;
}

/* SECTION-PARTNERS */

.section-partners .row{
   width: 47%;
}

.partner-logo{
    width: 15%;
}

.section-partners h3{
    margin: 0 20px 0 0;
}

.partner-row{
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

/* SECTION-TEAM */

.section-team h3 {
    margin-bottom: 150px;
}

.card-team {
    position: relative;
}

.card-team-body {
    background-color: #4370A7;
    border-radius: 20px;
    padding: 10px 20px;
    width: 200px;
    color: #fff;
    box-shadow: 1px 3px 7px 0 gray;
    height: 190px;
}

.member {
    font-weight: 700;
}

.card-team-img {
    width: 45%;
    overflow: hidden;
    position: absolute;
    top: -85px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.card-team-img img {
    border-radius: 100%;
    box-shadow: 0px 0 3px 0 #8080804d;
}

/* SECTION-INSTRUMENT */

.slider {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 20px 0;
}

.slides {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.slides img {
    width: 20%;
    height: 100px;
    margin-right: 10px;
    border-radius: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slides::after {
    content: '';
    display: flex;
}

/* SECTION-CONTACTS */

iframe {
    width: 100%;
}

/* SECTION-FORM */

.box-form {
    width: 45%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 1px 3px 7px 0 gray;
    border-radius: 20px;
    padding: 20px 100px;
    text-align: center;
}

form {
    margin-top: 50px;
}

form .btn {
    font-size: 18px;
    margin-bottom: 20px;
}

.box-form input,
.box-form select {
    padding: 10px 15px;
    border: 2px solid #4370A7;
    background-color: #fff;
    border-radius: 5px;
    font-size: 18px;
    width: 40%;
    margin: 10px 0;
}

.box-form select {
    width: 100%;
}

/* FOOTER */

footer {
    background-color: #4370A7;
    color: #fff;
    margin-top: 100px;
    padding: 50px;
}

footer .logo {
    width: 20%;
}

footer .right .row {
    align-items: flex-start;
}

.row-logo{
    justify-content: flex-start;
    margin-bottom: 10px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    margin: 0 0 10px 0;
}

.linkedin{
    margin-left: 20px;
}

.linkedin i{
    font-size: 35px;
    color: #fff;
}

.footer-menu a {
    color: #fff;
    margin: 0 0 10px 20px;
}

/* INDEX 2 */

.modus {
    padding-top: 100px;
}

.modus-img {
    width: 75%;
    margin: auto;
}

.card-poject {
    box-shadow: 0px 0 3px 0 #8080804d;
    border-radius: 5px;
    padding: 10px 20px;
    background-color: #fff;
    margin: 50px 0;
    position: relative;
}

.card-poject h3 {
    margin-bottom: 20px;
}

.card-project-logo {
    position: absolute;
    top: 0;
    width: 7%;
    right: 0;
    padding: 10px;
}

.card-project-logo-big{
    width: 12%;
}

ul{
    padding-left: 15px;
}

@media screen and (max-width: 1920px) {
    header {
        height: 85px;
    }
}

@media screen and (max-width: 1550px) {
    .card-product {
        width: 260px;
    }
}

@media screen and (max-width: 1440px) {
    .card-team {
        margin-bottom: 100px;
    }
    .section-partners .row {
        width: 55%;
    }
}

@media screen and (max-width: 1280px) {
    .logo {
        width: 15%;
    }

    .title {
        width: 50%;
    }

    section {
        margin-top: 40px;
    }

    .card-product {
        margin-bottom: 50px;
    }
    .section-partners .row {
        width: 65%;
    }
}

@media screen and (max-width: 1024px) {
    section {
        margin-top: 0;
    }

    .title {
        top: 170px;
    }

    .title h1 {
        font-size: 35px;
    }

    .title p {
        font-size: 25px;
    }

    .block {
        top: 600px;
    }

    p {
        font-size: 16px;
    }

    .box-form {
        width: 60%;
        margin-top: 50px;
    }
    .section-partners{
        margin-top: 50px;
    }
    .section-partners .row {
        width: 75%;
    }
    .card-product {
        width: 380px;
    }
}

@media screen and (max-width: 680px) {
    p {
        font-size: 14px;
    }

    ul li {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    p {
        font-size: 12px;
    }

    ul li {
        font-size: 12px;
    }

    h3 {
        font-size: 30px;
    }
}

@media screen and (max-width: 380px) {
    .card-product {
        width: 360px;
    }
}