@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Londrina+Outline&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    background: #24252A;
  
  }
  
  html li a, button{
      font-family: "Montserrat", sans-serif;
      font-weight: 500;
      font-size: 16px;
      color: #edf0f1;
      text-decoration: none;
  }
  
  header{
      display: flex;
      justify-content: right;
      align-items: center;
      padding: 30px 10%;
  }
  
  .logo{
      cursor: pointer;
      margin-right: auto;
      width: 80px;
  }
  
  .nav_links{
    list-style: none;
  }
  
  .nav_links li{
      display: inline-block;
      padding: 0px 20px;
  }
  
  .nav_links li a{
      transition: all 0.3s ease 0s;
  }
  
  .nav_links li a:hover{
      transition: all 0.3s ease 0s;
      color: rgb(202, 62, 27);
  }
  
  .contact-btn{
      padding: 9px 25px;
      background-color: rgb(202, 62, 27);
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease 0s;
      margin-left: 20px;
  }
  
  .contact-btn:hover{
      background-color: rgba(202, 62, 27, 0.8);
  } 

hr{
    display: none;
}
  

.containter{
    color:white;
    position: relative;
    text-align: center;
}
.frontImage{
    width: 100%;
    margin: auto;
    display: flex;
    text-align: center;
    margin-top: 30px;
}

.title {
    padding: 0px;
    margin: 0px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    background-color: transparent;
    font-weight: bold;
}

.cards{
    font-family: "Montserrat", sans-serif;
    background: #24252A;
    height: 45  vh;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: top;

    color: #edf0f1
}

main.cards{
    display: flex;
    padding: 32px;
}

main.cards section.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #24252A;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    max-height: 256px;
    margin-left: 32px;
}
main.cards section.card:first-child{
    margin-left: 0;
}

main.cards section.card .icon {
width: 64px;
height: 64px;
}

main.cards section.card img{
   width: 100%;
}

h3{
    margin: 16px 0;
}

span{
    font-weight: 300;
    max-width: 240px;
    font-size: 80%;
    margin-bottom: 16px;
}

main.cards section.card button{
    padding: 9px 25px;
    border-radius: 50px;
    border: 0;
    font-size: 80%;
    transition: all 0.3s ease 0s;

    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;

     background-color: rgb(202, 62, 27);
}

button{
    cursor: pointer;
}

.main-logo{
    background-color: transparent;
    margin: auto;
    text-align: center;
    vertical-align: middle;
    width: 0.5vh;
}

main.cards section.card button:hover{
    background-color: rgba(202, 62, 27, 0.8);
}


@media screen and (max-width: 720px){
    p{
        display: hidden;
    }

        main.cards{
            flex-direction: column;
            margin-top: 20px;

        }

        main.cards section.card{
            margin-left:                            0;
        }

        main.cards section.card:last-child{
            margin-bottom: 0;
        }

        .title{
            display: hidden;
        }
}

@media screen and (max-width: 694px){


    html li, .link, button{
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: #edf0f1;
        text-decoration: none;
    }
    .nav_links li{
        display: inline-block;
        padding: 0px 10px;
        margin-left: 20px;
    }

}

@media screen and (max-width: 399px){
    header{
        display: block;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .logo{
        width: 100px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .nav_links li{
        margin: 0;
    }

    .contact-btn{
        margin-top: 15px;
        margin-bottom: 15px;
    }

    hr{
        display: block;
    }
}
