

#nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 36px !important;
    font-weight: bold;
}

#logo {
    border-bottom: none;
}

#logo *  {
    
    font-weight: bold;
    margin-bottom: 0;
}

#whyUsContainer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.reasonBlock{
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 270px;
    width: 48%;
    min-height: 385px;
}

.reasonBlock, .reasonBlock h2{
    color:#ffffff !important;
}

.reasonBlock *:first-child{
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c1 {
    background-color: #e37682;
}

.c2 {
    background-color: #935d8c;
}

.c3 {
    background-color: #61a5cf;
}

.c4 {
    background-color: #5f4d93;
}

#companyImg{
    opacity: 0.85;
}

#formContainer{
    display: flex;
    align-items: center;
    justify-content: center;
}

#form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    border: #935d8c 1px solid;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 15px;
    width: 80%;
}

label {
    margin:  0;
}

.formGroup {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    width: 100%;
}

#radioGroup {
    justify-content: flex-start;
}

#submit {
    align-self: center;
    width: 100%;
    color: #fff !important;
    background-color: #935d8cc0 !important;
}

#form p {
    margin:  0;
}

@media only screen and (max-width: 600px) {
    .formGroup {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    #radioGroup {
        align-items: flex-start !important;
    }

    #navLinks {
        display: none;
    }
}

#services li{
    margin-top: 50px;
}

.service {
    position: relative;
    border-radius: 12px;
    box-shadow: 0px 10px 32px #63636372;
    padding: 30px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.service h3 {
    margin-top: 24px;
}

.serviceImg{
    position: absolute;
    top: -11%;
    background-color: #636363 ;
    padding: 10px;
    border-radius: 8px;
}

#teamContainer{
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.member{
    height: 100%;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.member img {
    width: 300px;
    height:300px;
}

#hamburgerMenu {
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 601px) {
    #hamburgerMenu {
        display: none;
    }
}

#hamburgerMenu img {
    width: 32px;
}

#navHamburgerLinks ul li {
    display: block;
    font-weight: bold;
}

#navHamburgerLinks ul li a {
    width: 100%;
}

#navHamburgerLinks {
    border-radius: 0 !important;
}

.noDisplay {
    display: none;
}

#errorMsg {
    text-align: left;
}

.error {
    color: red !important;
}

.success {
    color: green;
    font-weight: 500;
}

.invalid {
    border-color: red !important;
    color: red !important;
}

html {
    scroll-behavior: smooth;
  }

#autor {
    width: 50%;
    border-radius: 8px;
}
  
#autorContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#footer section{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.noUnderline {
    border-bottom: none;
}

.faq-section {
  border: 2px #935d8c solid;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 66px;
  text-align: left;
}
.faq-question {
  font-weight: bold;
  cursor: pointer;
  margin: 20px 0;
  border-bottom: 2px solid #935d8c;
}
.faq-answer {
  display: none;
  padding-left: 10px;
  border-left: 3px solid #5f4d93;
  margin: 5px 0;
}