:root{
    --bgColor: #0f0f0f;
    --sideBgColor: #080d15;
    --mainColor: #fff;
    --sideColor: #0b0b0b;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    color: white;
    scroll-behavior: smooth;
}
body{
    background-color: var(--bgColor);
    color: var(--mainColor);
}
header {
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-height: 200px;
    padding: 30px;
    background-color: var(--sideColor);
    z-index: 2;
}
header h1 {
    color: var(--mainColor);
    font-size: 40px;
    font-weight: 900;
}
header nav a {
    color: var(--mainColor);
    margin: 5px;
    padding: 10px;
    font-size: 20px;
}
header nav a:hover{
    font-size: 23px;
    font-weight: 600;
    transition: font-weight 0.1s, font-size 0.1s;
}
header nav button{
    width: 60px;
    height: 30px;
    border-radius: 15px;
    border: solid 2px var(--mainColor);
    background-color: var(--bgColor);
    cursor: pointer;
    outline-width: 5px;
    margin: 10px;
}
header nav button div {
    width: 15px;
    height: 15px;
    background-color: var(--mainColor);
    border-radius: 100%;
    display: block;
    position: relative;
    margin: 0 auto 0 10px;
    transition: margin 2s ease;
}
header nav button.light div {
    margin: 0 10px 0 auto;
}
header img {
    display: none;
}
header div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}
header div a{
    display: flex;
    height: 100%;
    align-items: center;
}
header div img{
    display: flex;
    height: 50px;
    width: 50px;
    margin-right: 10px;
}
#blogSection{
    width: 100vw;
    display: flex;
    justify-content: center;
    background-color: var(--sideBgColor);
    padding: 30px;
}
.blogInfo h1{
    padding: 5px;
    font-size: 36px;
}
.blogInfo p{
    opacity: 0.8;
    font-size: 18px;
    font-weight: 500;
    padding: 5px;
    margin-left: 10px;
}
.blogNavigation{
    padding: 10px;
    margin-left: 40px;
}
.blogNavigation li {
    padding: 5px;
    font-weight: 500;
    font-size: 18px;
}
.blogNavigation li:hover{
    padding: 8px;
    font-weight: 700;
    font-size: 20px;
    transition: font-weight 0.1s, font-size 0.1s, padding 0.1s;
}
#blogSection article{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60vw;
    padding: 50px;
    background-color: var(--sideColor);
    border-radius: 30px;
}
#blogContent img{
    padding: 20px;
    border-radius: 75px;
    object-fit: cover;
}
#blogContent p{
    padding: 15px;
}
#firstPage {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}
#firstPage article img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: blur(6px); */
    transform: scale(1.05);
}
.textBox {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    max-height: 60%;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    flex-direction: column;
}
.textBox p{
    padding: 10px;
    font-size: 19px;
    font-weight: 500;
}
.textBox button{
    margin: 15px;
    margin-bottom: 0;
    padding: 20px;
    border: none;
    font-weight: 700;
    font-size: 20px;
    background-color: white;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    min-height: 48px;
    outline-width: 15px;
}
.textBox a {
    color: black;
    min-height: 48px;
    outline-width: 10px;
}
.textBox button:hover{
    font-size: 22px;
    font-weight: 900;
    padding: 19px;
    transition: padding 0.2s, font-size 0.2s, font-weight 0.2s;
}
#sideMenu{
    display: none;
}
.sectionHeadlineBox{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sectionHeadlineBox h2 {
    padding: 15px 20px;
    margin: 15px 0;
    font-size: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-align: center;
    max-width: 80%;
}
#whyChooseUs{
    width: 100%;
    background-color: var(--bgColor);
    color: var(--mainColor);
    font-size: 18px
}
#whyChooseUs article{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: start;
    padding: 30px;
}
.whyChooseUsBox {
    width: 500px;
    text-align: center;
    margin: 10px;
}
.whyChooseUsBox img{
    width: 100px;
    margin: 20px;
}
.whyChooseUsBox h3 {
    font-size: 25px;
    padding: 5px;
    font-weight: 700;
}
.whyChooseUsBox p {
    opacity: 70%;
    padding: 5px;
}
.serviceBox .commputerText{
    display: inherit;
}
.serviceBox .mobileText{
    display: none;
}
#servicesSection{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--bgColor);
    color: var(--mainColor);
}
#servicesSection{
    width: 100%;
    display: flex;
    font-size: 18px
}
#servicesSection article{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.serviceBox{
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 20px;
    flex-wrap: wrap;
    margin: 10px;
}
#middleBox{
    flex-direction: row-reverse;
}
.serviceBox div{
    width: 700px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.serviceBox h3{
    padding: 10px;
    font-size: 25px;
    font-weight: 700;
}
.serviceBox button{
    padding: 16px;
    background-color: var(--bgColor);
    color: white;
    border-radius: 15px;
    margin-top: 8px;
    border: white solid 1px;
    font-size: 15px;
    font-weight: 500;
    transition: padding 0.1s, font-size 0.1s, font-weight 0.1s;
}
.serviceBox button:hover{
    padding: 20px;
    font-weight: 700;
    font-size: 16px;
}
.serviceBox p{
    opacity: 70%;
    padding: 5px 15px;
}
.serviceBox img{
    width: 350px;
    height: 350px;
    border-radius: 150px;
    object-fit: cover;
}
#contactAndLocation{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}
#contact{
    width: 32%;
    flex-direction: column;
    display: flex;
    min-width: 500px;

}
#contact article{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#contact article div{
    display: flex;
    align-items: center;
    flex-direction: column;
}
#contact img {
    width: 100px;
    padding: 10px 15px;
}
#contact p {
    font-weight: 500;
    font-size: 20px;
    opacity: 70%;
    padding: 5px;
}
.facebook{
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 500px;
}
.facebook article{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px;
}
.facebook iframe{
    border-radius: 50px;
    width: 90%;
}
#location{
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 500px;
}
#location article {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#location p{
    font-size: 20px;
    font-weight: 500;
    padding: 5px;
    opacity: 70%;
}
#mapa{
    width: 65%;
    height: 350px;
    border-radius: 50px;
    display: flex;
    padding: 15px;
}
footer {
    background-color: var(--sideColor);
    padding: 15px;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-direction: row;
}

#footerLogo {
    font-weight: 700;
    font-size: 36px;
    padding: 25px;
    display: flex;
    align-items: center;
}
#footerLogo img{
    margin: 10px;
    width: 50px;
}
footer .footer-info{
    display: flex;
    flex-direction: row;
    align-items: center;
}
footer .footer-info div {
    padding: 10px;
}

footer #footerMedia img{
    width: 40px;
    padding: 5px;
    margin: 5px;
}

footer .footer-info p {
    margin: 0;
    font-size: 14px;
}

footer .footer-bottom {
    text-align: center;
    font-size: 14px;
    border-top: 2px solid #0096c7;
    padding-top: 10px;
    display: flex;
    flex-direction: row;
}
footer .footer-bottom p{
    padding: 13px;
}
#privacyPolicy{
    padding: 20px;
    display: flex;
    align-items: center;  
    flex-direction: column;
}
#privacyPolicy section{
    width: 80%;
    padding: 20px;
}
#privacyPolicy section *{
    padding: 5px;
}
@media (max-width: 1400px){
    .textBox{
        max-height: 70%;
        width: 50%;
    }
    #blogSection article{
        width: 80vw;
    }
    .serviceBox div{
        width: 60%;
    }
    .serviceBox p{
        font-size: 15px;
    }
    .serviceBox img {
        width: 300px;
        height: 300px;
    }
    #mapa{
        width: 90%;
    }
}
@media (max-width: 1000px) {
    header img {
        width: 50px;
        display: flex;
    }
    header nav {
        display: none;
    }
    .textBox{
        max-height: 70%;
        width: 70%;
        padding: 25px;
    }
    #sideMenu {
        position: fixed;
        top: 0;
        left: -75%;
        width: 75%;
        height: 100%;
        background-color: var(--sideColor);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease-in-out;
        text-align: center;
    }
    #sideMenu a {
        color: white;
        padding: 20px;
        font-size: 24px;
        height: 100px;
    }
    #sideMenu button {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 20px;
        border: none;
        background: none;
        color: black;
        cursor: pointer;
    }  
    #sideMenu button img{
        width: 40px;
        height: 40px;
    }  
    #sideMenu.open {
        left: 0;
    }
    #sideMenu a:hover{
        font-size: 27px;
        font-weight: 600;
        transition: font-weight 0.1s, font-size 0.1s;
    }
    #blogSection {
        padding: 0px;
    }
    #blogSection article{
        padding: 35px;
        width: 100%;
    }
    .blogInfo h1{
        font-size: 28px;
    }
    .sectionHeadlineBox h2{
        font-size: 36px;
        padding: 15px 25px;
    }
    #servicesSection {
        width: 100%;
        overflow: hidden;
    }
    .serviceBox {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }
    .serviceBox div {
        width: 90%;
    }
    .serviceBox img {
        width: 350px;
        height: 350px;
    }
    #middleBox {
        flex-direction: column-reverse;
    }
    .facebook{
        width: 75%;
    }
    .facebook article{
        width: 100%;
        padding: 15px;
    }
    .facebook iframe{
        width: 100%;
    }
    #contact{
        width: 75%;
        margin-bottom: 20px;
    }
    #contact article{
        flex-direction: row;
        flex-wrap: wrap;
    }
    #contact article div{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }
    #contact img {
        width: 80px;
    }
    #location{
        width: 75%;
    }
    #mapa{
        width: 100%;
    }
}
@media (max-width: 600px) {
    header {
        height: 100px !important;
        padding: 0 30px;
    }
    #sideMenu {
        left: -85%;
        width: 85%;
    }
    .textBox{
        width: 90%;
        padding: 25px;
    }
    .textBox p{
        font-size: 16px;
    }
    .textBox a{
        color: black;
    }
    .sectionHeadlineBox h2{
        font-size: 28px;
    }
    #blogLogo{
        font-size: 32px;
    }
    #blogSection article {
        padding: 25px;
    }
    .blogInfo h1 {
        font-size: 26px;
    }
    .blogInfo p{
        font-size: 16px;
    }
    .blogNavigation{
        margin-left: 25px;
        padding: 5px;
    }
    #blogContent p{
        padding: 10px;
    }
    #blogContent img{
        border-radius: 25px;
        padding: 5px;
    }
    .serviceBox div {
        width: 90%;
    }
    .serviceBox img {
        width: 300px;
        height: 300px;
    }
    .serviceBox .commputerText{
        display: none;
    }
    .serviceBox .mobileText{
        display: inherit;
    }
    #contact{
        width: 100%;
        padding: 10px;
    }
    #contact img {
        width: 50px;
    }
    #contact article p {
        font-size: 18px;
        font-weight: 500;
        text-wrap: wrap;
    }
    #location{
        min-width: none;
        width: 100%;
    }
    #location p {
        font-size: 18px;
        font-weight: 500;
    }
    .facebook{
        width: 100%;
    }
    .facebook article{
        width: 100%;
        padding: 10px;
        display: flex;
        justify-content: center;
    }
    .facebook article iframe{
        width: 75%;
        padding: 10px;
    }
    #mapa{
        width: 470px;
        height: 350px;
    }
    footer {
        margin-top: 15px;
        padding: 5px;
    }
    footer #footerLogo {
        padding: 10px;
    }
    footer .footer-content {
        flex-direction: column;
        align-items: center;
    }
    footer .footer-info {
        flex-direction: column;
        align-items: center;
    }
    footer .footer-info div {
        text-align: center;
    }
    footer .footer-bottom {
        font-size: 16px;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    #privacyPolicy h1{
        font-size: 22px;
        padding: 5px 0px;
    }
    #privacyPolicy section{
        width: 90%;
        padding: 10px;
    }
    #privacyPolicy section *{
        padding: 4px;
    }
}
@media (max-width: 500px){
    .textBox{
        width: 94%;
        padding: 20px;
    }
    .textBox button{
        padding: 9px;
        font-size: 17px;
        font-weight: 700;
        min-height: 48px;
    }
    .textBox button:hover{
        padding: 10px;
        font-size: 18px;
        font-weight: 800;
    }
    .sectionHeadlineBox h2{
        font-size: 24px;
    }
    #blogSection article {
        padding: 20px;
    }
    #mapa{
        width: 330px;
        height: 300px;
    }
}
@media (max-width: 350px){
    header {
        max-height: 70px;
        padding: 0 25px;
    }
    header h1{
        font-size: 35px;
    }
    #sideMenuButton{
        width: 40px;
    }
    #sideMenu {
        left: -90%;
        width: 90%;
    }
    .textBox{
        width: 96%;
        padding: 15px;
        font-size: 12px;
    }
    .textBox button {
        padding: 8px;
        margin: 4px;
        min-height: 48px;
    }
    #blogSection article {
        padding: 15px;
    }
    .whyChooseUsBox{
        width: 98vw;
        padding: 0px;
    }
    .whyChooseUsBox p {
        padding: 0;
        margin: 0;
        font-size: 16px;
    }
    .serviceBox{
        padding: 0;
    }
    .serviceBox p{
        font-size: 16px;
    }
    .serviceBox div {
        width: 95%;
    }
    .serviceBox img {
        width: 85vw;
        height: 85vw;
    }
    #privacyPolicy{
        padding: 10px;
    }
    #privacyPolicy section{
        width: 95%;
        padding: 8px;
    }
    #privacyPolicy section *{
        padding: 3px;
    }
}