@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

@media (max-width: 734px) {
    .elenavbar {
        display: none;
    }
    section.materials h4.title{
        font-size: 35px !important;
    }
    section.materials p.title{
        font-size: 25px !important;
    }
    section.materials p.description{
        font-size: 20px !important;
    }
    section.materials .container .img1 {
        max-height: 200px; 
    } 
    section.software .containersoftware h4{
        font-size: 25px !important;
    }
    section.place h4.place{
        font-size: 30px !important;
    }
    section.place p.place{
        font-size: 25px !important;
    }
    section.home h1{
        font-size: 40px !important;
    }
    section.realization h4{
        font-size: 40px !important;
    }
    section.contact h4{
        font-size: 20px !important;
    }
    section.contact .telcont a{
        font-size: 13px !important;
    }
    section.place iframe{
      height: 400px;
    }
}
@media (min-width: 1068px) {
    section.materials h4.title{
        font-size: 64px !important;
    }
    section.materials p.title{
        font-size: 55px !important;
    }
    section.materials p.description{
        font-size: 50px !important;
    }
    section.place h4.place{
        font-size: 64px !important;
    }
    section.place p.place{
        font-size: 50px !important;
    }
    section.home h1{
        font-size: 74px !important;
    }
    section.realization h4{
        font-size: 74px !important;
    }
    section.contact h4{
        font-size: 50px !important;
    }
    section.place iframe{
      height: 700px;
    }
    section.software .containersoftware h4{
        font-size: 60px !important;
    }
}


:root{
    font-family: 'Roboto', sans-serif; 
    --main-color: white;
    --secondary-color: #0b105f;
    --text-main-color: #151fb9;
    --text-secoundary-color: rgba(17, 25, 147,0.9);
}
html, body {
    padding:0;
    margin:0;
    overflow-x: hidden;
    background-color: var(--main-color);
}
html{
    scroll-behavior: smooth;  
}


nav.navbar{
    z-index: 1;
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    height:60px;
    background-color: var(--main-color);
    box-shadow: 0px 2px rgba(19, 28, 171, 0.5);
}
.start{
    padding-left: 0px;
    display: flex;
    justify-content: end;
    align-items: center;
    width: 160px;
}
.logo{
    width: 150px;
}
.middle{
    flex-grow: 1;
    flex-shrink: 1;
}
.end{
    display: flex;
    align-items: center;
    padding-right: 20px;
}
ul.link{
    display: flex;
    align-items: center;
}
.navbar li{
    align-content: center;
    list-style: none;
    padding-left: 10px;
}
.navbar a{
    color: var(--text-main-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fa-house, .fa-phone{
    color: var(--text-main-color);
    padding-right: 8px;
}
.navbarnotfixed{
    height: 60px;
    opacity: 0;
}

section.home{
    height: 40vh;
    display: flex;
    justify-content: center;
}
section.home h1{
    color: var(--secondary-color);
    font-size: 60px;
    text-align: center;
    align-self: center;
}
section.home .containerimg{
    padding-left: 15px;
}
section.home .containerimg img{
    width: 12%;
    position: absolute;
    right: 0;
}


section.materials{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
section.materials h4.title {
    font-size: 50px;
    color: var(--secondary-color);
    margin: 0px;
    font-weight: 700;
    text-align: center;
}
section.materials p.title{
    font-size: 30px;
    color: var(--text-secoundary-color);
    margin: 0px;
    font-weight: 600;
    text-align: center;
}
section.materials .title.hidden{
    opacity: 0;
    transform: scale(110%);
    transition: all 1s;
}
section.materials .title.show{
    opacity: 1;
    transform: scale(100%);
    transition: all 1s;
}
section.materials .img{
    margin: 0;
}
section.materials .container {
    padding-top: 50px;
    justify-content: center;
    align-content: center;
    width: 90%; 
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3%;
    overflow: hidden;
}
section.materials .container .img1 {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    grid-column: 1 / 3; 
    grid-row: 1 / 2; 
}
section.materials .container .img2{
    width: 100%; 
    height: auto; 
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
section.materials .container .img3{
    width: 100%; 
    height: auto; 
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
section.materials .container .hidden{
    opacity: 0;
    filter: blur(5px);
    transform: scale(110%);
    transition: all 2s;
}
section.materials .container .show{
    opacity: 1;
    filter: blur(0px);
    transform: scale(100%);
    transition: all 2s;
}
section.materials p.description{
    font-size: 30px;
    text-align : center;
    color: var(--text-main-color);
    font-weight: 500;
}
section.materials p.description strong{
    color: var(--secondary-color);
    font-weight: 550;
}
section.materials p.description.hidden{
    opacity: 0;
    filter: blur(2px);
    transform: translateY(30px);
    transition: all 1.5s;
}
section.materials p.description.show{
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
    transition: all 1.5s;
}


section.realization{
    padding-top: 15vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
section.realization h4{
    color: var(--text-main-color);
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}
section.realization h4.hidden{
    opacity: 0;
    filter: blur(5px);
    transform: scale(110%);
    transition: all 2s;
}
section.realization h4.show{
    opacity: 1;
    filter: blur(0px);
    transform: scale(100%);
    transition: all 2s;
}
section.realization h4 strong{
    color:var(--secondary-color);
    font-weight: 600;
}
section.realization .container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2%;
    width: 70%;
    height: 70%;
}
section.realization .container img{
    width: 45%;
    height: 45%;
    object-fit: cover;
    border-radius: 17px;
}
section.realization .container img.hidden{
    opacity: 0;
    filter: blur(5px);
    transform: translateY(30px);
    transition: all 2s;
}
section.realization .container img.show{
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
    transition: all 2s;
}
section.realization .containerbottom{
    padding: 1%;
}

section.software{
    padding-top: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
section.software .containersoftware{
    width: 80%;
    display: flex;
    align-items: center;
}
section.software .containersoftware a {
    width:20%;
}
section.software .containersoftware a img{
    width: 100%;
}
section.software .containersoftware h4{
    color: var(--secondary-color);
    font-size: 50px;
    font-weight: 600;
    padding-left: 3%;
}
section.software .hidden{
    opacity: 0;
    filter: blur(5px);
    transform: scale(110%);
    transition: all 2s;
}
section.software .show{
    opacity: 1;
    filter: blur(0px);
    transform: scale(100%);
    transition: all 2s;
}

section.place{
    padding-top: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section.place h4.place{
    font-size: 50px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 600;
    text-align: center;
}
section.place p.place{
    font-size: 40px;
    color: var(--text-main-color);
    margin: 0;
    font-weight: 600;
    text-align: center;
}
section.place p.place strong{
    color: var(--secondary-color);
    font-weight: 600;
}
section.place .place.hidden{
    opacity: 0;
    filter: blur(2px);
    transform: translateY(30px);
    transition: all 1.5s;
}
section.place .place.show{
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
    transition: all 1.5s;
}
section.place iframe{
    padding-top: 50px;
    width: 80%;
    height: 500px;
    max-width: 1000px;
}


section.contact{
    display: flex;
    flex-direction: column;
    padding-left: 10%;
    padding-top: 7vh;
    padding-bottom: 25vh;
}
section.contact h4{
    color: var(--text-main-color);
    font-size: 30px;
    margin: 0;
}
section.contact h4 strong{
    color: var(--secondary-color);
}
section.contact .container{
    display: flex;
    flex-direction: column;
    padding-left: 7%;
    padding-top: 2%;
}
section.contact .container a{
    display: flex;
    padding-top: 2%;
    font-size: 20px;
    color: var(--secondary-color);
    text-decoration: none;
}
section.contact .container a:hover{
    text-decoration: underline;
}
section.contact .container a i{
    padding-right: 15px;
}
section.contact .container .send{
    color: var(--text-main-color);
    text-decoration: underline;
    font-size: 18px;
    padding-left: 3%;
}
section.contact .container .telcont{
    display: flex;
    align-items: center;
}
section.contact .container .telcont .ou{
    padding-left: 7px;
}
section.contact .container .telcont .ou:hover{
    text-decoration: none;
    cursor: default;
}
section.contact .container .telcont .secondtel{
    padding-left: 7px;
}